/* =====================================================================
   PawVoyage — STYLE A "Premium Minimal"
   Editorial serif display, warm neutral palette, one clay accent,
   generous white space, hairline rules, restrained motion.
   Same HTML as styles B & C — only this stylesheet changes.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg:        #FBF9F5;
  --bg-2:      #F3EEE6;
  --surface:   #FFFFFF;
  --ink:       #211C16;
  --muted:     #6E6458;
  --line:      #E7E0D4;
  --line-soft: #F0EAE0;

  --accent:          #B15A3C;
  --accent-ink:      #8E442C;
  --accent-tint:     #F1E7DF;
  --accent-contrast: #FFFFFF;

  --ok:   #4B7B54;
  --star: #C08A2E;

  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --maxw: 1180px;
  --radius:    6px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --btn-radius: 4px;

  --shadow-sm: 0 1px 2px rgba(33,28,22,.05);
  --shadow:    0 18px 40px -26px rgba(33,28,22,.35);
  --shadow-lg: 0 40px 80px -40px rgba(33,28,22,.4);

  --ease: cubic-bezier(.4, 0, .2, 1);

  --head-weight: 600;
  --head-transform: none;
  --head-tracking: -0.012em;
  --head-lh: 1.04;

  --eyebrow-transform: uppercase;
  --eyebrow-spacing: .2em;
  --eyebrow-weight: 600;

  --lift: -4px;      /* card hover translate */
  --press: 0px;      /* button active translate */
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-ink); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  line-height: var(--head-lh);
  letter-spacing: var(--head-tracking);
  text-transform: var(--head-transform);
  text-wrap: balance;
}
p { text-wrap: pretty; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
input { font: inherit; }

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.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: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

:where(a, button, input, .swatch, .chip, .accordion__trigger):focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .74rem;
  text-transform: var(--eyebrow-transform);
  letter-spacing: var(--eyebrow-spacing);
  font-weight: var(--eyebrow-weight);
  color: var(--accent);
  margin-bottom: 14px;
}

.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.section-sub { color: var(--muted); font-size: 1.06rem; margin-top: 14px; }

.media-note {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .02em;
  color: var(--muted);
  text-transform: none;
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .96rem;
  letter-spacing: .01em; line-height: 1;
  padding: 15px 26px; border-radius: var(--btn-radius);
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  text-align: center;
}
.btn-primary { background: var(--accent); color: var(--accent-contrast); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: #fff; transform: translateY(var(--press)); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 1.02rem; }
.buy-button.is-added { background: var(--ok); border-color: var(--ok); color: #fff; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.ship-hint {
  background: var(--ink); color: #fff;
  text-align: center; font-size: .8rem; letter-spacing: .04em;
  padding: 8px 16px;
}
.ship-hint strong { color: #fff; font-weight: 600; }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: -.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.paw { width: 26px; height: 26px; color: var(--accent); flex: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; margin-right: -10px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  display: flex; flex-direction: column; gap: 4px;
  background: var(--surface); border-bottom: 1px solid var(--line);
  padding: 14px 22px 22px;
  box-shadow: var(--shadow);
  transform-origin: top;
  clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none;
  transition: clip-path .3s var(--ease), opacity .25s var(--ease);
}
.nav-menu.is-open { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
.nav-menu a {
  color: var(--ink); font-weight: 500; padding: 12px 4px; font-size: 1.05rem;
  border-bottom: 1px solid var(--line-soft);
}
.nav-menu a:hover { color: var(--accent); }
.nav-cta { color: var(--accent) !important; font-weight: 600 !important; border-bottom: 0 !important; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(48px, 7vw, 96px); background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.hero-title { font-size: clamp(2.6rem, 7vw, 4.6rem); }
.hero-sub { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.22rem); margin-top: 22px; max-width: 34ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 32px; color: var(--muted); font-size: .9rem; }
.hero-badges li { display: flex; align-items: center; gap: 8px; }
.hero-badges .tick { color: var(--accent); font-weight: 700; }

.hero-art {
  position: relative; aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 78% 12%, var(--accent-tint) 0%, transparent 55%),
    linear-gradient(160deg, #FFFFFF 0%, var(--bg-2) 100%);
  display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow);
}
.hero-art .hero-emoji { font-size: clamp(4.5rem, 12vw, 8rem); line-height: 1; filter: drop-shadow(0 12px 20px rgba(33,28,22,.16)); }
.hero-art .hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-art .media-note { position: absolute; left: 16px; bottom: 14px; }
.hero-art .hero-chip {
  position: absolute; right: 16px; top: 16px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 8px 14px; font-size: .78rem; font-weight: 600; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 7px;
}
.hero-art .hero-chip b { color: var(--accent); }

/* ---------- Trust bar ---------- */
.trust-bar { border-block: 1px solid var(--line); background: var(--surface); }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding-block: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--muted); font-weight: 500; }
.trust-item .ti { font-size: 1.15rem; }

/* ---------- Product grid & cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 30px); }
.product-card[hidden] { display: none !important; }
.product-card {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.product-card:hover { transform: translateY(var(--lift)); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }

.product-media {
  position: relative; display: grid; place-items: center;
  aspect-ratio: 1 / 1;
  background: linear-gradient(150deg, var(--bg-2), var(--accent-tint));
  overflow: hidden;
}
.product-card:nth-child(6n+2) .product-media { background: linear-gradient(150deg, #EFEBE3, #E9E2D6); }
.product-card:nth-child(6n+3) .product-media { background: linear-gradient(150deg, #F1E9E2, #E8DED2); }
.product-card:nth-child(6n+4) .product-media { background: linear-gradient(150deg, #EDE7DC, #F0E2D8); }
.product-card:nth-child(6n+5) .product-media { background: linear-gradient(150deg, #F0EAE1, #E6DDD0); }
.product-card:nth-child(6n)   .product-media { background: linear-gradient(150deg, #EEE6DA, #EFE4DA); }
.product-emoji { font-size: clamp(3rem, 7vw, 4.4rem); line-height: 1; transition: transform .35s var(--ease); filter: drop-shadow(0 8px 14px rgba(33,28,22,.14)); }
.product-card:hover .product-emoji { transform: scale(1.08) rotate(-3deg); }
.product-photo { width: 100%; height: 100%; object-fit: cover; }

.badge {
  position: absolute; top: 12px; z-index: 2;
  font-family: var(--font-body); font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 10px; border-radius: var(--radius-pill);
}
.badge-hot  { left: 12px; background: var(--ink); color: #fff; }
.badge-save { right: 12px; background: var(--accent); color: #fff; }

.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-name { font-size: 1.28rem; line-height: 1.12; }
.product-name a { color: var(--ink); }
.product-name a:hover { color: var(--accent); }
.product-rating { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); }
.stars { color: var(--star); letter-spacing: 1px; }
.product-price { margin-top: 2px; display: flex; align-items: baseline; gap: 10px; }
.price { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; }
.compare { color: var(--muted); text-decoration: line-through; font-size: .95rem; }
.product-body .buy-button { margin-top: auto; }

.view-all { margin-top: clamp(28px, 4vw, 44px); text-align: center; }

/* ---------- Why / benefits ---------- */
.why { background: var(--bg-2); }
.benefits { display: grid; grid-template-columns: 1fr; gap: 22px; }
.benefit { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; }
.benefit-icon {
  width: 56px; height: 56px; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--accent-tint); font-size: 1.6rem; margin-bottom: 18px;
}
.benefit-title { font-size: 1.5rem; margin-bottom: 8px; }
.benefit p { color: var(--muted); }

/* ---------- Bundles ---------- */
.bundle-grid { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 3vw, 30px); }
.bundle-card {
  position: relative; display: grid; grid-template-columns: 1fr; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.bundle-card:hover { transform: translateY(var(--lift)); box-shadow: var(--shadow); }
.bundle-media {
  aspect-ratio: 16 / 10; display: grid; place-items: center; gap: 0;
  background: linear-gradient(150deg, var(--accent-tint), var(--bg-2));
  font-size: clamp(2.4rem, 6vw, 3.6rem);
}
.bundle-media .bundle-emojis { display: flex; gap: 6px; filter: drop-shadow(0 8px 14px rgba(33,28,22,.14)); }
.bundle-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.bundle-tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.bundle-name { font-size: 1.9rem; }
.bundle-includes { display: flex; flex-direction: column; gap: 8px; color: var(--muted); font-size: .95rem; }
.bundle-includes li { display: flex; gap: 10px; }
.bundle-includes li::before { content: "\2713"; color: var(--accent); font-weight: 700; }
.bundle-price { display: flex; align-items: baseline; gap: 12px; margin-top: 4px; }
.bundle-price .price { font-size: 1.9rem; }
.bundle-price .save-pill { margin-left: auto; align-self: center; background: var(--accent-tint); color: var(--accent-ink); font-size: .74rem; font-weight: 700; padding: 5px 11px; border-radius: var(--radius-pill); }

/* ---------- Reviews ---------- */
.reviews { content-visibility: auto; contain-intrinsic-size: 1px 900px; }
.review-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.review-stars { color: var(--star); letter-spacing: 2px; }
.review-text { font-family: var(--font-head); font-size: 1.28rem; line-height: 1.34; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-tint); font-size: 1.1rem; }
.review-author b { font-weight: 600; }
.review-pet { color: var(--muted); font-size: .88rem; }

/* ---------- FAQ / accordion ---------- */
.faq-wrap { max-width: 780px; margin-inline: auto; }
.accordion { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; padding: 22px 4px; font-family: var(--font-head); font-size: 1.32rem; font-weight: 600;
}
.accordion__icon { position: relative; width: 18px; height: 18px; flex: none; }
.accordion__icon::before, .accordion__icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s var(--ease); }
.accordion__icon::before { inset: 8px 0; height: 2px; }
.accordion__icon::after { inset: 0 8px; width: 2px; }
.accordion.is-open .accordion__icon::after { transform: scaleY(0); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.accordion.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__inner { overflow: hidden; }
.accordion__inner p { color: var(--muted); padding: 0 4px 22px; }

/* ---------- Email capture ---------- */
.email-capture { content-visibility: auto; contain-intrinsic-size: 1px 380px; }
.email-inner {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px); text-align: center;
  position: relative; overflow: hidden;
}
.email-inner::after {
  content: ""; position: absolute; right: -40px; bottom: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 55%, transparent), transparent 70%);
}
.email-inner h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); position: relative; }
.email-inner p { color: rgba(255,255,255,.72); margin-top: 12px; position: relative; }
.email-form { position: relative; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.email-form input {
  flex: 1 1 280px; max-width: 360px; padding: 15px 18px; border-radius: var(--btn-radius);
  border: 1.5px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); color: #fff;
}
.email-form input::placeholder { color: rgba(255,255,255,.5); }
.email-form input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,.12); }
.form-note { position: relative; margin-top: 16px; color: rgba(255,255,255,.85); font-size: .92rem; }
.form-note.is-success { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: .95rem; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink); font-size: 1.05rem;
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.footer-col h4 { font-family: var(--font-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--ink); font-size: .95rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; color: var(--muted); font-size: .84rem; }

/* ---------- Shop page ---------- */
.page-head { background: var(--bg-2); border-bottom: 1px solid var(--line); padding-block: clamp(40px, 6vw, 72px); }
.page-head .eyebrow { margin-bottom: 12px; }
.page-title { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.page-head p { color: var(--muted); margin-top: 12px; max-width: 60ch; }

.shop-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; margin-bottom: 30px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 18px; border-radius: var(--radius-pill); border: 1.5px solid var(--line);
  background: var(--surface); font-size: .9rem; font-weight: 500; color: var(--ink);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.result-count { color: var(--muted); font-size: .9rem; }
.shop-grid { grid-template-columns: repeat(2, 1fr); }

/* ---------- Product detail (PDP) ---------- */
.pdp { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.breadcrumb { color: var(--muted); font-size: .84rem; margin-bottom: 22px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

.gallery { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 100px; }
.gallery__main {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--bg-2), var(--accent-tint));
  display: grid; place-items: center; overflow: hidden;
}
.gallery__emoji { font-size: clamp(5rem, 16vw, 9rem); line-height: 1; filter: drop-shadow(0 14px 22px rgba(33,28,22,.16)); }
.gallery__main .media-note { position: absolute; left: 16px; bottom: 14px; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery__thumb {
  aspect-ratio: 1 / 1; border-radius: var(--radius); border: 1.5px solid var(--line);
  background: var(--bg-2); display: grid; place-items: center; font-size: 1.6rem; transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.gallery__thumb:hover { transform: translateY(-2px); }
.gallery__thumb.is-active { border-color: var(--accent); }
.gallery__photo { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb { overflow: hidden; padding: 0; cursor: pointer; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.badge-wrap { display: contents; }

.pdp-title { font-size: clamp(2rem, 4.4vw, 3rem); margin-block: 6px 12px; }
.pdp-rating { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.pdp-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.pdp-price .price { font-size: 2rem; }
.pdp-price .save-pill { background: var(--accent-tint); color: var(--accent-ink); font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); }
.pdp-desc { color: var(--muted); margin-bottom: 24px; }
.pdp-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pdp-benefits li { display: flex; gap: 12px; align-items: flex-start; }
.pdp-benefits li .b-ic { color: var(--accent); font-weight: 700; flex: none; }

.selector { margin-bottom: 22px; }
.selector__label { display: flex; justify-content: space-between; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.selector__value { color: var(--ink); text-transform: none; letter-spacing: 0; }
.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch {
  min-width: 52px; padding: 11px 16px; border-radius: var(--radius); border: 1.5px solid var(--line);
  background: var(--surface); font-size: .92rem; font-weight: 500; transition: all .2s var(--ease);
}
.swatch:hover { border-color: var(--ink); }
.swatch.is-selected { border-color: var(--accent); background: var(--accent-tint); color: var(--accent-ink); }

.pdp-buy-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: stretch; margin-bottom: 18px; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--btn-radius); overflow: hidden; }
.qty__btn { width: 46px; align-self: stretch; font-size: 1.3rem; color: var(--ink); transition: background .2s var(--ease); }
.qty__btn:hover { background: var(--bg-2); }
.qty__input { width: 48px; text-align: center; border: 0; background: transparent; font-weight: 600; -moz-appearance: textfield; }
.qty__input::-webkit-outer-spin-button, .qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-buy-row .buy-button { flex: 1 1 200px; }

.ship-progress { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 26px; font-size: .88rem; }
.ship-progress p { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ship-progress .track { height: 7px; border-radius: var(--radius-pill); background: var(--line); overflow: hidden; }
.ship-progress .fill { height: 100%; width: 68%; border-radius: inherit; background: var(--accent); }

.pdp-accordion { margin-top: 8px; border-top: 1px solid var(--line); }
.pdp-accordion .accordion__trigger { font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; }

.related { border-top: 1px solid var(--line); }

/* ---------- Document / policy pages ---------- */
.doc { max-width: 760px; margin-inline: auto; }
.doc-meta { color: var(--muted); font-size: .86rem; margin-bottom: 8px; }
.doc-title { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 10px; }
.prose { margin-top: 14px; }
.prose h2 { font-size: 1.7rem; margin-top: 40px; margin-bottom: 12px; }
.prose h3 { font-size: 1.25rem; margin-top: 26px; margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.prose p, .prose li { color: var(--muted); margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.callout {
  background: var(--accent-tint); border-left: 3px solid var(--accent);
  border-radius: var(--radius); padding: 16px 20px; margin: 22px 0;
  font-size: .92rem; color: var(--accent-ink);
}

/* ---------- About ---------- */
.about-hero { text-align: center; max-width: 720px; margin-inline: auto; }
.about-lede { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.4; color: var(--ink); }
.about-story { max-width: 720px; margin-inline: auto; }
.about-story p { color: var(--muted); margin-bottom: 18px; font-size: 1.06rem; }
.values { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
.value { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; background: var(--surface); }
.value .benefit-icon { margin-bottom: 14px; }
.value h3 { font-size: 1.35rem; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: .95rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; text-align: center; }
.about-stats .stat b { display: block; font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3rem); color: var(--accent); }
.about-stats .stat span { color: var(--muted); font-size: .86rem; }

/* ---------- Thank-you ---------- */
.thanks { min-height: 62vh; display: grid; place-items: center; text-align: center; padding-block: clamp(48px, 8vw, 96px); }
.thanks-card { max-width: 560px; }
.thanks-icon {
  width: 84px; height: 84px; margin: 0 auto 24px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; font-size: 2.4rem;
}
.thanks h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 14px; }
.thanks p { color: var(--muted); margin-bottom: 10px; }
.order-summary { text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 24px; margin: 28px 0; }
.order-summary h2 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 14px; }
.order-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line-soft); color: var(--muted); font-size: .94rem; }
.order-row:last-child { border-bottom: 0; font-weight: 600; color: var(--ink); }
.thanks-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }

/* ---------- Responsive ---------- */
@media (min-width: 620px) {
  .product-grid, .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(4, 1fr); }
  .about-story .values { grid-template-columns: repeat(3, 1fr); }
  .gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static; flex-direction: row; align-items: center; gap: 30px;
    background: none; border: 0; padding: 0; box-shadow: none;
    clip-path: none; opacity: 1; pointer-events: auto;
  }
  .nav-menu a { border: 0; padding: 6px 0; font-size: .98rem; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-grid { grid-template-columns: repeat(4, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .pdp { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1.2fr 2fr; }
}
@media (min-width: 1040px) {
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
