:root {
  --navy: #08233f;
  --navy-2: #123b5d;
  --gold: #ffbd00;
  --gold-2: #e9a900;
  --gold-soft: #fff7d6;
  --green: #16865f;
  --green-dark: #0f6849;
  --coral: #ea5b38;
  --coral-soft: #fff0eb;
  --ink: #10243a;
  --muted: #657386;
  --line: #e2e8ee;
  --surface: #ffffff;
  --surface-soft: #f5f7f9;
  --page: #f7f8f6;
  --shadow: 0 12px 32px rgba(8, 35, 63, .09);
  --shadow-hover: 0 18px 38px rgba(8, 35, 63, .14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(255, 189, 0, .72);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 70px;
  color: #fff;
  background: rgba(8, 35, 63, .97);
  border-bottom: 1px solid rgba(255, 189, 0, .34);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  background: var(--gold);
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 8px;
}

.brand-copy {
  text-align: left;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand-copy small {
  margin-top: 3px;
  color: #d9e4ef;
  font-size: 12px;
}

.consumer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.consumer-nav button {
  min-width: 78px;
  padding: 10px 13px;
  color: #dce7f0;
  font-weight: 800;
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.consumer-nav button:hover,
.consumer-nav button.active {
  color: var(--navy);
  background: var(--gold);
}

.business-cta {
  justify-self: end;
  padding: 10px 14px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(255, 189, 0, .58);
  border-radius: 6px;
}

.business-cta:hover {
  background: var(--gold-soft);
}

.platform-notice {
  padding: 9px 16px;
  color: var(--navy);
  background: var(--gold);
  text-align: center;
  font-weight: 900;
}

.app-shell {
  min-height: calc(100vh - 70px);
}

.app-shell > .view-enter,
.app-shell > .store-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-band {
  position: relative;
  min-height: 342px;
  margin-top: 20px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(5, 27, 49, .94) 0%, rgba(5, 27, 49, .78) 48%, rgba(5, 27, 49, .18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(690px, 70%);
  min-height: 342px;
  padding: 44px 48px;
}

.eyebrow,
.section-kicker {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 670px;
  margin: 11px 0 14px;
  font-size: 44px;
  line-height: 1.06;
}

.hero-content p {
  max-width: 620px;
  margin: 0;
  color: #eef4f8;
  font-size: 17px;
  line-height: 1.55;
}

.hero-featured {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  min-width: 210px;
  padding: 13px 15px;
  color: var(--navy);
  text-decoration: none;
  background: rgba(255, 255, 255, .96);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.hero-featured span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-featured strong {
  margin: 3px 0;
}

.hero-featured small {
  color: var(--navy-2);
  font-weight: 800;
}

.discovery-panel {
  margin-top: 14px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mode-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 10px;
  padding: 4px;
  background: var(--surface-soft);
  border-radius: 6px;
}

.mode-switch button {
  min-height: 42px;
  padding: 8px 12px;
  color: var(--muted);
  font-weight: 900;
  background: transparent;
  border: 0;
  border-radius: 5px;
}

.mode-switch button.active {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 5px 14px rgba(8, 35, 63, .18);
}

.search-form {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 118px;
  align-items: end;
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
}

.field > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.field small {
  font-weight: 600;
}

.input,
.select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8e1;
  border-radius: 6px;
  outline: 0;
}

textarea {
  min-height: auto;
  resize: vertical;
}

.input:focus,
.select:focus,
textarea:focus {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(18, 59, 93, .12);
}

.primary,
.secondary,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.primary {
  color: var(--navy);
  background: var(--gold);
  border: 1px solid var(--gold-2);
  box-shadow: 0 7px 16px rgba(233, 169, 0, .18);
}

.primary:hover {
  background: #ffc928;
  transform: translateY(-1px);
}

.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid #cbd6e0;
}

.secondary:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.primary.compact {
  min-height: 38px;
  padding: 8px 11px;
  font-size: 13px;
}

.full {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 20px 0 4px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  display: grid;
  gap: 3px;
  padding: 15px 20px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 14px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.category-rail {
  display: flex;
  gap: 8px;
  margin: 20px 0 0;
  padding: 2px 0 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-rail button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.category-rail button:hover,
.category-rail button.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.results-section {
  padding: 30px 0 54px;
}

.section-heading,
.catalog-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-heading h2,
.catalog-intro h2,
.partner-band h2 {
  margin: 5px 0 5px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.15;
}

.section-heading p,
.catalog-intro p,
.partner-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-kicker {
  color: #8a6500;
}

.result-count {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.listing-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 7px 20px rgba(8, 35, 63, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.listing-card:hover {
  border-color: #c6d2dc;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.listing-media {
  position: relative;
  display: block;
  height: 178px;
  overflow: hidden;
  background: var(--surface-soft);
}

.listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.listing-card:hover .listing-media img {
  transform: scale(1.035);
}

.listing-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 9px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  background: var(--gold);
  border-radius: 5px;
}

.listing-tag.inline {
  position: static;
  display: inline-flex;
  margin-bottom: 9px;
}

.listing-body {
  padding: 15px;
}

.listing-brand-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.listing-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.listing-card h3 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.listing-brand-row p,
.listing-location,
.company-name {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.company-name {
  color: var(--navy-2);
  font-weight: 850;
}

.listing-description {
  display: -webkit-box;
  min-height: 43px;
  margin: 13px 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.listing-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 29px;
  margin-bottom: 13px;
}

.listing-facts span {
  padding: 5px 7px;
  color: #4d6073;
  font-size: 11px;
  font-weight: 800;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-actions .full {
  grid-column: 1 / -1;
}

.service-visual {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 130px;
  padding: 18px;
  color: #fff;
  background: var(--navy-2);
  border-bottom: 5px solid var(--gold);
}

.service-visual > span {
  font-size: 54px;
  font-weight: 950;
  line-height: .8;
}

.service-visual small {
  max-width: 60%;
  font-weight: 850;
  text-align: right;
}

.job-listing {
  border-top: 5px solid var(--coral);
}

.job-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 13px 15px;
  color: var(--navy);
  background: var(--coral-soft);
  border-bottom: 1px solid #f5d4ca;
}

.job-mark {
  color: #b53c20;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.job-head small {
  color: var(--muted);
}

.inline-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px 14px;
  color: #7c361f;
  background: var(--coral-soft);
  border: 1px solid #f4cfc4;
  border-radius: 6px;
}

.inline-alert button {
  padding: 7px 10px;
  color: #fff;
  font-weight: 850;
  background: var(--coral);
  border: 0;
  border-radius: 5px;
}

.empty-state,
.store-error {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 46px 24px;
  text-align: center;
  background: #fff;
  border: 1px dashed #bdc9d4;
  border-radius: var(--radius);
}

.empty-state strong {
  color: var(--navy);
  font-size: 20px;
}

.empty-state p,
.store-error p {
  max-width: 560px;
  margin: 0 0 8px;
  color: var(--muted);
}

.partner-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 52px;
  padding: 30px 34px;
  background: var(--gold-soft);
  border: 1px solid #efdda1;
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
}

.partner-band > div:first-child {
  max-width: 650px;
}

.partner-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  padding: 28px 0 34px;
  border-top: 1px solid #d7dee5;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 7px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--navy);
}

.footer-brand span,
.site-footer small {
  color: var(--muted);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer nav a {
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer nav a:hover {
  text-decoration: underline;
}

.site-footer > small {
  grid-column: 1 / -1;
}

.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.text-button {
  padding: 8px 0;
  color: var(--navy);
  font-weight: 900;
  background: transparent;
  border: 0;
}

.text-button::before {
  content: "←";
  margin-right: 7px;
}

.store-profile {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.store-profile-media,
.store-profile-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.store-profile-media {
  object-fit: cover;
}

.store-profile-overlay {
  background: linear-gradient(90deg, rgba(5, 27, 49, .96), rgba(5, 27, 49, .7) 68%, rgba(5, 27, 49, .25));
}

.store-profile-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: end;
  min-height: 330px;
  gap: 20px;
  padding: 36px;
}

.store-profile-logo {
  width: 92px;
  height: 92px;
  object-fit: cover;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 8px;
}

.store-profile h1 {
  margin: 6px 0 8px;
  font-size: 38px;
  line-height: 1.08;
}

.store-profile p {
  max-width: 650px;
  margin: 0;
  color: #edf3f7;
  line-height: 1.55;
}

.store-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.store-profile-meta span {
  padding: 6px 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  background: rgba(8, 35, 63, .72);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 5px;
}

.store-contact {
  color: var(--navy);
  background: #fff;
}

.catalog-intro {
  margin: 32px 0 15px;
}

.catalog-categories {
  margin-top: 0;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 20px;
  padding-bottom: 48px;
}

.catalog-layout-wide {
  grid-template-columns: minmax(0, 1fr);
}

.niche-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.niche-highlights span {
  padding: 5px 8px;
  color: var(--navy-2);
  font-size: 10px;
  font-weight: 850;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.niche-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.niche-service-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(8, 35, 63, .07);
}

.niche-service-media {
  position: relative;
  min-width: 0;
  min-height: 228px;
  padding: 0;
  overflow: hidden;
  background: var(--surface-soft);
  border: 0;
  cursor: zoom-in;
}

.niche-service-media img {
  width: 100%;
  height: 100%;
  min-height: 228px;
  object-fit: cover;
  transition: transform .25s ease;
}

.niche-service-media:hover img {
  transform: scale(1.035);
}

.niche-service-media span,
.event-card-media span {
  position: absolute;
  right: 9px;
  bottom: 9px;
  padding: 5px 8px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  background: rgba(8, 35, 63, .88);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 4px;
}

.niche-service-placeholder {
  cursor: default;
}

.niche-service-placeholder img {
  object-fit: contain;
  padding: 28px;
}

.niche-service-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px;
}

.niche-service-content h3,
.event-card-content h3 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.niche-service-content p,
.event-card-content p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.niche-service-footer {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.niche-service-footer > strong {
  color: var(--navy);
  font-size: 17px;
}

.event-showcase {
  min-width: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.event-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.event-carousel-head > div:first-child {
  display: grid;
  gap: 3px;
}

.event-carousel-head strong {
  color: var(--navy);
  font-size: 17px;
}

.event-carousel-head span {
  color: var(--muted);
  font-size: 12px;
}

.event-carousel-controls {
  display: flex;
  gap: 7px;
}

.event-carousel-controls button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--navy);
  font-size: 27px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.event-carousel-controls button:hover {
  background: var(--gold);
  border-color: var(--gold-2);
}

.event-carousel-track {
  display: grid;
  grid-auto-columns: minmax(310px, 410px);
  grid-auto-flow: column;
  gap: 16px;
  padding: 2px 2px 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) var(--surface-soft);
}

.event-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.event-card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  background: var(--surface-soft);
  border: 0;
  cursor: zoom-in;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.event-card-media:hover img {
  transform: scale(1.035);
}

.event-card-placeholder {
  cursor: default;
}

.event-card-placeholder img {
  object-fit: contain;
  padding: 38px;
}

.event-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.event-card-content > strong {
  margin: auto 0 12px;
  color: var(--navy-2);
  font-size: 14px;
}

.event-card-content .primary {
  width: 100%;
  margin-top: auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.product-card:hover {
  border-color: #c7d2dc;
  box-shadow: var(--shadow);
}

.product-summary {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  min-width: 0;
}

.product-image-button {
  position: relative;
  width: 138px;
  min-width: 0;
  min-height: 178px;
  padding: 0;
  overflow: hidden;
  background: var(--surface-soft);
  border: 0;
  border-radius: 0;
  cursor: zoom-in;
}

.product-image-button img {
  width: 138px;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
  background: var(--surface-soft);
  transition: transform .25s ease;
}

.product-image-button:hover img {
  transform: scale(1.04);
}

.product-image-placeholder {
  cursor: default;
}

.product-image-placeholder:hover img {
  transform: none;
}

.product-image-button span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 5px 7px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  background: rgba(8, 35, 63, .86);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 4px;
}

.product-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 14px;
}

.product-category {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 6px;
  color: #8a6500;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
}

.product-content p {
  display: -webkit-box;
  margin: 7px 0 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-base-price {
  margin-top: auto;
  color: var(--navy);
  font-size: 16px;
}

.product-configurator {
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
  border-top: 1px solid var(--line);
}

.product-additions-disclosure {
  margin-top: 12px;
  overflow: hidden;
  background: #fffaf0;
  border: 1px solid #f0d891;
  border-radius: 6px;
}

.product-additions-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.product-additions-disclosure summary::-webkit-details-marker {
  display: none;
}

.product-additions-disclosure summary::after {
  content: '+';
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-left: auto;
  color: var(--navy);
  font-size: 18px;
  background: var(--gold);
  border-radius: 50%;
}

.product-additions-disclosure[open] summary::after {
  content: '−';
}

.product-additions-disclosure summary small {
  color: #735b1c;
  font-size: 10px;
  font-weight: 750;
}

.product-additions-body {
  display: grid;
  padding: 0 10px 10px;
  border-top: 1px solid #f0d891;
}

.product-note-disclosure {
  border-top: 1px solid var(--line);
}

.product-note-disclosure summary {
  padding: 10px 0 0;
  color: var(--navy-2);
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.product-note-disclosure summary span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.product-note-disclosure textarea {
  width: 100%;
  min-height: 58px;
  margin-top: 8px;
  padding: 9px;
  resize: vertical;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.product-footer > span {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 9px;
}

.product-footer > span strong {
  color: var(--navy);
  font-size: 16px;
}

.gallery-dialog {
  width: min(980px, calc(100% - 28px));
  max-width: none;
  max-height: calc(100vh - 28px);
  padding: 0;
  overflow: hidden;
  background: #071a2d;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .48);
}

.gallery-dialog::backdrop {
  background: rgba(2, 12, 22, .86);
  backdrop-filter: blur(5px);
}

.gallery-shell {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  min-height: min(720px, calc(100vh - 30px));
}

.gallery-shell figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: min(720px, calc(100vh - 30px));
  margin: 0;
}

.gallery-shell figure > img {
  align-self: center;
  width: 100%;
  max-height: calc(100vh - 118px);
  object-fit: contain;
}

.gallery-shell figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 13px 16px;
  color: #fff;
  background: rgba(3, 18, 33, .96);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.gallery-caption-copy,
.gallery-caption-actions {
  display: grid;
  gap: 3px;
}

.gallery-caption-actions {
  flex: 0 0 auto;
  justify-items: end;
  gap: 7px;
}

.gallery-shell figcaption strong {
  font-size: 16px;
}

.gallery-shell figcaption span {
  color: #cbd6df;
  font-size: 11px;
  line-height: 1.4;
}

.gallery-request-action {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 12px;
}

.gallery-request-action[hidden] {
  display: none;
}

.gallery-close,
.gallery-arrow {
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
}

.gallery-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  font-size: 25px;
  border-radius: 50%;
}

.gallery-arrow {
  width: 42px;
  height: 58px;
  margin: auto;
  font-size: 38px;
  border-radius: 6px;
}

.gallery-arrow:hover,
.gallery-close:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.cart-panel {
  position: sticky;
  top: 86px;
  padding: 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.cart-heading h2 {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 20px;
}

.cart-count {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  background: var(--gold);
  border-radius: 50%;
}

.cart-empty {
  padding: 28px 10px 18px;
  text-align: center;
}

.cart-empty strong {
  color: var(--navy);
}

.cart-empty p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-items {
  display: grid;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item > div:first-child {
  display: grid;
  gap: 3px;
}

.cart-item strong {
  color: var(--navy);
  font-size: 13px;
}

.cart-item small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.cart-item > div > span {
  color: var(--navy-2);
  font-size: 12px;
  font-weight: 850;
}

.quantity-control {
  display: grid;
  grid-template-columns: 28px 24px 28px;
  align-items: center;
  text-align: center;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.quantity-control button {
  width: 28px;
  height: 30px;
  color: var(--navy);
  font-weight: 950;
  background: #fff;
  border: 0;
  border-radius: 5px;
}

.quantity-control span {
  font-size: 12px;
  font-weight: 900;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: var(--navy);
  font-size: 17px;
}

.checkout-fields {
  display: grid;
  gap: 10px;
}

.whatsapp-button {
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green-dark);
  box-shadow: 0 8px 18px rgba(22, 134, 95, .18);
}

.whatsapp-button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.checkout-note {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.conditional-fields {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: var(--gold-soft);
  border: 1px solid #ecd68f;
  border-radius: 6px;
}

.conditional-fields > strong {
  color: var(--navy);
  font-size: 13px;
}

.conditional-fields[hidden],
.field[hidden] {
  display: none !important;
}

.request-dialog {
  width: min(660px, calc(100% - 28px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(8, 35, 63, .34);
}

.request-dialog::backdrop {
  background: rgba(3, 18, 33, .76);
  backdrop-filter: blur(4px);
}

.request-shell {
  position: relative;
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 24px;
}

.request-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 23px;
  background: var(--navy);
  border: 0;
  border-radius: 50%;
}

.request-header {
  padding-right: 42px;
}

.request-header h2 {
  margin: 5px 0 6px;
  color: var(--navy);
  font-size: 27px;
}

.request-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.request-selected {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 11px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
}

.request-selected img {
  width: 88px;
  height: 72px;
  object-fit: cover;
  border-radius: 5px;
}

.request-selected img[hidden] {
  display: none;
}

.request-selected.without-image {
  grid-template-columns: 1fr;
}

.request-selected > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.request-selected span,
.request-selected small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.request-selected strong {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 16px;
}

.request-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.request-fields .request-field-wide {
  grid-column: 1 / -1;
}

.product-dialog {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(8, 35, 63, .3);
}

.product-dialog::backdrop {
  background: rgba(3, 18, 33, .7);
  backdrop-filter: blur(4px);
}

.dialog-shell {
  margin: 0;
}

.dialog-media-wrap {
  position: relative;
  height: 210px;
  background: var(--surface-soft);
}

.dialog-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  background: rgba(8, 35, 63, .88);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
}

.dialog-content {
  display: grid;
  padding: 20px;
}

.dialog-content h2 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
}

.dialog-content > p {
  margin: 7px 0;
  color: var(--muted);
  line-height: 1.5;
}

.dialog-price {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 20px;
}

.complement-group {
  display: grid;
  gap: 7px;
  margin: 0 0 13px;
  padding: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.complement-group legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2px 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.complement-group legend small {
  color: var(--muted);
  font-size: 10px;
}

.complement-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 8px 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.complement-option span {
  color: var(--ink);
  font-size: 13px;
}

.complement-option strong {
  color: var(--navy-2);
  font-size: 11px;
  white-space: nowrap;
}

.dialog-confirm {
  margin-top: 12px;
}

.mobile-cart-button,
.mobile-nav {
  display: none;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: min(360px, calc(100% - 36px));
  padding: 12px 15px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  background: var(--navy);
  border: 1px solid rgba(255, 189, 0, .45);
  border-radius: 6px;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.maintenance-shell {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: calc(100vh - 70px);
  padding: 30px;
  text-align: center;
}

.maintenance-shell img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
}

.maintenance-shell p {
  margin: 16px 0 5px;
  color: #8a6500;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.maintenance-shell h1 {
  margin: 0;
  color: var(--navy);
  font-size: 40px;
}

.maintenance-shell span {
  max-width: 600px;
  margin-top: 10px;
  color: var(--muted);
}

.page-loader {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: #e8edf1;
  border-radius: var(--radius);
}

.skeleton::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.25s infinite;
}

.skeleton-hero {
  height: 342px;
}

.skeleton-store {
  height: 330px;
}

.skeleton-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.skeleton-card {
  height: 310px;
}

.view-enter {
  animation: viewIn .32s ease;
}

@keyframes shimmer {
  to { transform: translateX(100%); }
}

@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
  }

  .consumer-nav {
    display: none;
  }

  .hero-content {
    width: 78%;
    padding: 38px 34px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .niche-service-grid {
    grid-template-columns: 1fr;
  }

  .partner-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .topbar,
  .topbar-inner {
    min-height: 62px;
  }

  .topbar-inner {
    width: min(100% - 24px, 1180px);
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .business-cta {
    padding: 9px 10px;
    font-size: 12px;
  }

  .app-shell > .view-enter,
  .app-shell > .store-page {
    width: min(100% - 24px, 1180px);
  }

  .hero-band {
    min-height: 300px;
    margin-top: 12px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 27, 49, .78), rgba(5, 27, 49, .97));
  }

  .hero-content {
    justify-content: flex-start;
    width: 100%;
    min-height: 300px;
    padding: 28px 22px 88px;
  }

  .hero-content h1 {
    margin-top: 8px;
    font-size: 31px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-featured {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
    padding: 10px 12px;
  }

  .discovery-panel {
    padding: 9px;
  }

  .mode-switch button {
    min-height: 40px;
    padding: 7px;
    font-size: 12px;
  }

  .search-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .search-button {
    width: 100%;
  }

  .trust-strip {
    display: flex;
    overflow-x: auto;
  }

  .trust-strip div {
    flex: 0 0 78%;
    padding: 13px 14px;
  }

  .category-rail {
    margin-top: 14px;
  }

  .results-section {
    padding-top: 22px;
  }

  .section-heading,
  .catalog-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .section-heading h2,
  .catalog-intro h2,
  .partner-band h2 {
    font-size: 25px;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .listing-media {
    height: 164px;
  }

  .partner-band {
    gap: 20px;
    padding: 24px 20px;
  }

  .partner-actions {
    display: grid;
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .site-footer > small {
    grid-column: auto;
  }

  .store-toolbar {
    padding-top: 12px;
  }

  .store-profile {
    min-height: 350px;
  }

  .store-profile-overlay {
    background: linear-gradient(180deg, rgba(5, 27, 49, .4), rgba(5, 27, 49, .98) 65%);
  }

  .store-profile-content {
    grid-template-columns: 68px minmax(0, 1fr);
    align-content: end;
    min-height: 350px;
    gap: 14px;
    padding: 22px;
  }

  .store-profile-logo {
    width: 68px;
    height: 68px;
  }

  .store-profile h1 {
    font-size: 28px;
  }

  .store-profile p {
    font-size: 13px;
  }

  .store-contact {
    grid-column: 1 / -1;
    width: 100%;
  }

  .catalog-intro {
    margin-top: 24px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    padding-bottom: 28px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .niche-service-card {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .niche-service-media,
  .niche-service-media img {
    min-height: 210px;
  }

  .niche-service-content {
    padding: 14px;
  }

  .niche-service-content h3,
  .event-card-content h3 {
    font-size: 17px;
  }

  .niche-service-footer .compact {
    width: 100%;
  }

  .event-showcase {
    margin-right: -12px;
    margin-left: -12px;
    padding: 14px 12px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .event-carousel-head {
    align-items: flex-start;
  }

  .event-carousel-track {
    grid-auto-columns: minmax(278px, 86vw);
  }

  .request-dialog {
    width: calc(100% - 14px);
    max-height: calc(100vh - 14px);
  }

  .request-shell {
    padding: 20px 16px;
  }

  .request-header h2 {
    font-size: 23px;
  }

  .request-fields {
    grid-template-columns: 1fr;
  }

  .request-fields .request-field-wide {
    grid-column: auto;
  }

  .product-summary {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .product-image-button,
  .product-image-button img {
    width: 112px;
    min-height: 166px;
  }

  .product-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-footer .compact {
    width: 100%;
  }

  .gallery-dialog {
    width: calc(100% - 12px);
    max-height: calc(100vh - 12px);
  }

  .gallery-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    min-height: calc(100vh - 14px);
  }

  .gallery-shell figure {
    height: calc(100vh - 14px);
  }

  .gallery-shell figure > img {
    max-height: calc(100vh - 112px);
  }

  .gallery-shell figcaption {
    align-items: flex-start;
    flex-direction: column;
    min-height: 86px;
    gap: 5px;
    padding: 11px;
  }

  .gallery-caption-actions {
    width: 100%;
    justify-items: stretch;
  }

  .gallery-request-action {
    width: 100%;
  }

  .gallery-arrow {
    width: 36px;
    height: 50px;
    font-size: 31px;
  }

  .gallery-close {
    top: 8px;
    right: 8px;
  }

  .cart-panel {
    position: static;
    scroll-margin-top: 74px;
  }

  .mobile-cart-button {
    position: fixed;
    right: 12px;
    bottom: calc(72px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 44;
    display: none;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 14px;
    color: #fff;
    font-weight: 900;
    background: var(--green);
    border: 1px solid var(--green-dark);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(5, 27, 49, .25);
  }

  .mobile-cart-button.visible {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: calc(62px + env(safe-area-inset-bottom));
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(8, 35, 63, .1);
    backdrop-filter: blur(14px);
  }

  .mobile-nav button {
    display: grid;
    justify-items: center;
    gap: 2px;
    min-width: 0;
    padding: 3px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 850;
    background: transparent;
    border: 0;
    border-radius: 5px;
  }

  .mobile-nav button span {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    color: var(--navy);
    font-size: 11px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .mobile-nav button.active {
    color: var(--navy);
  }

  .mobile-nav button.active span {
    background: var(--gold);
    border-color: var(--gold-2);
  }

  .toast {
    right: 12px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    left: 12px;
    max-width: none;
  }

  .product-dialog {
    width: calc(100% - 18px);
    max-height: calc(100vh - 18px);
  }

  .dialog-media-wrap {
    height: 180px;
  }

  .dialog-content {
    padding: 16px;
  }

  .skeleton-row {
    grid-template-columns: 1fr;
  }

  .skeleton-row .skeleton:nth-child(n+2) {
    display: none;
  }

  .skeleton-hero {
    height: 300px;
  }
}

@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 16px;
  }

  .business-cta {
    max-width: 126px;
    line-height: 1.2;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .product-summary {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .product-image-button,
  .product-image-button img {
    width: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
