/* =============================================================================
   HEALTH AURA — Design System
   Warm-clinical aesthetic: sage/mint + trust-blue on warm cream.
   Type: Figtree (UI/body) + Fraunces (editorial accents).
   Built mobile-first, WCAG-minded, Shopify-portable.
   ============================================================================= */

/* ----------------------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------------------- */
:root {
  /* Brand — aqua/cyan scale (from the Health Aura logo) */
  --aqua-50:  #EEF9FC;
  --aqua-100: #D9F1F8;
  --aqua-200: #B5E5F1;
  --aqua-300: #7ED4E8;
  --aqua-400: #3FBEDC;
  --aqua-500: #18A2C6;
  --aqua-600: #0E7490;  /* primary brand (accessible cyan) */
  --aqua-700: #155E75;
  --aqua-800: #134B5E;
  --aqua-900: #0F3844;

  /* Bright logo cyan (accents / gradients) */
  --blue-400: #4EC9E6;
  --blue-500: #22AFD6;
  --blue-600: #0E7490;
  --blue-700: #11556B;

  /* Cool neutrals */
  --cream:    #FAFDFE;
  --paper:    #FFFFFF;
  --sand-50:  #F1F8FB;
  --sand-100: #E8F2F6;
  --ink-900:  #10262E;
  --ink-800:  #1C3843;
  --ink-700:  #35525E;
  --ink-500:  #5F7883;
  --ink-400:  #87999F;

  /* Accents */
  --gold:     #F5C400;   /* logo yellow — stars / highlights */
  --gold-soft:#FCF3CD;
  --sale:     #D64933;   /* coral — sale/discount urgency */
  --sale-soft:#FCEAE5;
  --success:  #2E8B57;

  /* Semantic aliases */
  --bg:            var(--cream);
  --surface:       var(--paper);
  --surface-tint:  var(--aqua-50);
  --heading:       var(--ink-900);
  --body:          var(--ink-700);
  --muted:         var(--ink-500);
  --primary:       var(--aqua-600);
  --primary-hover: var(--aqua-700);
  --primary-soft:  var(--aqua-100);
  --on-primary:    #FFFFFF;
  --border:        #E2EEF3;
  --border-strong: #CBDFE7;
  --ring:          var(--aqua-500);

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows — soft, layered, natural */
  --shadow-xs: 0 1px 2px rgba(9,44,56,.06);
  --shadow-sm: 0 2px 8px rgba(9,44,56,.06), 0 1px 2px rgba(9,44,56,.04);
  --shadow-md: 0 8px 24px rgba(9,44,56,.08), 0 2px 6px rgba(9,44,56,.05);
  --shadow-lg: 0 20px 48px rgba(9,44,56,.12), 0 6px 14px rgba(9,44,56,.06);
  --shadow-ring: 0 0 0 4px var(--aqua-100);

  /* Spacing scale (8pt-based) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Layout */
  --maxw: 1220px;
  --maxw-narrow: 820px;
  --header-h: 72px;
  --gutter: clamp(16px, 4vw, 40px);

  /* Type */
  --font-sans: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-in: cubic-bezier(.4, 0, 1, 1);
  --dur: .24s;
  --dur-lg: .4s;

  /* Z-index scale */
  --z-header: 100;
  --z-drawer: 300;
  --z-overlay: 290;
  --z-toast: 400;
}

/* ----------------------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { color: var(--heading); line-height: 1.14; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--aqua-200); color: var(--ink-900); }

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--primary); color: #fff; padding: 12px 18px;
  border-radius: var(--r-sm); z-index: 500; transition: top .2s var(--ease);
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ----------------------------------------------------------------------------
   3. LAYOUT HELPERS
   ---------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--maxw-narrow); }
.section { padding-block: clamp(48px, 8vw, 96px); }
.section-sm { padding-block: clamp(36px, 5vw, 60px); }
.section-tint { background: var(--surface-tint); }
.section-paper { background: var(--surface); }

.stack > * + * { margin-top: var(--space-4); }
.grid { display: grid; gap: var(--space-5); }
.flex { display: flex; }
.center { display: flex; align-items: center; justify-content: center; }
.between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.text-center { text-align: center; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.hide { display: none !important; }
@media (max-width: 900px) { .hide-mobile { display: none !important; } }
@media (min-width: 901px) { .hide-desktop { display: none !important; } }

/* Section heading block */
.section-head { max-width: 640px; margin-bottom: var(--space-6); }
.section-head.center { margin-inline: auto; text-align: center; display: block; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--aqua-400); border-radius: 2px;
}
.section-head.center .eyebrow::before { display: none; }
.section-head p.lede { color: var(--muted); font-size: 1.075rem; margin-top: var(--space-3); }

/* ----------------------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; min-height: 48px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: .975rem; letter-spacing: .005em;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  cursor: pointer; white-space: nowrap; text-align: center;
  border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: var(--ink-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--heading); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--aqua-50); }

.btn-ghost { background: var(--surface); color: var(--heading); border-color: var(--border); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; min-height: 56px; font-size: 1.05rem; }
.btn-sm { padding: 9px 16px; min-height: 40px; font-size: .875rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--primary);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ----------------------------------------------------------------------------
   5. BADGES, PILLS, RATINGS
   ---------------------------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--aqua-600); color: #fff;
}
.badge-sale { background: var(--sale); }
.badge-soft { background: var(--aqua-100); color: var(--aqua-700); }
.badge-gold { background: var(--gold-soft); color: #7A6200; }
.badge-new  { background: var(--gold); color: var(--ink-900); }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: var(--r-pill);
  background: var(--surface); border: 1.5px solid var(--border);
  font-size: .9rem; font-weight: 500; color: var(--body);
  transition: all var(--dur) var(--ease); cursor: pointer;
}
.chip:hover { border-color: var(--aqua-400); color: var(--primary); }
.chip[aria-pressed="true"], .chip.is-active {
  background: var(--aqua-600); border-color: var(--aqua-600); color: #fff;
}

/* Star ratings */
.stars { display: inline-flex; align-items: center; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.stars.sm svg { width: 14px; height: 14px; }
.stars.lg svg { width: 20px; height: 20px; }
.rating-row { display: inline-flex; align-items: center; gap: 8px; }
.rating-row .rating-count { color: var(--muted); font-size: .875rem; }

/* ----------------------------------------------------------------------------
   6. ANNOUNCEMENT BAR + HEADER
   ---------------------------------------------------------------------------- */
.announce {
  background: var(--ink-900); color: #E6F3F7;
  font-size: .82rem; font-weight: 500; letter-spacing: .02em;
  text-align: center; padding: 9px 16px;
}
.announce strong { color: #fff; font-weight: 700; }
.announce .dot { opacity: .4; margin-inline: 12px; }

.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(250, 251, 248, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-5);
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand-name-img { height: 26px; width: auto; display: block; }
.site-footer .brand-logo { height: 54px; }
.site-footer .brand-name-img { height: 30px; }
/* .brand-name is still used for the mobile-menu drawer title */
.brand-name {
  font-family: var(--font-sans); font-weight: 800; font-size: 1.28rem;
  color: var(--primary); letter-spacing: .02em; line-height: 1;
}
.brand-name span { color: #C29200; font-weight: 700; margin-left: 3px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 15px; border-radius: var(--r-sm);
  font-weight: 500; font-size: .96rem; color: var(--ink-800);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  position: relative;
}
.main-nav a:hover { background: var(--aqua-50); color: var(--primary); }
.main-nav a[aria-current="page"] { color: var(--primary); }
.main-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 2px; background: var(--aqua-500); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--ink-800);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  position: relative;
}
.icon-btn:hover { background: var(--aqua-50); color: var(--primary); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 4px; right: 3px;
  min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--sale); color: #fff;
  border-radius: var(--r-pill); font-size: .68rem; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
  border: 2px solid var(--cream);
  transform: scale(0); transition: transform var(--dur) var(--ease);
}
.cart-count.show { transform: scale(1); }

.menu-toggle { display: none; }
@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: grid; }
}

/* ----------------------------------------------------------------------------
   7. MOBILE DRAWER
   ---------------------------------------------------------------------------- */
.overlay {
  position: fixed; inset: 0; background: rgba(20, 37, 30, .5);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity var(--dur-lg) var(--ease), visibility var(--dur-lg);
  z-index: var(--z-overlay);
}
.overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; bottom: 0; right: 0; width: min(420px, 90vw);
  background: var(--surface); z-index: var(--z-drawer);
  transform: translateX(100%); transition: transform var(--dur-lg) var(--ease);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.drawer.left { right: auto; left: 0; transform: translateX(-100%); }
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--space-5); border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.drawer-head h2 { font-size: 1.2rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: var(--space-5); }
.drawer-foot { padding: var(--space-5); border-top: 1px solid var(--border); flex-shrink: 0; background: var(--surface); }

.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 4px; font-size: 1.15rem; font-weight: 500; color: var(--ink-900);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a svg { width: 20px; height: 20px; color: var(--muted); }

/* ----------------------------------------------------------------------------
   8. HERO
   ---------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--surface-tint); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 82% 12%, rgba(63,192,224,.35), transparent 70%),
    radial-gradient(50% 45% at 12% 90%, rgba(245,196,0,.22), transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(48px, 7vw, 96px);
}
/* prevent the swiper's flex track from blowing out the grid on small screens */
.hero-inner > * { min-width: 0; }
.hero-copy { max-width: 560px; }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.8rem); margin-bottom: var(--space-4); }
.hero h1 .accent { font-family: var(--font-serif); font-weight: 500; font-style: italic; color: var(--primary); }
.hero-lede { font-size: 1.15rem; color: var(--ink-700); margin-bottom: var(--space-6); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.hero-trust { display: flex; align-items: center; gap: var(--space-5); margin-top: var(--space-6); flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--ink-700); font-weight: 500; }
.hero-trust-item svg { width: 20px; height: 20px; color: var(--primary); }

.hero-visual { position: relative; max-width: 470px; width: 100%; justify-self: center; }
.hero-card {
  position: relative; z-index: 2;
  aspect-ratio: 4 / 4.2; border-radius: var(--r-xl);
  background: var(--surface); box-shadow: var(--shadow-lg);
  overflow: hidden; border: 1px solid var(--border);
}
.hero-card img, .hero-card .ph-media { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; z-index: 3;
  background: var(--surface); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 13px 16px;
  display: flex; align-items: center; gap: 12px; border: 1px solid var(--border);
}
.hero-float-1 { top: 8%; left: -6%; }
.hero-float-2 { bottom: 26%; right: -5%; }
.hero-float .hf-icon {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0;
  background: var(--aqua-100); color: var(--aqua-700);
}
.hero-float .hf-icon svg { width: 22px; height: 22px; }
.hero-float .hf-label { font-size: .72rem; color: var(--muted); font-weight: 500; }
.hero-float .hf-value { font-size: .98rem; color: var(--ink-900); font-weight: 700; line-height: 1.2; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 640px; margin-inline: auto; }
  .hero-lede { margin-inline: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 440px; margin: 8px auto 0; }
  .hero-float-1 { left: -2%; }
  .hero-float-2 { right: -2%; }
}
@media (max-width: 900px) {
  .hero-float { display: none; }
}

/* ----------------------------------------------------------------------------
   9. TRUST BAR / MARQUEE
   ---------------------------------------------------------------------------- */
.trust-bar { border-block: 1px solid var(--border); background: var(--surface); }
.trust-bar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4); padding-block: var(--space-5);
}
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item .ti-icon {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--aqua-50); color: var(--aqua-600);
}
.trust-item .ti-icon svg { width: 24px; height: 24px; }
.trust-item .ti-title { font-weight: 700; color: var(--ink-900); font-size: .95rem; line-height: 1.2; }
.trust-item .ti-sub { font-size: .82rem; color: var(--muted); }
@media (max-width: 760px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4) var(--space-3); }
}

/* Certification logos strip */
.cert-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--border);
  font-size: .82rem; font-weight: 600; color: var(--ink-700); letter-spacing: .03em;
}
.cert-badge svg { width: 18px; height: 18px; color: var(--aqua-600); }

/* ----------------------------------------------------------------------------
   10. CATEGORY CARDS
   ---------------------------------------------------------------------------- */
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-4);
}
.cat-card {
  position: relative; display: block; border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
  min-height: 210px;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--aqua-300); }
.cat-card .cat-media { height: 130px; overflow: hidden; }
.cat-card .cat-media > * { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cat-card:hover .cat-media > * { transform: scale(1.06); }
.cat-card .cat-body { padding: 16px 18px; }
.cat-card .cat-name { font-weight: 700; color: var(--ink-900); font-size: 1.05rem; }
.cat-card .cat-count { font-size: .84rem; color: var(--muted); margin-top: 2px; }
.cat-card .cat-arrow { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--primary); box-shadow: var(--shadow-xs); transition: transform var(--dur) var(--ease); }
.cat-card:hover .cat-arrow { transform: rotate(-45deg); background: var(--primary); color: #fff; }
.cat-card .cat-arrow svg { width: 18px; height: 18px; }

/* ----------------------------------------------------------------------------
   11. PRODUCT CARD
   ---------------------------------------------------------------------------- */
.product-grid {
  display: grid; gap: var(--space-5);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
}

.product-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--aqua-200); }
.product-media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--sand-50);
  display: block;
}
.product-media > img, .product-media > .ph-media { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-media > img { object-fit: contain; background: #fff; padding: 12px; }
.product-card:hover .product-media > * { transform: scale(1.05); }
.product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.product-wish {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: grid; place-items: center; color: var(--ink-700); box-shadow: var(--shadow-xs);
  transition: all var(--dur) var(--ease); opacity: 0; transform: translateY(-4px);
}
.product-card:hover .product-wish { opacity: 1; transform: translateY(0); }
.product-wish:hover { color: var(--sale); }
.product-wish svg { width: 20px; height: 20px; }
.product-wish.is-active { color: var(--sale); background: #fff; }

.product-quickadd {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  opacity: 0; transform: translateY(10px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.product-card:hover .product-quickadd { opacity: 1; transform: translateY(0); }
@media (hover: none) { .product-quickadd { opacity: 1; transform: none; } .product-wish { opacity: 1; transform: none; } }

.product-body { padding: 15px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--aqua-600); margin-bottom: 5px; }
.product-title { font-size: 1.02rem; font-weight: 600; color: var(--ink-900); line-height: 1.3; margin-bottom: 8px; }
.product-title a:hover { color: var(--primary); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.product-rating .rc { font-size: .8rem; color: var(--muted); }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { display: flex; align-items: baseline; gap: 8px; }
.price .now { font-size: 1.2rem; font-weight: 700; color: var(--ink-900); }
.price .was { font-size: .92rem; color: var(--muted); text-decoration: line-through; }
.price .save { font-size: .74rem; font-weight: 700; color: var(--sale); }

.qty-mini {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: var(--aqua-600); color: #fff; display: grid; place-items: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease); flex-shrink: 0;
}
.qty-mini:hover { background: var(--aqua-700); transform: scale(1.05); }
.qty-mini svg { width: 20px; height: 20px; }

/* ----------------------------------------------------------------------------
   12. SPLIT / FEATURE SECTIONS
   ---------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 5/4; background: var(--sand-50); border: 1px solid var(--border);
}
.split-media > * { width: 100%; height: 100%; object-fit: cover; }

.feature-list { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-5); }
.feature-item { display: flex; gap: 15px; align-items: flex-start; }
.feature-item .fi-icon {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--aqua-100); color: var(--aqua-700);
}
.feature-item .fi-icon svg { width: 23px; height: 23px; }
.feature-item .fi-title { font-weight: 700; color: var(--ink-900); font-size: 1.05rem; }
.feature-item .fi-text { color: var(--muted); font-size: .95rem; margin-top: 2px; }

/* Steps (how to use) */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-5); }
.step { position: relative; padding: 26px 22px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--border); }
.step-num {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: var(--gold); color: var(--ink-900); font-weight: 700; font-size: 1.1rem; margin-bottom: 16px;
  font-family: var(--font-serif);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ----------------------------------------------------------------------------
   13. TESTIMONIALS / REVIEWS
   ---------------------------------------------------------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-5); }
.testi-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 14px;
}
.testi-card .testi-body { color: var(--ink-800); font-size: 1.02rem; line-height: 1.6; }
.testi-card .testi-body::before { content: "\201C"; }
.testi-card .testi-body::after { content: "\201D"; }
.testi-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 1rem;
  background: linear-gradient(140deg, var(--aqua-500), var(--blue-600));
}
.testi-name { font-weight: 700; color: var(--ink-900); font-size: .95rem; }
.testi-meta { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.verified { display: inline-flex; align-items: center; gap: 4px; color: var(--success); font-weight: 600; }
.verified svg { width: 14px; height: 14px; }

/* Big stat band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.stat { text-align: center; }
.stat .stat-num { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 600; color: var(--primary); line-height: 1; }
.stat .stat-label { color: var(--muted); font-size: .95rem; margin-top: 8px; }
@media (max-width: 700px) { .stat-band { grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-4); } }

/* ----------------------------------------------------------------------------
   14. NEWSLETTER / CTA BAND
   ---------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--aqua-700), var(--aqua-800));
  border-radius: var(--r-xl); padding: clamp(36px, 6vw, 72px);
  color: #fff; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 85% 10%, rgba(255,255,255,.14), transparent 70%),
              radial-gradient(45% 55% at 10% 100%, rgba(245,196,0,.25), transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 52ch; margin: 14px auto 0; }
.newsletter-form {
  display: flex; gap: 10px; max-width: 480px; margin: 28px auto 0;
}
.newsletter-form input {
  flex: 1; min-height: 54px; padding: 0 20px; border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12); color: #fff;
  font-size: 1rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.7); }
.newsletter-form input:focus-visible { outline-color: #fff; background: rgba(255,255,255,.2); }
.newsletter-form .btn { background: #fff; color: var(--aqua-700); }
.newsletter-form .btn:hover { background: var(--aqua-50); }
.cta-fine { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 14px; }
@media (max-width: 520px) { .newsletter-form { flex-direction: column; } }

/* ----------------------------------------------------------------------------
   15. FORMS & INPUTS
   ---------------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: var(--space-4); }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink-800); }
.field .req { color: var(--sale); }
.input, .select, .textarea {
  width: 100%; min-height: 50px; padding: 12px 16px;
  border: 1.5px solid var(--border-strong); border-radius: var(--r-sm);
  background: var(--surface); font-size: 1rem; color: var(--ink-900);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.textarea { min-height: 120px; resize: vertical; padding-top: 12px; }
.input:focus-visible, .select:focus-visible, .textarea:focus-visible {
  outline: none; border-color: var(--aqua-500); box-shadow: var(--shadow-ring);
}
.field .hint { font-size: .82rem; color: var(--muted); }
.field .error { font-size: .82rem; color: var(--sale); font-weight: 500; display: none; }
.field.has-error .input, .field.has-error .textarea { border-color: var(--sale); }
.field.has-error .error { display: block; }

/* Quantity stepper */
.qty-stepper {
  display: inline-flex; align-items: center; border: 1.5px solid var(--border-strong);
  border-radius: var(--r-pill); overflow: hidden; background: var(--surface);
}
.qty-stepper button { width: 46px; height: 48px; display: grid; place-items: center; color: var(--ink-800); transition: background var(--dur); }
.qty-stepper button:hover { background: var(--aqua-50); color: var(--primary); }
.qty-stepper button svg { width: 18px; height: 18px; }
.qty-stepper input { width: 44px; text-align: center; border: none; font-weight: 700; font-size: 1rem; background: transparent; -moz-appearance: textfield; }
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ----------------------------------------------------------------------------
   16. BREADCRUMBS
   ---------------------------------------------------------------------------- */
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: .875rem; color: var(--muted); padding-block: var(--space-4); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb svg { width: 15px; height: 15px; opacity: .6; }
.breadcrumb [aria-current="page"] { color: var(--ink-800); font-weight: 500; }

/* ----------------------------------------------------------------------------
   17. SHOP LAYOUT (filters + grid)
   ---------------------------------------------------------------------------- */
.shop-layout { display: grid; grid-template-columns: 268px 1fr; gap: var(--space-6); align-items: start; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }

.filters { position: sticky; top: calc(var(--header-h) + 20px); }
.filter-group { padding: 20px 0; border-bottom: 1px solid var(--border); }
.filter-group:first-child { padding-top: 0; }
.filter-group h4 { font-size: .95rem; margin-bottom: 14px; letter-spacing: .01em; }
.filter-opt { display: flex; align-items: center; gap: 11px; padding: 7px 0; cursor: pointer; font-size: .95rem; color: var(--body); }
.filter-opt input { width: 19px; height: 19px; accent-color: var(--aqua-600); cursor: pointer; }
.filter-opt .fo-count { margin-left: auto; color: var(--muted); font-size: .82rem; }
.filter-opt:hover { color: var(--primary); }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  margin-bottom: var(--space-5); flex-wrap: wrap;
}
.shop-count { color: var(--muted); font-size: .95rem; }
.shop-count strong { color: var(--ink-900); }
.sort-wrap { display: flex; align-items: center; gap: 10px; }
.sort-wrap label { font-size: .9rem; color: var(--muted); }
.sort-wrap .select { min-height: 44px; width: auto; padding-right: 40px; }

.filter-toggle { display: none; }
.filters-close { display: none; }
@media (max-width: 900px) {
  .filter-toggle { display: inline-flex; }
  #shopFilters {
    position: fixed; top: 0; bottom: 0; left: 0; width: min(360px, 88vw);
    background: var(--surface); z-index: var(--z-drawer); padding: var(--gutter);
    overflow-y: auto; box-shadow: var(--shadow-lg);
    transform: translateX(-100%); transition: transform var(--dur-lg) var(--ease);
  }
  #shopFilters.open { transform: translateX(0); }
  .filters-close { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
  .filters-close h3 { font-size: 1.2rem; }
}

.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--space-4); }
.active-filter { display: inline-flex; align-items: center; gap: 7px; padding: 6px 8px 6px 13px; border-radius: var(--r-pill); background: var(--aqua-100); color: var(--aqua-700); font-size: .85rem; font-weight: 500; }
.active-filter button { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: var(--aqua-600); color: #fff; }
.active-filter button svg { width: 12px; height: 12px; }

/* ----------------------------------------------------------------------------
   18. PRODUCT DETAIL PAGE
   ---------------------------------------------------------------------------- */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }

.gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.gallery-main {
  aspect-ratio: 1/1; border-radius: var(--r-lg); overflow: hidden;
  background: var(--sand-50); border: 1px solid var(--border); position: relative;
}
.gallery-main > img, .gallery-main > .ph-media { width: 100%; height: 100%; object-fit: cover; }
.gallery-main > img { object-fit: contain; background: #fff; padding: 24px; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumb {
  width: 76px; height: 76px; border-radius: var(--r-sm); overflow: hidden;
  border: 2px solid var(--border); background: var(--sand-50); transition: border-color var(--dur) var(--ease);
}
.gallery-thumb.is-active { border-color: var(--aqua-600); }
.gallery-thumb > * { width: 100%; height: 100%; object-fit: cover; }

.pdp-info { max-width: 520px; }
.pdp-cat { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--aqua-600); }
.pdp-title { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin: 8px 0 12px; }
.pdp-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.pdp-rating a { font-size: .875rem; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.pdp-price .now { font-size: 2rem; font-weight: 700; color: var(--ink-900); }
.pdp-price .was { font-size: 1.15rem; color: var(--muted); text-decoration: line-through; }
.pdp-price .save-pill { background: var(--sale-soft); color: var(--sale); font-weight: 700; font-size: .82rem; padding: 4px 11px; border-radius: var(--r-pill); }
.pdp-tax { font-size: .85rem; color: var(--muted); margin-bottom: 22px; }
.pdp-desc { color: var(--body); margin-bottom: 24px; }

.option-group { margin-bottom: 22px; }
.option-group .opt-label { font-weight: 600; font-size: .9rem; margin-bottom: 10px; color: var(--ink-800); }
.option-values { display: flex; flex-wrap: wrap; gap: 10px; }
.opt-value {
  padding: 11px 18px; border-radius: var(--r-sm); border: 1.5px solid var(--border-strong);
  background: var(--surface); font-weight: 600; font-size: .92rem; color: var(--ink-800);
  transition: all var(--dur) var(--ease); cursor: pointer;
}
.opt-value:hover { border-color: var(--aqua-400); }
.opt-value.is-active { border-color: var(--aqua-600); background: var(--aqua-50); color: var(--aqua-700); box-shadow: var(--shadow-ring); }

.pdp-actions { display: flex; gap: 12px; align-items: stretch; margin-bottom: 20px; }
.pdp-actions .qty-stepper { flex-shrink: 0; }
.pdp-actions .btn { flex: 1; }

.pdp-assurances { display: flex; flex-direction: column; gap: 12px; padding: 20px; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface-tint); margin-bottom: 24px; }
.assurance { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--ink-800); }
.assurance svg { width: 22px; height: 22px; color: var(--aqua-600); flex-shrink: 0; }
.assurance strong { color: var(--ink-900); }

/* Accordion */
.accordion { border-top: 1px solid var(--border); }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-weight: 700; font-size: 1.05rem; color: var(--ink-900); text-align: left;
}
.acc-trigger .acc-icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform var(--dur) var(--ease); color: var(--muted); }
.acc-trigger[aria-expanded="true"] .acc-icon { transform: rotate(45deg); color: var(--primary); }
.acc-panel { overflow: hidden; max-height: 0; transition: max-height var(--dur-lg) var(--ease); }
.acc-panel-inner { padding-bottom: 22px; color: var(--body); }
.acc-panel-inner ul { display: flex; flex-direction: column; gap: 9px; }
.acc-panel-inner ul li { display: flex; gap: 10px; align-items: flex-start; }
.acc-panel-inner ul li svg { width: 20px; height: 20px; color: var(--aqua-600); flex-shrink: 0; margin-top: 1px; }

/* ----------------------------------------------------------------------------
   19. REVIEWS SECTION
   ---------------------------------------------------------------------------- */
.reviews-summary { display: grid; grid-template-columns: 240px 1fr; gap: var(--space-6); align-items: center; padding: 28px 0; border-block: 1px solid var(--border); margin-bottom: var(--space-6); }
@media (max-width: 680px) { .reviews-summary { grid-template-columns: 1fr; gap: var(--space-5); } }
.rsum-score { text-align: center; }
.rsum-score .big { font-family: var(--font-serif); font-size: 3.6rem; font-weight: 600; color: var(--ink-900); line-height: 1; }
.rsum-score .of { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.rbar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-size: .85rem; }
.rbar-row .rbar-label { width: 44px; color: var(--muted); display: flex; align-items: center; gap: 3px; }
.rbar-track { flex: 1; height: 8px; border-radius: var(--r-pill); background: var(--sand-100); overflow: hidden; }
.rbar-fill { height: 100%; background: var(--gold); border-radius: var(--r-pill); }
.rbar-row .rbar-pct { width: 40px; text-align: right; color: var(--muted); }

.review-list { display: flex; flex-direction: column; gap: var(--space-5); }
.review {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  padding-bottom: var(--space-5); border-bottom: 1px solid var(--border);
}
.review-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.review-name { font-weight: 700; color: var(--ink-900); }
.review-date { font-size: .82rem; color: var(--muted); }
.review-title { font-weight: 600; color: var(--ink-900); margin: 6px 0; }
.review-body { color: var(--body); font-size: .95rem; }

/* ----------------------------------------------------------------------------
   20. CART DRAWER & CART PAGE
   ---------------------------------------------------------------------------- */
.cart-line { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-line-media { width: 76px; height: 76px; border-radius: var(--r-sm); overflow: hidden; background: var(--sand-50); border: 1px solid var(--border); flex-shrink: 0; }
.cart-line-media > * { width: 100%; height: 100%; object-fit: cover; }
.cart-line-media > img { object-fit: contain; background: #fff; padding: 4px; }
.cart-line-title { font-weight: 600; color: var(--ink-900); font-size: .95rem; line-height: 1.3; }
.cart-line-variant { font-size: .82rem; color: var(--muted); margin-top: 2px; }
.cart-line-price { font-weight: 700; color: var(--ink-900); margin-top: 6px; }
.cart-line-actions { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.cart-line-remove { font-size: .82rem; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.cart-line-remove:hover { color: var(--sale); }
.qty-stepper.mini button { width: 34px; height: 34px; }
.qty-stepper.mini input { width: 34px; height: 34px; }

.cart-empty { text-align: center; padding: var(--space-8) var(--space-4); }
.cart-empty .ce-icon { width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; background: var(--aqua-50); display: grid; place-items: center; color: var(--aqua-500); }
.cart-empty .ce-icon svg { width: 36px; height: 36px; }

.summary-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; font-size: .95rem; color: var(--body); }
.summary-row.total { font-size: 1.2rem; font-weight: 700; color: var(--ink-900); padding-top: 16px; margin-top: 8px; border-top: 1px solid var(--border); }
.free-ship-bar { margin: 4px 0 16px; }
.free-ship-bar .fsb-track { height: 8px; background: var(--sand-100); border-radius: var(--r-pill); overflow: hidden; margin-top: 8px; }
.free-ship-bar .fsb-fill { height: 100%; background: linear-gradient(90deg, var(--aqua-500), var(--aqua-600)); border-radius: var(--r-pill); transition: width var(--dur-lg) var(--ease); }
.free-ship-bar p { font-size: .85rem; color: var(--muted); }
.free-ship-bar strong { color: var(--aqua-700); }

/* Cart page */
.cart-page-grid { display: grid; grid-template-columns: 1fr 360px; gap: var(--space-6); align-items: start; }
@media (max-width: 860px) { .cart-page-grid { grid-template-columns: 1fr; } }
.cart-summary-card { position: sticky; top: calc(var(--header-h) + 20px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.cart-page-line { display: grid; grid-template-columns: 92px 1fr auto; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-page-line .cart-line-media { width: 92px; height: 92px; }
@media (max-width: 520px) { .cart-page-line { grid-template-columns: 72px 1fr; } .cart-page-line .cpl-price { grid-column: 2; } }

/* ----------------------------------------------------------------------------
   21. TOAST
   ---------------------------------------------------------------------------- */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: var(--z-toast); display: flex; flex-direction: column; gap: 10px; align-items: center; width: min(420px, calc(100vw - 32px)); }
.toast {
  display: flex; align-items: center; gap: 12px; width: 100%;
  background: var(--ink-900); color: #fff; padding: 14px 18px; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); font-size: .95rem; font-weight: 500;
  transform: translateY(20px); opacity: 0; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .toast-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--aqua-500); display: grid; place-items: center; flex-shrink: 0; }
.toast .toast-icon svg { width: 16px; height: 16px; }
.toast a { color: var(--aqua-300); font-weight: 700; text-decoration: underline; margin-left: auto; white-space: nowrap; }

/* ----------------------------------------------------------------------------
   22. FOOTER
   ---------------------------------------------------------------------------- */
.site-footer { background: var(--ink-900); color: #C2D8DF; padding-top: var(--space-8); margin-top: var(--space-6); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-6); padding-bottom: var(--space-7); }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-6) var(--space-4); } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand-name { color: #5BCDE8; }
.footer-brand .brand-name span { color: var(--gold); }
.footer-brand p { color: #8FA9B2; margin-top: 14px; max-width: 32ch; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col a { display: block; padding: 6px 0; color: #A2BAC3; font-size: .93rem; transition: color var(--dur); }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #C2D8DF; transition: background var(--dur), color var(--dur); }
.footer-social a:hover { background: var(--aqua-600); color: #fff; }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: var(--space-5); display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; font-size: .85rem; color: #84989F; }
.footer-bottom a:hover { color: #fff; }

/* ----------------------------------------------------------------------------
   23. PLACEHOLDER MEDIA (branded, until real photos added)
   ---------------------------------------------------------------------------- */
.ph-media {
  width: 100%; height: 100%; display: grid; place-items: center; position: relative;
  background:
    radial-gradient(120% 120% at 30% 20%, var(--aqua-100), transparent 60%),
    linear-gradient(150deg, var(--sand-50), var(--aqua-50));
  overflow: hidden;
}
.ph-media .ph-glyph { color: var(--aqua-400); opacity: .5; width: 42%; height: 42%; }
.ph-media .ph-label {
  position: absolute; bottom: 14px; left: 0; right: 0; text-align: center;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--aqua-600); opacity: .75; padding-inline: 12px;
}
.ph-media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 70% 80%, rgba(14,116,144,.06), transparent 70%);
}

/* ----------------------------------------------------------------------------
   24. UTILITY / MISC
   ---------------------------------------------------------------------------- */
.page-hero { background: var(--surface-tint); padding-block: clamp(36px, 6vw, 72px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 85% 10%, rgba(63,192,224,.22), transparent 70%); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 60ch; }

.divider { height: 1px; background: var(--border); border: none; margin-block: var(--space-6); }
.prose { max-width: 68ch; color: var(--body); }
.prose p { margin-bottom: 18px; }
.prose h2 { margin: 36px 0 14px; }
.prose h3 { margin: 26px 0 10px; }
.prose ul { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.prose ul li { display: flex; gap: 11px; align-items: flex-start; }
.prose ul li svg { width: 20px; height: 20px; color: var(--aqua-600); flex-shrink: 0; margin-top: 3px; }

.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-5); }
.value-card { padding: 28px 24px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--border); }
.value-card .vc-icon { width: 52px; height: 52px; border-radius: 15px; background: var(--aqua-100); color: var(--aqua-700); display: grid; place-items: center; margin-bottom: 18px; }
.value-card .vc-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .95rem; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ----------------------------------------------------------------------------
   25. HERO AUTO-SWIPER (cinematic product carousel; rendered by ui.js)
   ---------------------------------------------------------------------------- */
.hero-swiper { position: relative; background: var(--surface); }
.hs-track {
  display: flex; height: 100%;
  transition: transform .75s cubic-bezier(.32, 0, .16, 1);
  will-change: transform;
}
.hs-slide {
  position: relative; flex: 0 0 100%; min-width: 0; height: 100%;
  display: flex; flex-direction: column; background: #fff;
}
.hs-badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.hs-media {
  flex: 1; min-height: 0; display: block; padding: clamp(16px, 4vw, 34px);
  padding-bottom: 6px;
}
.hs-media img {
  width: 100%; height: 100%; object-fit: contain;
  transform: scale(1.06);
  transition: transform 1.4s var(--ease);
}
.hs-slide.is-active .hs-media img { transform: scale(1); }
.hs-meta {
  min-height: 76px; padding: 12px 18px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--border); background: var(--surface);
}
.hs-title {
  display: block; font-weight: 700; color: var(--ink-900);
  font-size: .95rem; line-height: 1.25; margin-bottom: 3px;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.hs-meta .price .now { font-size: 1.05rem; }
.hs-meta .btn { flex-shrink: 0; }
.hs-arrow {
  position: absolute; top: 42%; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.94); color: var(--ink-800);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
}
.hs-arrow:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: scale(1.06); }
.hs-arrow svg { width: 20px; height: 20px; }
.hs-prev { left: 12px; }
.hs-prev svg { transform: rotate(180deg); }
.hs-next { right: 12px; }
.hs-dots {
  position: absolute; left: 0; right: 0; bottom: 90px; z-index: 3;
  display: flex; justify-content: center; gap: 7px;
}
.hs-dot {
  width: 8px; height: 8px; border-radius: var(--r-pill);
  background: var(--aqua-200); cursor: pointer; padding: 0;
  transition: all .35s var(--ease);
}
.hs-dot:hover { background: var(--aqua-400); }
.hs-dot.is-active { width: 24px; background: var(--aqua-600); }
@media (prefers-reduced-motion: reduce) {
  .hs-track { transition: none; }
  .hs-media img { transition: none; transform: none; }
}

/* ----------------------------------------------------------------------------
   26. CHECKOUT
   ---------------------------------------------------------------------------- */
.checkout-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; gap: 28px; } }
.radio-opt {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; margin-bottom: 10px; cursor: pointer;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.radio-opt:has(input:checked) { border-color: var(--primary); background: var(--aqua-50); }
.radio-opt input { margin-top: 3px; accent-color: var(--primary); width: 17px; height: 17px; flex-shrink: 0; }
.radio-opt strong { display: block; color: var(--ink-900); font-size: .95rem; }
.radio-opt small { color: var(--muted); font-size: .82rem; line-height: 1.4; }
.co-item {
  display: flex; align-items: baseline; gap: 10px;
  padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: .92rem;
}
.co-item:last-of-type { border-bottom: none; }
.co-qty { color: var(--muted); font-weight: 600; flex-shrink: 0; }
.co-title { flex: 1; color: var(--body); }
.co-title small { display: block; color: var(--muted); font-size: .78rem; }
.co-item strong { color: var(--ink-900); flex-shrink: 0; }

/* ----------------------------------------------------------------------------
   27. WHATSAPP CONTACT FAB (rendered by ui.js; number in products.js CONFIG)
   ---------------------------------------------------------------------------- */
.wa-fab {
  position: fixed;
  left: 20px;
  bottom: max(20px, env(safe-area-inset-bottom, 20px));
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .38), var(--shadow-md);
  z-index: 250;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45), var(--shadow-lg);
}
.wa-fab:active { transform: scale(.97); }
.wa-fab svg { width: 30px; height: 30px; }
@media (max-width: 520px) {
  .wa-fab { width: 52px; height: 52px; left: 14px; }
  .wa-fab svg { width: 28px; height: 28px; }
}
