/* Mattresses Kenya - shared styles
   Premium catalogue, zero JS, mobile-first
   Max uncompressed budget: 130KB */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Somnia Homepage 02 tokens */
  --canvas: #ffffff;
  --sand: #f6f6f6;
  --ink: #00263e;
  --stone: #6d7587;
  --sage: #183f91;
  --sage-deep: #00263e;
  --terracotta: #ffce52;
  --gold: #ffce52;
  --navy: #183f91;
  --navy-deep: #00263e;
  --muted-blue: #8a99ba;
  --whatsapp: #25d366;

  --white: #ffffff;
  --focus: #183f91;

  --font-display: "Jost", "Segoe UI", system-ui, sans-serif;
  --font-body: "Jost", "Segoe UI", system-ui, sans-serif;

  --text-body: clamp(1rem, 0.96rem + 0.18vw, 1.0625rem);
  --text-small: 0.875rem;
  --text-h1: clamp(2rem, 1.4rem + 2.4vw, 3.5rem);
  --text-h2: clamp(1.65rem, 1.3rem + 1.2vw, 2.15rem);
  --text-h3: clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
  --text-price: clamp(1.4rem, 1.2rem + 0.7vw, 1.85rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --section-y: clamp(3.5rem, 5.5vw, 6.5rem);
  --page-x: clamp(1rem, 3.4vw, 2rem);
  --content: 76rem;
  --prose: 40rem;
  --gutter: 1rem;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgb(0 38 62 / 0.06);
  --shadow-md: 0 10px 28px rgb(0 38 62 / 0.1);

  --topbar-h: 2.25rem;
  --header-h: 7.5rem;
  --sticky-h: 3.75rem;
  --ease: 200ms ease;
  --line: 1px solid rgb(0 38 62 / 0.1);
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

  .product-card:hover,
  .btn:hover {
    transform: none;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  min-height: 100vh;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--sage);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--ease);
}

a:hover {
  color: var(--sage-deep);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--space-3);
}

h1 {
  font-size: var(--text-h1);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

h2 {
  font-size: var(--text-h2);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: var(--text-h3);
  letter-spacing: -0.01em;
  margin-top: var(--space-4);
}

p {
  margin: 0 0 var(--space-3);
  color: var(--ink);
}

.lead,
.answer-first {
  font-size: clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem);
  line-height: 1.55;
  max-width: 40rem;
  color: var(--ink);
}

.muted,
.meta {
  color: var(--stone);
  font-size: var(--text-small);
}

ul,
ol {
  margin: 0 0 var(--space-3);
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.4rem;
}

strong {
  font-weight: 600;
}

hr {
  border: 0;
  border-top: var(--line);
  margin: var(--space-6) 0;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: var(--space-2);
  top: -100px;
  z-index: 1000;
  background: var(--ink);
  color: var(--canvas);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-2);
}

.container {
  width: min(100% - (var(--page-x) * 2), var(--content));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - (var(--page-x) * 2), var(--prose));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.section--sand {
  background: var(--sand);
}

.section--tight {
  padding-block: var(--space-6);
}

.section-header {
  max-width: 40rem;
  margin-bottom: var(--space-5);
}

.section-header h2 {
  margin-top: 0;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-2);
}

.price,
.price-cell,
.spec-table td:last-child,
.tabular {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.text-center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Header & navigation (Somnia HP02: promo bar + white nav)
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-deep);
  color: #fff;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.topbar-inner {
  width: min(100% - (var(--page-x) * 2), var(--content));
  margin-inline: auto;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar p {
  margin: 0;
  color: rgb(255 255 255 / 0.88);
}

.topbar a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgb(0 38 62 / 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  min-height: 4.75rem;
  width: min(100% - (var(--page-x) * 2), var(--content));
  margin-inline: auto;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}

.logo:hover {
  opacity: 0.92;
}

.logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 52vw);
}

.logo-img--footer {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgb(28 25 23 / 0.15);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 6px;
}

.nav-toggle:checked + .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--canvas);
  border-bottom: var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.nav-toggle:checked ~ .site-nav {
  max-height: 80vh;
  overflow: auto;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: var(--space-2) var(--page-x) var(--space-4);
}

.nav-list > li {
  margin: 0;
  border-bottom: var(--line);
}

.nav-list a {
  display: block;
  padding: 0.9rem 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.nav-list a:hover {
  color: var(--sage);
}

.nav-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
  flex: 1;
  min-width: 0;
  position: relative;
}

.header-wa {
  display: inline-flex;
  min-height: 2.4rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
}

.header-search {
  display: none;
  align-items: center;
  height: 2.4rem;
  border: 1px solid rgb(0 38 62 / 0.12);
  background: var(--sand);
  padding: 0 0.35rem 0 0.75rem;
}

.header-search input {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.875rem;
  color: var(--ink);
  width: 9.5rem;
  outline: none;
}

.header-search button {
  border: 0;
  background: transparent;
  color: var(--ink);
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.header-search svg {
  width: 1.05rem;
  height: 1.05rem;
}

/* Desktop / tablet landscape: always show full nav (Chrome-safe) */
@media (min-width: 900px) {
  .nav-toggle-label {
    display: none !important;
  }

  .nav-toggle {
    display: none !important;
  }

  .site-nav {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    flex: 1 1 auto;
    width: auto;
  }

  .nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0;
    flex-wrap: nowrap;
  }

  .nav-list > li {
    border: 0;
  }

  .nav-list > li > a {
    padding: 0.55rem 0.7rem;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .header-search {
    display: flex;
    order: 2;
    flex-shrink: 0;
  }

  .header-wa {
    display: inline-flex;
    order: 3;
    flex-shrink: 0;
  }

  .nav-cta {
    display: none;
  }

  .header-actions {
    gap: 0.85rem;
  }
}

/* Mobile menu open state (explicit, high specificity) */
@media (max-width: 899.98px) {
  .nav-toggle:checked ~ .site-nav {
    max-height: min(80vh, 32rem);
    overflow: auto;
    box-shadow: var(--shadow-md);
  }
}

/* Nested nav groups on mobile */
.nav-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 var(--space-2) var(--space-2);
}

.nav-sub a {
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--stone);
  padding: 0.45rem 0;
}

@media (min-width: 1024px) {
  .nav-item {
    position: relative;
  }

  .nav-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 14rem;
    background: var(--white);
    border: var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: var(--space-2);
    z-index: 50;
  }

  .nav-item:hover .nav-sub,
  .nav-item:focus-within .nav-sub {
    display: block;
  }

  .nav-sub a {
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
  }

  .nav-sub a:hover {
    background: var(--sand);
    color: var(--ink);
  }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.875rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
    box-shadow var(--ease), transform var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

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

.btn--light {
  background: #fff;
  color: var(--navy-deep);
  border-color: #fff;
}

.btn--light:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: #f0be3a;
  color: var(--navy-deep);
}

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgb(28 25 23 / 0.22);
}

.btn--secondary:hover {
  background: var(--sand);
  color: var(--ink);
}

.btn--wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  gap: 0.55rem;
}

.btn--wa:hover {
  background: #1ebe57;
  color: #fff;
  border-color: #1ebe57;
}

.btn--wa:focus-visible {
  outline-color: #128c7e;
}

/* Official-style WhatsApp glyph inside green buttons */
.wa-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.btn--wa .wa-icon {
  filter: none;
}

.sticky-bar .btn--wa .wa-icon,
.product-card__wa .wa-icon,
.header-wa .wa-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.btn--ghost {
  background: transparent;
  color: var(--sage);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  min-height: auto;
  padding: 0.25rem 0;
}

.btn--ghost:hover {
  color: var(--sage-deep);
  transform: none;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs {
  padding: var(--space-3) 0 var(--space-2);
  font-size: var(--text-small);
  color: var(--stone);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgb(28 25 23 / 0.3);
}

.breadcrumbs a {
  color: var(--stone);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--sage);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Hero
   Copy + image are equal columns; image height matches copy row exactly.
   Trust strip sits BELOW so it does not force a tall image.
   -------------------------------------------------------------------------- */
.hero {
  padding: var(--space-7) 0 var(--space-8);
}

.hero-grid {
  display: grid;
  gap: var(--space-5);
  align-items: stretch;
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  width: 100%;
  /* Mobile: wide frame, full width of content */
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-md);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero h1 {
  max-width: 14ch;
}

@media (min-width: 900px) {
  .hero-grid {
    /* True 50/50 — same height row, proportional visual weight */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: stretch;
  }

  .hero-media {
    /* Fill the same height as the copy column (not a free-floating small box) */
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
    max-height: none;
    align-self: stretch;
  }

  /* Guard: if copy is short, keep image from collapsing */
  .hero-copy {
    min-height: 20rem;
  }
}

.trust-strip {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-block: var(--line);
  margin-top: var(--space-5);
}

.trust-strip--hero {
  margin-top: var(--space-6);
}

@media (min-width: 640px) {
  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

.trust-item {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

.trust-item svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--sage);
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.trust-item span {
  color: var(--stone);
  font-size: var(--text-small);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: 1fr;
  /* stop children overflowing column tracks */
  align-items: stretch;
}

.card-grid > * {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 360px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgb(28 25 23 / 0.06);
  transition: box-shadow var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0; /* prevent grid blowout */
  max-width: 100%;
  color: inherit;
  padding: 0 0 0.75rem;
  box-sizing: border-box;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

/* Keep WA button inside the tile: never width 100% + horizontal margin */
.product-card__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-sizing: border-box;
  width: calc(100% - 1.5rem);
  max-width: calc(100% - 1.5rem);
  margin: 0 0.75rem 0.15rem;
  min-height: 2.4rem;
  min-width: 0;
  padding: 0.5rem 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
}

.product-card__wa.btn--block {
  width: calc(100% - 1.5rem);
  max-width: calc(100% - 1.5rem);
}

.product-card__wa .wa-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.product-card__wa span,
.product-card__wa {
  text-overflow: ellipsis;
}

.product-card__media {
  aspect-ratio: 4 / 5;
  background: var(--sand);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-card__type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.25;
}

.product-card__meta {
  color: var(--stone);
  font-size: var(--text-small);
  margin: 0;
}

.product-card__price {
  margin-top: auto;
  padding-top: var(--space-2);
  font-weight: 600;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

/* Size / type chips */
.chip-grid {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .chip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .chip-grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.chip-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 7rem;
  padding: var(--space-3) var(--space-3);
  background: var(--white);
  border: 1px solid rgb(28 25 23 / 0.08);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.chip-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: var(--ink);
}

.chip-card strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.chip-card span {
  color: var(--stone);
  font-size: var(--text-small);
}

/* Link chips (inline filters) */
.link-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: var(--space-3) 0 var(--space-5);
}

.link-chips a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  background: var(--white);
  border: 1px solid rgb(28 25 23 / 0.12);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.link-chips a:hover {
  border-color: var(--sage);
  color: var(--sage-deep);
}

/* --------------------------------------------------------------------------
   Product page
   -------------------------------------------------------------------------- */
.product-layout {
  display: grid;
  gap: var(--space-6);
  padding-bottom: var(--space-7);
}

@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-7);
    align-items: start;
  }

  .product-buy {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

/* Gallery: scroll-snap */
.gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.gallery-main {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius-lg);
  background: var(--sand);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.gallery-main figure {
  flex: 0 0 100%;
  scroll-snap-align: start;
  margin: 0;
  aspect-ratio: 4 / 5;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
}

.gallery-thumbs a {
  flex: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.85;
  aspect-ratio: 1;
  background: var(--sand);
}

.gallery-thumbs a:hover,
.gallery-thumbs a:focus {
  opacity: 1;
  border-color: var(--sage);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-buy h1 {
  margin-bottom: var(--space-2);
}

.product-buy .answer-first {
  margin-bottom: var(--space-4);
}

/* Firmness gauge (signature element) */
.firmness {
  margin: var(--space-4) 0;
  padding: var(--space-3);
  background: var(--sand);
  border-radius: var(--radius-md);
}

.firmness__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  font-size: var(--text-small);
}

.firmness__label strong {
  font-size: 1rem;
}

.firmness__track {
  position: relative;
  height: 6px;
  background: linear-gradient(
    90deg,
    rgb(166 93 79 / 0.35),
    rgb(95 111 100 / 0.35) 50%,
    rgb(28 25 23 / 0.35)
  );
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.firmness__marker {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--ink);
  border: 2px solid var(--canvas);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-sm);
}

.firmness__scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.02em;
}

.firmness__best {
  margin: var(--space-2) 0 0;
  font-size: var(--text-small);
  color: var(--stone);
}

/* Size price table */
.price-table-wrap {
  overflow-x: auto;
  margin: var(--space-4) 0;
  border: var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.price-table,
.spec-table,
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  font-variant-numeric: tabular-nums;
}

.price-table th,
.price-table td,
.spec-table th,
.spec-table td,
.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: var(--line);
  vertical-align: middle;
}

.price-table th,
.spec-table th,
.compare-table th {
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--stone);
  background: rgb(232 226 217 / 0.5);
}

.price-table tr:last-child td,
.spec-table tr:last-child td,
.compare-table tr:last-child td {
  border-bottom: 0;
}

.price-table tr.is-default {
  background: rgb(95 111 100 / 0.08);
}

.price-table .wa-mini {
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.product-trust {
  display: grid;
  gap: 0.5rem;
  margin: var(--space-3) 0;
  padding: var(--space-3);
  background: var(--white);
  border-radius: var(--radius-md);
  border: var(--line);
  font-size: var(--text-small);
}

.product-trust li {
  list-style: none;
  margin: 0;
  padding-left: 1.4rem;
  position: relative;
  color: var(--stone);
}

.product-trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--sage);
}

.hero-price {
  font-size: var(--text-price);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  margin: var(--space-2) 0;
}

.hero-price small {
  display: block;
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--stone);
  margin-top: 0.15rem;
}

/* --------------------------------------------------------------------------
   Content blocks
   -------------------------------------------------------------------------- */
.prose {
  max-width: var(--prose);
}

.prose h2:first-child {
  margin-top: 0;
}

.content-block {
  margin-bottom: var(--space-6);
}

.note {
  padding: var(--space-3);
  background: var(--sand);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--sage);
  font-size: 0.95rem;
}

.note p:last-child {
  margin-bottom: 0;
}

.updated {
  font-size: var(--text-small);
  color: var(--stone);
  margin-bottom: var(--space-3);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 46rem;
}

.faq-list details {
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius-md);
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--sage);
  flex-shrink: 0;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  padding: 0 1.15rem 1.15rem;
  margin: 0;
  color: var(--stone);
}

/* Steps */
.steps {
  display: grid;
  gap: var(--space-4);
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.steps li {
  position: relative;
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: var(--line);
  margin: 0;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-2);
}

/* Forms */
.form {
  display: grid;
  gap: var(--space-3);
  max-width: 32rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form input,
.form textarea,
.form select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgb(28 25 23 / 0.18);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  width: 100%;
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form .hint {
  font-weight: 400;
  color: var(--stone);
  font-size: var(--text-small);
}

/* Map */
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  border: var(--line);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: rgb(255 255 255 / 0.78);
  padding: var(--space-8) 0 var(--space-6);
  margin-top: 0;
}

.site-footer a {
  color: rgb(255 255 255 / 0.88);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-grid {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--canvas);
  margin-bottom: var(--space-2);
}

.footer-def {
  font-size: var(--text-small);
  line-height: 1.55;
  max-width: 28rem;
  margin-bottom: var(--space-3);
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.5);
  margin: 0 0 var(--space-2);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgb(255 255 255 / 0.12);
  font-size: var(--text-small);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: space-between;
  color: rgb(255 255 255 / 0.5);
}

/* --------------------------------------------------------------------------
   Sticky mobile bar
   -------------------------------------------------------------------------- */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.5rem;
  padding: 0.65rem var(--page-x) calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgb(255 255 255 / 0.96);
  backdrop-filter: blur(10px);
  border-top: var(--line);
  box-shadow: 0 -4px 20px rgb(0 38 62 / 0.08);
}

.sticky-bar .btn {
  min-height: 2.75rem;
  padding-inline: 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .sticky-bar {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Page intro
   -------------------------------------------------------------------------- */
.page-intro {
  padding: var(--space-5) 0 var(--space-4);
}

.page-intro h1 {
  max-width: 18ch;
}

.page-intro .answer-first {
  margin-bottom: var(--space-3);
}

/* Related */
.related {
  padding-top: var(--space-6);
  border-top: var(--line);
  margin-top: var(--space-6);
}

/* 404 */
.error-page {
  min-height: 50vh;
  display: grid;
  align-content: center;
  padding: var(--space-8) 0;
  text-align: center;
}

.error-page h1 {
  max-width: none;
}

/* Real product / lifestyle photography */
.img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--sand);
}

/* Category cards with mattress photos */
.cat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .cat-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .cat-grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgb(28 25 23 / 0.08);
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  min-height: 100%;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

.cat-card__media {
  aspect-ratio: 4 / 3;
  background: var(--sand);
  overflow: hidden;
}

.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.cat-card:hover .cat-card__media img {
  transform: scale(1.04);
}

.cat-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cat-card__body strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.cat-card__body span {
  color: var(--stone);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Sliding hero: scroll-snap — inherits landscape size from .hero-media */
.hero-media--slider {
  /* same landscape box as .hero-media; no separate tiny min-height */
  position: relative;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero-track::-webkit-scrollbar {
  display: none;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  z-index: 2;
  pointer-events: auto;
}

.hero-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.7);
  border: 1px solid rgb(28 25 23 / 0.25);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.2);
  text-indent: -999px;
  overflow: hidden;
}

.hero-copy .btn-row {
  margin-top: var(--space-3);
}

/* Make sticky WA more obvious */
.sticky-bar .btn--wa {
  font-weight: 700;
}

/* Tables on sand sections */
.section--sand .price-table-wrap,
.section--sand .faq-list details {
  background: var(--canvas);
}

/* Definition line used sitewide */
.site-definition {
  font-size: var(--text-small);
  color: var(--stone);
  max-width: 42rem;
}

/* Inline SVG icon baseline */
.icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.icon--lg {
  width: 1.35rem;
  height: 1.35rem;
}

/* --------------------------------------------------------------------------
   Somnia Homepage 02 layout
   -------------------------------------------------------------------------- */
.hp-banners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
  background: #fff;
}

.hp-banner {
  position: relative;
  display: grid;
  grid-template: 1fr / 1fr;
  align-items: end;
  min-height: 20rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  background: #6d7587;
}

.hp-banner img,
.hp-banner__copy,
.hp-banner::after {
  grid-area: 1 / 1;
}

.hp-banner img {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  max-width: none;
  object-fit: cover;
  z-index: 0;
  transition: transform 700ms ease;
}

.hp-banner:hover img {
  transform: scale(1.04);
}

.hp-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 38 62 / 0.05) 30%, rgb(0 38 62 / 0.38) 100%);
  z-index: 1;
}

.hp-banner__copy {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.25rem 1.35rem;
  max-width: 34rem;
}

.hp-banner--lg .hp-banner__copy {
  padding: 2rem 1.5rem 1.75rem;
}

.hp-banner h1,
.hp-banner h2 {
  color: #fff;
  margin: 0 0 0.65rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hp-banner h1 {
  font-size: clamp(1.85rem, 1.2rem + 2.6vw, 3.5rem);
  line-height: 1.15;
  max-width: 14ch;
}

.hp-banner h2 {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  line-height: 1.2;
  max-width: 14ch;
}

.hp-banner p {
  color: rgb(255 255 255 / 0.92);
  margin: 0 0 1.1rem;
  max-width: 34ch;
  font-size: 0.98rem;
}

.hp-kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(255 255 255 / 0.92);
  margin-bottom: 0.35rem;
}

.hp-banner .btn {
  pointer-events: none;
}

@media (min-width: 720px) {
  .hp-banners {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: minmax(14rem, 1fr) minmax(14rem, 1fr);
    height: auto;
    min-height: 32rem;
    max-height: 44rem;
    gap: 12px;
    padding: 12px;
  }

  .hp-banner {
    min-height: 0;
  }

  .hp-banner img {
    min-height: 0;
    height: 100%;
  }

  .hp-banner--lg {
    grid-row: 1 / span 2;
  }

  .hp-banner--md {
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }

  .hp-banner--md .hp-banner__copy {
    width: 100%;
    max-width: none;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hp-banner--md h2,
  .hp-banner--md .hp-kicker,
  .hp-banner--md p {
    text-align: center;
  }
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
  max-width: 36rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  margin: 0.2rem 0 0.4rem;
  font-weight: 500;
}

.section-head p {
  margin: 0;
  color: var(--stone);
  max-width: 36rem;
}

.section-head .section-link {
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-head .section-link:hover {
  color: var(--gold);
}

.hp-deal {
  display: grid;
  gap: 0;
  background: #f3f4f7;
}

.hp-deal__media {
  min-height: 18rem;
  background: #fff;
  overflow: hidden;
}

.hp-deal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
}

.hp-deal__copy {
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-deal__copy h2 {
  margin: 0.35rem 0 0.85rem;
  font-weight: 500;
  max-width: 16ch;
}

.hp-deal__price {
  font-size: clamp(1.7rem, 1.3rem + 1vw, 2.15rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0.75rem 0 1.4rem;
}

.hp-deal__price span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.2rem;
}

@media (min-width: 900px) {
  .hp-deal {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 32rem;
  }

  .hp-deal__media img {
    min-height: 32rem;
  }
}

.why-grid {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.why-card {
  text-align: center;
  padding: 0.5rem 0.75rem 0;
}

.why-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0.9rem 0 0.4rem;
}

.why-card p {
  margin: 0 auto;
  color: var(--stone);
  font-size: 0.9375rem;
  max-width: 22ch;
}

.why-ico {
  width: 3.5rem;
  height: 3.5rem;
  max-width: 3.5rem;
  max-height: 3.5rem;
  margin-inline: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(24 63 145 / 0.16);
  color: var(--navy);
  border-radius: 50%;
  flex: 0 0 3.5rem;
}

.why-ico svg,
.why-ico img {
  width: 1.45rem !important;
  height: 1.45rem !important;
  max-width: 1.45rem !important;
  max-height: 1.45rem !important;
  min-width: 0;
  min-height: 0;
  display: block;
}

.review-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.review-card {
  background: transparent;
  padding: 0.25rem 0.25rem 0;
  border: 0;
  margin: 0;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin: 0 0 0.85rem !important;
}

.review-card p {
  margin: 0 0 1.1rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
}

.review-card cite {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.news-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.news-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.news-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.05);
}

.news-kicker {
  display: block;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.news-card h3 {
  margin: 0.35rem 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.news-card p {
  margin: 0;
  color: var(--stone);
  font-size: 0.9375rem;
}

.help-band {
  background: var(--navy);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.help-band h2 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.help-band p {
  color: rgb(255 255 255 / 0.86);
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

.help-band .btn--light {
  margin-right: 0.6rem;
}

.product-card {
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding-bottom: 0.4rem;
}

.product-card:hover {
  box-shadow: none;
  transform: none;
}

.product-card__media {
  background: #eef0f4;
  aspect-ratio: 1;
}

.product-card__media img {
  transition: transform 500ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 1rem 0.15rem 0.35rem;
}

.product-card__type {
  color: var(--muted-blue);
}

.product-card__title {
  font-weight: 500;
  font-size: 1.02rem;
}

.product-card__price {
  color: var(--navy);
  padding-top: 0.35rem;
}

.product-card__wa {
  width: 100%;
  max-width: 100%;
  margin: 0.35rem 0 0;
}

.section--center .section-header {
  text-align: center;
  margin-inline: auto;
}

.cat-row {
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 64rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .cat-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
}

.cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  gap: 0.9rem;
  min-width: 0;
}

.cat-circle img {
  width: min(100%, 9.5rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  background: var(--sand);
  transition: transform 450ms ease;
}

.cat-circle:hover img {
  transform: scale(1.05);
}

.cat-circle strong {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.cat-circle:hover {
  color: var(--navy);
}

@media (max-width: 899.98px) {
  .header-wa span {
    display: none;
  }

  .header-wa {
    padding-inline: 0.65rem;
  }
}
