/* ═══════════════════════════════════════════════════════════════════
   WILDROOT — Pet Probiotic
   Design system. Warm, natural, premium DTC pet-wellness.
   Palette pulled from the hero footage: cream studio, golden cultures,
   forest meadow.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* ── color ── */
  --cream:      #FBF6EC;
  --cream-2:    #F4ECDA;
  --paper:      #FFFDF8;
  --sand:       #EADFC7;
  --tan:        #C9B085;
  --amber:      #E8A33D;
  --amber-deep: #D3892A;
  --pumpkin:    #C6642A;
  --terracotta: #A94F22;
  --forest:     #2E5A3E;
  --forest-2:   #234630;
  --moss:       #6B7A4A;
  --ink:        #211D17;
  --ink-soft:   #4A4238;
  --taupe:      #726A59;   /* WCAG-AA on cream for small meta labels */
  --taupe-light:#8A8072;   /* decorative only (footer-on-dark, placeholders) */
  --taupe-2:    #B3A896;
  --line:       #E3D8C2;
  --cream-90:   rgba(251, 246, 236, 0.9);

  /* ── semantic ── */
  --bg:         var(--cream);
  --surface:    var(--paper);
  --text:       var(--ink);
  --text-muted: #635B4C;   /* AA on cream for muted body copy */
  --accent:     var(--amber);
  --accent-ink: var(--amber-deep);
  --brand:      var(--forest);

  /* ── type ── */
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* ── space & shape ── */
  --maxw: 1240px;
  --gut: clamp(1.15rem, 4vw, 2.75rem);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 11px;
  --shadow-sm: 0 1px 2px rgba(33,29,23,.05), 0 3px 8px rgba(33,29,23,.05);
  --shadow: 0 4px 12px rgba(33,29,23,.07), 0 18px 44px rgba(33,29,23,.09);
  --shadow-lg: 0 10px 26px rgba(33,29,23,.10), 0 40px 90px rgba(33,29,23,.16);
  --ring: 0 0 0 3px rgba(232,163,61,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ── reset-ish ── */
*, *::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; } }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.62;
  font-size: clamp(1rem, 0.55vw + 0.9rem, 1.075rem);
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

::selection { background: var(--amber); color: var(--ink); }

/* ── inline SVG icons (replace all emoji) ── */
.ico {
  width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.stars { font-variant-emoji: text; }
/* icon sizing / color per context */
.brand__mark .ico { width: 19px; height: 19px; color: #fff; }
.benefit__icon .ico { width: 26px; height: 26px; color: var(--pumpkin); }
.ingredient__emoji .ico { width: 34px; height: 34px; color: var(--forest); }
.review__avatar .ico { width: 22px; height: 22px; color: var(--forest); }
.ing-check .ico, .pdp__bullets .ico { color: var(--forest); }
.footer-social .ico { width: 18px; height: 18px; }
.order-confirm__badge .ico { color: #fff; width: 40px; height: 40px; }
.trustbar__item .ico { color: var(--pumpkin); width: 1.15em; height: 1.15em; }
.dog-widget__label .ico { color: var(--forest); }
.topbar__track .ico { width: 1.05em; height: 1.05em; vertical-align: -0.16em; }
.buybox__trust .ico { color: var(--forest); }
.stars .ico, .review__stars .ico, .card__stars .ico, .pdp__rating .stars .ico {
  width: 0.95em; height: 0.95em; margin-right: 0.06em; vertical-align: -0.11em;
}

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

/* ── layout helpers ── */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 860px; }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}
.eyebrow.on-dark { color: #F3C169; }
.lede { font-size: clamp(1.05rem, 1.2vw, 1.28rem); color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--text-muted); }

.h-display { font-size: clamp(2.6rem, 6.2vw, 5.4rem); letter-spacing: -0.035em; }
.h1 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); }
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.8rem); }
.h3 { font-size: clamp(1.28rem, 2vw, 1.7rem); }
.serif { font-family: var(--serif); }
.amber-text { color: var(--pumpkin); }

/* ═══ buttons ═══ */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: 0.95em 1.7em;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  letter-spacing: 0.005em;
  border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, filter .2s;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }
.btn--amber { --btn-bg: var(--amber); --btn-fg: var(--ink); }
.btn--pumpkin { --btn-bg: var(--pumpkin); --btn-fg: #fff; }
.btn--forest { --btn-bg: var(--forest); --btn-fg: #fff; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { --btn-bg: var(--paper); box-shadow: inset 0 0 0 1.5px var(--tan), var(--shadow-sm); }
.btn--light { --btn-bg: var(--paper); --btn-fg: var(--ink); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 1.1em 2.1em; font-size: 1.05rem; }
.btn--sm { padding: 0.6em 1.1em; font-size: 0.85rem; }
.btn__arrow { transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-weight: 600; color: var(--forest);
  border-bottom: 1.5px solid transparent; padding-bottom: 1px;
  transition: border-color .2s, gap .2s var(--ease);
}
.link-arrow:hover { border-color: var(--forest); gap: 0.65em; }

/* ═══ pills / badges ═══ */
.pill {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.4em 0.95em; border-radius: 100px;
  background: var(--paper); box-shadow: inset 0 0 0 1px var(--line);
  font-size: 0.8rem; font-weight: 600; color: var(--ink-soft);
}
.pill--amber { background: rgba(232,163,61,.15); box-shadow: inset 0 0 0 1px rgba(232,163,61,.35); color: var(--terracotta); }
.pill--forest { background: rgba(46,90,62,.1); box-shadow: inset 0 0 0 1px rgba(46,90,62,.25); color: var(--forest); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.dot--live { background: #35a35c; box-shadow: 0 0 0 0 rgba(53,163,92,.6); animation: livePulse 2s infinite; }
@keyframes livePulse { 70% { box-shadow: 0 0 0 7px rgba(53,163,92,0); } 100% { box-shadow: 0 0 0 0 rgba(53,163,92,0); } }

/* ═══════════════════ HEADER / NAV ═══════════════════ */
.topbar {
  background: var(--forest); color: var(--cream);
  font-size: 0.8rem; letter-spacing: 0.01em;
  overflow: hidden;
}
.topbar__track {
  display: flex; gap: 3.5rem; white-space: nowrap;
  padding-block: 0.5rem;
  animation: ticker 32s linear infinite;
  width: max-content;
}
.topbar__track span { display: inline-flex; align-items: center; gap: 0.5em; opacity: .92; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .topbar__track { animation: none; justify-content: center; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--cream-90);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; gap: 1.4rem;
  min-height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--serif); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.02em; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--amber), var(--pumpkin) 70%);
  display: grid; place-items: center; color: #fff; flex: none;
  box-shadow: inset 0 -3px 6px rgba(0,0,0,.12);
}
.nav__links { display: flex; align-items: center; gap: 1.55rem; margin-left: 0.5rem; }
.nav__links a { font-weight: 500; font-size: 0.96rem; color: var(--ink-soft); position: relative; padding-block: 0.3rem; transition: color .2s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--amber); transition: width .28s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__spacer { flex: 1; }
.nav__actions { display: flex; align-items: center; gap: 0.35rem; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink);
  transition: background .2s, transform .2s;
  position: relative;
}
.icon-btn:hover { background: var(--sand); }
.cart-count {
  position: absolute; top: 2px; right: 0px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--pumpkin); color: #fff;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  border-radius: 100px; display: grid; place-items: center;
  transform: scale(0); transition: transform .3s var(--ease);
  border: 2px solid var(--cream);
}
.cart-count.show { transform: scale(1); }
.nav__toggle { display: none; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: grid; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gut) 1.4rem; box-shadow: var(--shadow);
  }
  .nav.open .nav__links a { font-size: 1.1rem; padding-block: 0.6rem; width: 100%; }
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: -20% -10% auto; height: 70%;
  background: radial-gradient(60% 100% at 70% 0%, rgba(232,163,61,.28), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.hero__eyebrow-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; margin-bottom: 1.4rem; }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--pumpkin); font-style: italic; }
.hero__lede { margin-bottom: 1.9rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 1.8rem; margin-top: 2.2rem; }
.stars { color: var(--amber); letter-spacing: 0.1em; font-size: 1.05rem; }
.hero__trust-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.86rem; color: var(--ink-soft); }
.hero__trust-item strong { color: var(--ink); }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--cream);
  margin-left: -9px; display: grid; place-items: center;
  font-size: 0.78rem; font-weight: 700; color: var(--ink);
}
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack__more { background: var(--amber); color: #fff !important; font-size: 0.62rem !important; }

/* hero product visual (placeholder tile) */
.hero__visual { position: relative; }
.hero__floaters { position: absolute; inset: 0; pointer-events: none; }
.floater {
  position: absolute; font-size: 1.9rem;
  filter: drop-shadow(0 6px 12px rgba(33,29,23,.18));
  animation: floaty 6s ease-in-out infinite;
}
.floater { font-size: 2.9rem; }
.floater:nth-child(1) { top: 2%; left: -3%; animation-delay: 0s; }
.floater:nth-child(2) { top: 14%; right: -4%; animation-delay: 1.2s; font-size: 2.3rem; }
.floater:nth-child(3) { bottom: 10%; left: 0%; animation-delay: 2.4s; }
.floater:nth-child(4) { bottom: 24%; right: -2%; animation-delay: 3.1s; font-size: 2.1rem; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-14px) rotate(4deg); } }
@media (prefers-reduced-motion: reduce) { .floater { animation: none; } }

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; margin-inline: auto; }
}

/* ═══════════════════ CINEMATIC HERO (opens on the footage) ═══════════════════ */
.hero-cine {
  position: relative; min-height: 92svh; display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
  padding-block: clamp(2rem, 8vh, 6rem) clamp(4rem, 10vh, 7rem);
}
.hero-cine__media {
  position: absolute; inset: 0; z-index: -2;
  background: #b8a074 url('../seq/frame-0001.jpg') center / cover no-repeat;
}
.hero-cine__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(102deg, var(--cream) 0%, rgba(251,246,236,.92) 28%, rgba(251,246,236,.55) 48%, rgba(251,246,236,.05) 72%, transparent 88%),
    linear-gradient(0deg, rgba(33,29,23,.14) 0%, transparent 22%);
}
.hero-cine__inner { position: relative; z-index: 1; max-width: 640px; }
.hero-cine__inner .h-display { margin: 0.4rem 0 1.2rem; }
.hero-cine__lede { margin-bottom: 1.9rem; color: var(--ink-soft); }
.hero-cine .hero__cta { margin-bottom: 2rem; }
.hero-cine__cue {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 2;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--cream-90); padding: 0.5rem 1rem; border-radius: 100px;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
}
.hero-cine__cue .arrow { animation: nudge 1.6s var(--ease) infinite; }
@media (prefers-reduced-motion: reduce) { .hero-cine__cue .arrow { animation: none; } }

@media (max-width: 720px) {
  .hero-cine { align-items: flex-end; min-height: 90svh; }
  .hero-cine__scrim {
    background:
      linear-gradient(180deg, rgba(251,246,236,.35) 0%, rgba(251,246,236,.7) 42%, rgba(251,246,236,.94) 74%, var(--cream) 100%);
  }
  .hero-cine__inner { max-width: none; }
}

/* make-it-personal band */
.hero-meet { padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero-meet .hero__visual { max-width: 440px; }
@media (max-width: 820px) { .hero-meet .hero__visual { margin-inline: auto; } }

/* ═══════════════════ PLACEHOLDER PRODUCT TILE ═══════════════════ */
/* Intentional styled placeholder — no fake product photos. */
.ph {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,.55), transparent 55%),
    linear-gradient(150deg, var(--sand), var(--cream-2));
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm);
  overflow: hidden; display: grid; place-items: center; isolation: isolate;
}
.ph::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(201,176,133,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,176,133,.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(120% 120% at 50% 40%, #000 40%, transparent 78%);
}
.ph__jar {
  position: relative; z-index: 1; width: 54%; max-width: 190px; aspect-ratio: 3/4;
  display: flex; flex-direction: column; align-items: stretch;
  filter: drop-shadow(0 14px 22px rgba(33,29,23,.16));
}
.ph__lid {
  height: 15%; border-radius: 14px 14px 6px 6px; margin-inline: 8%;
  background: linear-gradient(var(--forest), var(--forest-2));
}
.ph__body {
  flex: 1; border-radius: 10px 10px 20px 20px; margin-top: -2px;
  background: linear-gradient(160deg, #fff, var(--cream));
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 12% 10%;
  position: relative; overflow: hidden;
}
.ph__body::after {
  content: ""; position: absolute; left: 8%; top: 0; bottom: 0; width: 12%;
  background: linear-gradient(90deg, rgba(255,255,255,.7), transparent);
}
.ph__ring { width: 46%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 40% 35%, var(--amber), var(--pumpkin)); box-shadow: inset 0 -4px 8px rgba(0,0,0,.14); }
.ph__label { font-family: var(--serif); font-weight: 600; font-size: 0.9rem; color: var(--forest); text-align: center; line-height: 1; }
.ph__label small { display: block; font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.12em; color: var(--taupe); margin-top: 3px; font-weight: 500; }
.ph__tag {
  position: absolute; z-index: 2; top: 0.85rem; left: 0.85rem;
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--taupe);
  background: var(--cream-90); padding: 0.3em 0.6em; border-radius: 100px;
  box-shadow: inset 0 0 0 1px var(--line);
}
.ph--forest .ph__ring { background: radial-gradient(circle at 40% 35%, var(--moss), var(--forest)); }
.ph--terra .ph__ring { background: radial-gradient(circle at 40% 35%, var(--amber), var(--terracotta)); }
.ph--sky .ph__ring { background: radial-gradient(circle at 40% 35%, #7fb0c9, #3d7d99); }

/* ═══════════════════ MARQUEE / LOGO STRIP ═══════════════════ */
.trustbar { border-block: 1px solid var(--line); background: var(--paper); }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem 2.6rem; padding-block: 1.5rem; }
.trustbar__item { display: flex; align-items: center; gap: 0.55rem; font-family: var(--serif); font-size: 1.05rem; color: var(--ink-soft); opacity: .82; }
.trustbar__item svg { color: var(--pumpkin); }

/* ═══════════════════ SECTION HEADINGS ═══════════════════ */
.sec-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.sec-head.center { margin-inline: auto; }
.sec-head .eyebrow { margin-bottom: 0.9rem; display: block; }
.sec-head h2 { margin-bottom: 0.9rem; }

/* ═══════════════════ BENEFITS GRID ═══════════════════ */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }
.benefit {
  background: var(--surface); border-radius: var(--radius); padding: 1.6rem 1.5rem;
  box-shadow: inset 0 0 0 1px var(--line); transition: transform .3s var(--ease), box-shadow .3s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--tan), var(--shadow); }
.benefit__icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 1rem;
  background: rgba(232,163,61,.16);
}
.benefit h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.benefit p { font-size: 0.94rem; color: var(--ink-soft); }

/* ═══════════════════ INGREDIENTS ═══════════════════ */
.ingredients { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.ingredient {
  position: relative; background: var(--surface); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: inset 0 0 0 1px var(--line); overflow: hidden;
  transition: transform .3s var(--ease);
}
.ingredient:hover { transform: translateY(-4px); }
.ingredient__emoji { font-size: 2.2rem; margin-bottom: 0.7rem; }
.ingredient h4 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 0.3rem; }
.ingredient p { font-size: 0.88rem; color: var(--ink-soft); }
.ingredient__cfu { font-family: var(--mono); font-size: 0.72rem; color: var(--terracotta); margin-top: 0.6rem; letter-spacing: 0.05em; }

/* ═══════════════════ PRODUCT CARDS ═══════════════════ */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 1.4rem; }
.card {
  position: relative; background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px var(--line); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; padding: 1.1rem 1.1rem 0; }
.card__media .ph { aspect-ratio: 4/3.4; border-radius: var(--radius); }
.card__badge {
  position: absolute; z-index: 3; top: 1.5rem; right: 1.5rem;
  background: var(--pumpkin); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.03em; padding: 0.35em 0.7em; border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.card__badge--forest { background: var(--forest); }
.card__body { padding: 1.1rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__eyebrow { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.5rem; }
.card__title { font-family: var(--serif); font-size: 1.32rem; margin-bottom: 0.35rem; }
.card__desc { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.9rem; flex: 1; }
.card__stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.4rem; }
.card__stars span { color: var(--taupe); font-family: var(--sans); }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-top: auto; }
.price { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--ink); }
.price small { display: block; font-family: var(--sans); font-size: 0.76rem; color: var(--taupe); font-weight: 500; margin-top: 1px; }
.price s { color: var(--taupe); font-size: 0.95rem; font-weight: 400; margin-right: 0.35em; }

/* ═══════════════════ STEPS / HOW IT WORKS ═══════════════════ */
.steps { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.3rem 2rem; counter-reset: step; }
/* editorial dashed connector running across the step row */
.steps::before {
  content: ""; position: absolute; top: 2.15rem; left: 14%; right: 14%; height: 2px;
  background-image: linear-gradient(90deg, var(--tan) 45%, transparent 45%);
  background-size: 13px 2px; opacity: 0.65; z-index: 0;
}
@media (max-width: 760px) { .steps::before { display: none; } }
.step { position: relative; z-index: 1; padding-top: 1rem; }
.step__num { position: relative; display: inline-flex; }
.step__num {
  font-family: var(--serif); font-size: 2.6rem; color: var(--amber); line-height: 1;
  margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ═══════════════════ QUIZ ═══════════════════ */
.quiz {
  background: linear-gradient(150deg, var(--forest), var(--forest-2));
  color: var(--cream); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.quiz__glow { position: absolute; inset: auto -10% -30% auto; width: 60%; height: 80%; background: radial-gradient(circle, rgba(232,163,61,.3), transparent 70%); }
.quiz__inner { position: relative; z-index: 1; padding: clamp(1.8rem, 4vw, 3.2rem); }
.quiz__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.quiz__head h2 { color: var(--cream); }
.quiz__progress { flex: none; width: 120px; height: 5px; border-radius: 100px; background: rgba(255,255,255,.18); overflow: hidden; margin-top: 0.6rem; }
.quiz__progress i { display: block; height: 100%; background: var(--amber); width: 20%; transition: width .5s var(--ease); border-radius: 100px; }
.quiz__q { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 1.4rem; min-height: 2.2em; }
.quiz__options { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.8rem; }
.quiz__opt {
  text-align: left; padding: 1.25rem 1.3rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
  color: var(--cream); font-weight: 600; font-size: 1.02rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex; align-items: center; gap: 0.85rem;
}
.quiz__opt:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--amber); }
.quiz__opt-dot {
  width: 18px; height: 18px; border-radius: 50%; flex: none;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.4); transition: box-shadow .2s;
}
.quiz__opt:hover .quiz__opt-dot { box-shadow: inset 0 0 0 6px var(--amber); }
.quiz__watermark {
  position: absolute; right: -0.5rem; bottom: -2.5rem; z-index: 0;
  font-family: var(--serif); font-weight: 600; font-size: 20rem; line-height: 0.7;
  color: rgba(232,163,61,.08); pointer-events: none; user-select: none;
}
@media (max-width: 620px) { .quiz__watermark { font-size: 12rem; bottom: -1.5rem; } }
.quiz__result { text-align: center; animation: fadeUp .5s var(--ease); }
.quiz__result .ph { max-width: 220px; margin: 0 auto 1.4rem; }
.quiz__foot { margin-top: 1.4rem; display: flex; align-items: center; gap: 1rem; font-size: 0.85rem; opacity: .8; }
.quiz__back { color: var(--amber); font-weight: 600; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ═══════════════════ REVIEWS ═══════════════════ */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.3rem; }
.review {
  background: var(--surface); border-radius: var(--radius); padding: 1.7rem;
  box-shadow: inset 0 0 0 1px var(--line); display: flex; flex-direction: column;
}
.review__stars { color: var(--amber); margin-bottom: 0.8rem; letter-spacing: 0.08em; }
.review__text { font-family: var(--serif); font-size: 1.12rem; line-height: 1.45; margin-bottom: 1.2rem; flex: 1; }
.review__who { display: flex; align-items: center; gap: 0.7rem; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; background: var(--sand); flex: none; }
.review__name { font-weight: 700; font-size: 0.9rem; }
.review__meta { font-size: 0.78rem; color: var(--taupe); }
.review__verified { margin-left: auto; font-size: 0.72rem; color: var(--forest); font-weight: 600; display: flex; align-items: center; gap: 0.3rem; }

/* ═══════════════════ STATS BAND ═══════════════════ */
.stats-band { background: var(--forest); color: var(--cream); }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--amber); line-height: 1; }
.stat__label { font-size: 0.9rem; opacity: .85; margin-top: 0.4rem; }

/* ═══════════════════ COMPARISON ═══════════════════ */
.compare { overflow-x: auto; border-radius: var(--radius); box-shadow: inset 0 0 0 1px var(--line); background: var(--surface); }
.compare table { border-collapse: collapse; width: 100%; min-width: 520px; }
.compare th, .compare td { padding: 1rem 1.2rem; text-align: center; border-bottom: 1px solid var(--line); }
.compare th:first-child, .compare td:first-child { text-align: left; font-weight: 500; color: var(--ink-soft); }
.compare thead th { font-family: var(--serif); font-size: 1.05rem; }
.compare .col-us { background: rgba(232,163,61,.09); }
.compare thead .col-us { color: var(--pumpkin); }
.compare .yes { color: var(--forest); font-weight: 700; }
.compare .no { color: var(--taupe); }
.compare tbody tr:last-child td { border-bottom: none; }

/* ═══════════════════ FAQ ═══════════════════ */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 0.35rem 0;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 2.5rem 1.15rem 0;
  position: relative; font-family: var(--serif); font-size: 1.18rem; font-weight: 560;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0.3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--pumpkin); font-family: var(--sans); font-weight: 300;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--pumpkin); }
.faq p { padding: 0 2rem 1.3rem 0; color: var(--ink-soft); }

/* ═══════════════════ CTA BAND ═══════════════════ */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--pumpkin), var(--terracotta)); color: #fff; border-radius: var(--radius-lg); }
.cta-band__glow { position: absolute; inset: -30% auto auto -10%; width: 50%; height: 120%; background: radial-gradient(circle, rgba(255,255,255,.25), transparent 65%); }
.cta-band__inner { position: relative; z-index: 1; padding: clamp(2.2rem, 5vw, 4rem); text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 0.9rem; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 46ch; margin: 0 auto 1.6rem; }

/* ═══════════════════ NEWSLETTER ═══════════════════ */
.news-form { display: flex; gap: 0.6rem; max-width: 460px; margin-inline: auto; flex-wrap: wrap; }
.news-form input {
  flex: 1; min-width: 200px; padding: 0.95em 1.2em; border-radius: 100px;
  border: none; background: rgba(255,255,255,.9); color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}
.news-form input::placeholder { color: var(--taupe); }

/* ═══════════════════ FOOTER ═══════════════════ */
.site-footer { background: var(--ink); color: var(--cream-2); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.footer-brand { max-width: 30ch; }
.footer-brand .brand { color: var(--cream); margin-bottom: 0.9rem; }
.footer-brand p { color: var(--taupe-2); font-size: 0.92rem; }
.footer-col h5 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe-2); margin-bottom: 1rem; }
.footer-col a { display: block; padding: 0.35rem 0; color: var(--cream-2); font-size: 0.92rem; opacity: .85; transition: opacity .2s, color .2s; }
.footer-col a:hover { opacity: 1; color: var(--amber); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s; }
.footer-social a:hover { background: var(--amber); color: var(--ink); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.1); font-size: 0.82rem; color: var(--taupe-2); }
.footer-bottom .legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ═══════════════════ REVEAL ON SCROLL ═══════════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ═══════════════════ CART DRAWER ═══════════════════ */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 90; background: rgba(33,29,23,.42);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(2px);
}
.drawer-scrim.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 91; height: 100dvh; width: min(430px, 100%);
  background: var(--cream); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .38s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.4rem; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 1.3rem; }
.drawer__ship { padding: 0.9rem 1.4rem; background: var(--paper); border-bottom: 1px solid var(--line); font-size: 0.85rem; }
.drawer__ship-bar { height: 6px; border-radius: 100px; background: var(--sand); overflow: hidden; margin-top: 0.5rem; }
.drawer__ship-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--amber), var(--pumpkin)); width: 0; transition: width .5s var(--ease); border-radius: 100px; }
.ship-filler {
  display: flex; align-items: center; gap: 0.6rem; width: 100%; text-align: left;
  margin-top: 0.7rem; padding: 0.6rem 0.75rem; border-radius: var(--radius-sm);
  background: rgba(232,163,61,.13); box-shadow: inset 0 0 0 1px rgba(232,163,61,.4);
  font-size: 0.82rem; color: var(--ink-soft); line-height: 1.25;
  transition: background .2s, transform .15s;
}
.ship-filler:hover { background: rgba(232,163,61,.22); transform: translateY(-1px); }
.ship-filler strong { color: var(--terracotta); }
.ship-filler__e { font-size: 1.3rem; flex: none; }
.drawer__items { flex: 1; overflow-y: auto; padding: 0.5rem 1.4rem; }
.drawer__empty { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.drawer__empty .e { font-size: 3rem; display: block; margin-bottom: 1rem; }
.cart-line { display: grid; grid-template-columns: 60px 1fr auto; gap: 0.9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-line__ph { width: 60px; height: 60px; border-radius: 12px; background: linear-gradient(150deg, var(--sand), var(--cream-2)); box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; font-size: 1.4rem; }
.cart-line__title { font-weight: 600; font-size: 0.92rem; line-height: 1.2; }
.cart-line__meta { font-size: 0.78rem; color: var(--taupe); margin-top: 2px; }
.cart-line__price { font-weight: 700; font-size: 0.92rem; }
.qty { display: inline-flex; align-items: center; gap: 0.2rem; margin-top: 0.5rem; background: var(--paper); border-radius: 100px; box-shadow: inset 0 0 0 1px var(--line); }
.qty button { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 1rem; color: var(--ink-soft); transition: background .2s; }
.qty button:hover { background: var(--sand); }
.qty span { min-width: 22px; text-align: center; font-size: 0.85rem; font-weight: 600; }
.cart-line__remove { font-size: 0.72rem; color: var(--taupe); margin-top: 0.4rem; text-decoration: underline; }
.cart-line__remove:hover { color: var(--pumpkin); }
.drawer__foot { padding: 1.3rem 1.4rem calc(1.3rem + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--paper); }
.drawer__row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.4rem; font-size: 0.9rem; }
.drawer__total { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.drawer__note { font-size: 0.76rem; color: var(--taupe); text-align: center; margin-top: 0.8rem; }

/* ═══════════════════ TOAST ═══════════════════ */
.toast-wrap { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 120; display: flex; flex-direction: column; gap: 0.6rem; align-items: center; pointer-events: none; width: max-content; max-width: 92vw; }
.toast {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--ink); color: var(--cream); padding: 0.85rem 1.2rem;
  border-radius: 100px; box-shadow: var(--shadow-lg); font-size: 0.9rem; font-weight: 500;
  transform: translateY(20px); opacity: 0; transition: transform .35s var(--ease), opacity .35s;
}
.toast.in { transform: none; opacity: 1; }
.toast .e { font-size: 1.2rem; }
.toast a { color: var(--amber); font-weight: 700; pointer-events: auto; }

/* ═══════════════════ STICKY ADD BAR ═══════════════════ */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: var(--cream-90); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(33,29,23,.08);
  transform: translateY(110%); transition: transform .4s var(--ease);
  padding: 0.8rem 0 calc(0.8rem + env(safe-area-inset-bottom));
}
.sticky-buy.show { transform: none; }
.sticky-buy__inner { display: flex; align-items: center; gap: 1rem; }
.sticky-buy__info { display: flex; align-items: center; gap: 0.8rem; flex: 1; min-width: 0; }
.sticky-buy__ph { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(150deg, var(--sand), var(--cream-2)); display: grid; place-items: center; font-size: 1.2rem; flex: none; box-shadow: inset 0 0 0 1px var(--line); }
.sticky-buy__title { font-weight: 700; font-size: 0.95rem; line-height: 1.1; }
.sticky-buy__price { font-size: 0.82rem; color: var(--ink-soft); }
@media (max-width: 620px) { .sticky-buy__title { font-size: 0.85rem; } .sticky-buy__ph { display: none; } }

/* ═══════════════════ UTIL ═══════════════════ */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 50%; top: -60px; transform: translateX(-50%); background: var(--forest); color: #fff; padding: 0.6rem 1.2rem; border-radius: 0 0 10px 10px; z-index: 200; transition: top .2s; }
.skip-link:focus { top: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 820px) { .grid-2 { grid-template-columns: 1fr; } }
.divider-leaf { text-align: center; color: var(--tan); font-size: 1.2rem; letter-spacing: 0.6em; }

/* ═══════════════════ HOMEPAGE WIDGETS ═══════════════════ */

/* dog-name personalization */
.dog-widget {
  margin-top: 2rem; padding: 1.15rem 1.25rem; max-width: 430px;
  background: var(--paper); border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm);
}
.dog-widget__label { font-weight: 700; font-size: 0.92rem; display: block; margin-bottom: 0.6rem; }
.dog-widget__row { display: flex; gap: 0.5rem; }
.dog-widget__row input {
  flex: 1; min-width: 0; padding: 0.7em 1em; border-radius: 100px;
  background: var(--cream); box-shadow: inset 0 0 0 1px var(--line); border: none;
}
.dog-widget__hint { display: block; margin-top: 0.6rem; font-size: 0.8rem; color: var(--taupe); }
.dog-widget.saved { box-shadow: inset 0 0 0 1.5px var(--forest), var(--shadow-sm); }
.dog-widget.saved .dog-widget__label { color: var(--forest); }

/* hero product tile — bigger jar, less empty beige, pill overlaps the base */
.ph--hero { max-width: 430px; margin-inline: auto; aspect-ratio: 1 / 1.02; overflow: visible; }
.ph--hero::before { border-radius: var(--radius); }
.ph--hero .ph__jar { width: 66%; max-width: 288px; }
.ph--hero .ph__label { font-size: 1rem; }
.ph__floatpill {
  position: absolute; z-index: 3; left: 50%; bottom: -0.9rem; transform: translateX(-50%);
  white-space: nowrap; box-shadow: var(--shadow); background: var(--paper);
  font-weight: 600;
}
.hero__badge-float { margin-top: 1.2rem; text-align: center; }

.ing-check { font-size: 1.02rem; }

/* range input — shared look for dial + timeline */
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px;
  border-radius: 100px; background: var(--sand); outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px;
  border-radius: 50%; background: var(--paper); box-shadow: 0 2px 6px rgba(33,29,23,.25), inset 0 0 0 5px var(--pumpkin);
  cursor: grab; transition: transform .15s;
}
input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.12); cursor: grabbing; }
input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px; border: none; border-radius: 50%;
  background: var(--paper); box-shadow: 0 2px 6px rgba(33,29,23,.25), inset 0 0 0 5px var(--pumpkin); cursor: grab;
}

/* dosage dial */
.dial {
  margin-top: 1.6rem; padding: 1.6rem; border-radius: var(--radius-lg);
  background: var(--paper); box-shadow: inset 0 0 0 1px var(--line), var(--shadow);
}
.dial__who {
  font-family: var(--serif); font-size: 1.15rem; color: var(--forest);
  margin-bottom: 1.1rem; font-weight: 560;
}
.dial__slider { margin-bottom: 1.4rem; }
.dial__scale { display: flex; justify-content: space-between; margin-top: 0.6rem; font-size: 0.78rem; color: var(--taupe); font-family: var(--mono); }
.dial__scale span:nth-child(2) { color: var(--ink); font-weight: 600; }
.dial__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 1.2rem; }
.dial__stat { background: var(--cream); border-radius: var(--radius-sm); padding: 0.9rem 0.7rem; text-align: center; box-shadow: inset 0 0 0 1px var(--line); }
.dial__stat--hi { background: rgba(232,163,61,.14); box-shadow: inset 0 0 0 1px rgba(232,163,61,.35); }
.dial__stat-val { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); line-height: 1; display: block; }
.dial__stat-val small { display: block; font-family: var(--sans); font-size: 0.68rem; font-weight: 500; color: var(--taupe); margin-top: 0.35rem; line-height: 1.2; }
.dial__stat--hi .dial__stat-val { color: var(--pumpkin); }
.dial__sub { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.92rem; margin-bottom: 1.2rem; cursor: pointer; }
.dial__sub input { width: 20px; height: 20px; accent-color: var(--forest); }
.dial__sub em { color: var(--taupe); font-weight: 400; font-style: normal; }
.dial__runout {
  font-size: 0.86rem; color: var(--forest); line-height: 1.4;
  background: rgba(46,90,62,.07); border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem; margin-bottom: 1.2rem; box-shadow: inset 0 0 0 1px rgba(46,90,62,.16);
}
.dial__runout strong { color: var(--terracotta); }
.dial__guarantee { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.9rem; }

/* 30-day timeline */
.timeline { margin-top: 1.6rem; }
.timeline__weeklabel { font-family: var(--serif); font-size: 1.5rem; color: var(--amber); margin-bottom: 0.7rem; }
.timeline__range { background: rgba(255,255,255,.25); }
.timeline__range::-webkit-slider-thumb { box-shadow: 0 2px 6px rgba(0,0,0,.3), inset 0 0 0 5px var(--amber); }
.timeline__range::-moz-range-thumb { box-shadow: 0 2px 6px rgba(0,0,0,.3), inset 0 0 0 5px var(--amber); }
.timeline__weeks { display: flex; justify-content: space-between; margin-top: 0.6rem; font-size: 0.76rem; font-family: var(--mono); color: rgba(251,246,236,.6); }
.timeline__quote { font-family: var(--serif); font-size: 1.25rem; line-height: 1.4; margin-top: 1.6rem; color: var(--cream); }
.timeline__who { display: block; margin-top: 0.6rem; font-size: 0.85rem; color: var(--amber); font-style: normal; }

.timeline-bars { background: rgba(255,255,255,.06); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
.tbar { margin-bottom: 1.4rem; }
.tbar:last-of-type { margin-bottom: 0; }
.tbar__top { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.9rem; }
.tbar__top span:first-child { color: var(--cream); font-weight: 600; }
.tbar__top span[data-val] { color: var(--amber); font-weight: 700; font-family: var(--serif); }
.tbar__track { height: 10px; border-radius: 100px; background: rgba(255,255,255,.14); overflow: hidden; }
.tbar__track i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--amber), var(--pumpkin)); transition: width .6s var(--ease); }

/* quiz step wrapper anim */
.quiz__step { animation: fadeUp .4s var(--ease); }

/* ═══════════════════ SHOP PAGE ═══════════════════ */
.shop-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.2rem; }
.shop-filter {
  padding: 0.6em 1.15em; border-radius: 100px; font-weight: 600; font-size: 0.9rem;
  background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); color: var(--ink-soft);
  transition: background .2s, color .2s, box-shadow .2s, transform .2s;
}
.shop-filter:hover { transform: translateY(-1px); box-shadow: inset 0 0 0 1px var(--tan); }
.shop-filter.is-active { background: var(--forest); color: #fff; box-shadow: none; }

/* ═══════════════════ PRODUCT DETAIL ═══════════════════ */
.breadcrumb { font-size: 0.84rem; color: var(--taupe); }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--pumpkin); }

.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }
.pdp__media { position: sticky; top: 90px; }
@media (max-width: 900px) { .pdp__media { position: static; } }
.pdp__media .ph { max-width: 100%; }
.pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; margin-top: 0.8rem; }
.pdp__thumb {
  aspect-ratio: 1; border-radius: 12px; background: linear-gradient(150deg, var(--sand), var(--cream-2));
  box-shadow: inset 0 0 0 1px var(--line); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px; cursor: pointer; transition: box-shadow .2s;
}
.pdp__thumb span { font-size: 0.68rem; font-weight: 600; color: var(--ink-soft); }
.pdp__thumb em { font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.1em; color: var(--taupe); font-style: normal; text-transform: uppercase; }
.pdp__thumb.is-active, .pdp__thumb:hover { box-shadow: inset 0 0 0 2px var(--pumpkin); }

.pdp__back { display: inline-block; font-size: 0.85rem; color: var(--taupe); margin-bottom: 0.8rem; }
.pdp__back:hover { color: var(--pumpkin); }
.pdp__quizbanner {
  background: rgba(46,90,62,.1); box-shadow: inset 0 0 0 1px rgba(46,90,62,.28);
  color: var(--forest); border-radius: var(--radius-sm); padding: 0.7rem 0.95rem;
  font-size: 0.86rem; font-weight: 600; margin-bottom: 1rem;
}
.pdp__eyebrow { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); }
.pdp__title { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0.4rem 0 0.6rem; }
.pdp__rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.95rem; }
.pdp__rating .stars { color: var(--amber); }
.pdp__tagline { font-size: 1.15rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 1.3rem; }
.pdp__bullets { display: grid; gap: 0.55rem; margin-bottom: 1.6rem; }
.pdp__bullets li { font-size: 0.98rem; }

/* buy box */
.buybox { background: var(--paper); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: inset 0 0 0 1px var(--line), var(--shadow); }
.buybox__price { font-family: var(--serif); font-size: 2rem; font-weight: 600; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.buybox__price s { font-size: 1.2rem; color: var(--taupe); font-weight: 400; }
.buybox__options { display: grid; gap: 0.7rem; margin-bottom: 1.3rem; }
.buybox__opt {
  display: flex; align-items: center; gap: 0.9rem; padding: 1rem 1.1rem; cursor: pointer;
  border-radius: var(--radius-sm); background: var(--cream); box-shadow: inset 0 0 0 1.5px var(--line);
  transition: box-shadow .2s, background .2s; position: relative;
}
.buybox__opt input { position: absolute; opacity: 0; }
.buybox__opt-body { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; }
.buybox__opt-title { font-weight: 700; font-size: 0.98rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.buybox__opt-sub { font-size: 0.82rem; color: var(--ink-soft); }
.buybox__radio { width: 22px; height: 22px; border-radius: 50%; box-shadow: inset 0 0 0 2px var(--tan); flex: none; transition: box-shadow .2s; position: relative; }
.buybox__opt:has(input:checked) { box-shadow: inset 0 0 0 2px var(--forest); background: rgba(46,90,62,.05); }
.buybox__opt--sub:has(input:checked) { box-shadow: inset 0 0 0 2px var(--amber); background: rgba(232,163,61,.09); }
.buybox__opt:has(input:checked) .buybox__radio { box-shadow: inset 0 0 0 7px var(--forest); }
.buybox__opt--sub:has(input:checked) .buybox__radio { box-shadow: inset 0 0 0 7px var(--amber); }
.buybox__row { display: flex; gap: 0.7rem; align-items: stretch; margin-bottom: 1.2rem; }
.qty--lg { box-shadow: inset 0 0 0 1.5px var(--line); border-radius: 100px; padding: 0.1rem; }
.qty--lg button { width: 38px; height: 38px; font-size: 1.2rem; }
.qty--lg span { min-width: 30px; font-size: 1rem; }

.buybox__pay { border-top: 1px solid var(--line); margin-top: 0.3rem; padding-top: 1.2rem; }
.buybox__pay-label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); }
.buybox__pay-row { margin: 0.7rem 0; }
.paybtn {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  width: 100%; padding: 0.85em 1em; border-radius: 100px;
  background: repeating-linear-gradient(45deg, var(--cream-2), var(--cream-2) 10px, var(--sand) 10px, var(--sand) 20px);
  box-shadow: inset 0 0 0 1.5px var(--tan); color: var(--ink-soft);
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.02em;
}
.buybox__pay-icons { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.7rem; }
.buybox__pay-icons span { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.05em; color: var(--taupe); background: var(--cream); padding: 0.35em 0.6em; border-radius: 6px; box-shadow: inset 0 0 0 1px var(--line); }
.buybox__trust { display: grid; gap: 0.4rem; margin-top: 1.2rem; }
.buybox__trust li { font-size: 0.84rem; color: var(--ink-soft); }

/* ═══════════════════ CART / CHECKOUT PAGE ═══════════════════ */
.cart-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 860px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-lines { display: flex; flex-direction: column; }
.checkout-line { display: grid; grid-template-columns: 76px 1fr auto auto; gap: 1rem; align-items: center; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.checkout-line:first-child { padding-top: 0; }
.checkout-line__ph { width: 76px; height: 76px; border-radius: 14px; background: linear-gradient(150deg, var(--sand), var(--cream-2)); box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; font-size: 1.8rem; }
.checkout-line__title { font-weight: 700; font-size: 1rem; }
.checkout-line__meta { font-size: 0.82rem; color: var(--ink-soft); margin: 0.2rem 0 0.4rem; }
.checkout-line__price { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; text-align: right; }
@media (max-width: 520px) {
  .checkout-line { grid-template-columns: 60px 1fr; grid-template-areas: "ph main" "ph qty" "price price"; }
  .checkout-line__ph { grid-area: ph; width: 60px; height: 60px; }
  .checkout-line__main { grid-area: main; }
  .checkout-line .qty { grid-area: qty; }
  .checkout-line__price { grid-area: price; text-align: left; }
}
.cart-summary { background: var(--paper); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: inset 0 0 0 1px var(--line), var(--shadow); position: sticky; top: 90px; }
.ship-nudge { background: var(--cream); border-radius: var(--radius-sm); padding: 0.9rem 1rem; font-size: 0.86rem; margin-bottom: 1.2rem; box-shadow: inset 0 0 0 1px var(--line); }
.summary__rows { display: grid; gap: 0.55rem; margin-bottom: 1.3rem; }
.summary__row { display: flex; justify-content: space-between; font-size: 0.94rem; }
.summary__row--total { border-top: 1px solid var(--line); padding-top: 0.8rem; margin-top: 0.3rem; font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.checkout-pay { margin-top: 0.4rem; }
.checkout-pay__banner { background: rgba(232,163,61,.12); box-shadow: inset 0 0 0 1px rgba(232,163,61,.3); border-radius: var(--radius-sm); padding: 0.9rem 1rem; margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.checkout-pay__banner strong { font-size: 0.92rem; }
.checkout-pay__banner span { font-size: 0.8rem; color: var(--ink-soft); }
.paybtn-primary { font-family: var(--sans) !important; font-size: 0.92rem !important; margin-bottom: 0.7rem; }
.checkout-pay__express { display: grid; gap: 0.5rem; }

.cart-empty { text-align: center; padding: 4rem 1rem; }
.cart-empty .e { font-size: 4rem; display: block; margin-bottom: 1rem; }

.order-confirm { text-align: center; max-width: 620px; margin: 2rem auto; padding: 2.5rem 1.5rem; }
.order-confirm__badge { width: 84px; height: 84px; margin: 0 auto 1.2rem; border-radius: 50%; background: radial-gradient(circle at 40% 35%, var(--amber), var(--pumpkin)); display: grid; place-items: center; font-size: 2.4rem; box-shadow: var(--shadow); }
.order-confirm code { font-family: var(--mono); font-size: 0.85em; background: var(--cream-2); padding: 0.1em 0.4em; border-radius: 5px; }
.order-confirm__row { display: flex; justify-content: space-between; max-width: 340px; margin: 1.6rem auto 0; padding: 0.9rem 1.1rem; background: var(--paper); border-radius: var(--radius-sm); box-shadow: inset 0 0 0 1px var(--line); font-family: var(--mono); font-size: 0.82rem; }

/* exit-intent modal */
.exit-intent { position: fixed; inset: 0; z-index: 130; background: rgba(33,29,23,.55); display: grid; place-items: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; backdrop-filter: blur(3px); }
.exit-intent.open { opacity: 1; visibility: visible; }
.exit-intent__card { background: var(--cream); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); max-width: 440px; text-align: center; box-shadow: var(--shadow-lg); position: relative; transform: translateY(16px); transition: transform .35s var(--ease); }
.exit-intent.open .exit-intent__card { transform: none; }
.exit-intent__close { position: absolute; top: 0.8rem; right: 0.9rem; font-size: 1.4rem; color: var(--taupe); width: 34px; height: 34px; border-radius: 50%; }
.exit-intent__close:hover { background: var(--sand); }
.exit-link { display: block; margin: 1.1rem auto 0; font-size: 0.82rem; color: var(--taupe); text-decoration: underline; }
.exit-link:hover { color: var(--pumpkin); }
.exit-intent .news-form input { box-shadow: inset 0 0 0 1px var(--line); }
