/* ==========================================================================
   OCLARÉ — Vision Support+  |  Global Stylesheet
   Sections: tokens · reset · typography · layout · header · buttons ·
   hero · components · product · footer · animation · responsive
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Bottle-green + warm neutral palette — trustworthy, calm, not luxury-gold */
  --ink:        #0F1F16;
  --ink-soft:   #1A2E22;
  --ink-line:   #14261B;
  --body:       #3D4A42;
  --muted:      #6B7870;
  --gold:       #3F7A5C;
  --gold-soft:  #B8D4C4;
  --iris:       #2D6B4A;
  --iris-deep:  #1F5438;
  --iris-wash:  #E8F2EC;
  --paper:      #F8F6F3;
  --paper-deep: #F0EBE5;
  --white:      #FFFFFF;
  --line:       #E2DDD6;
  --line-dark:  rgba(255,255,255,.14);

  --shadow-sm:  0 1px 2px rgba(15,31,22,.05), 0 2px 8px rgba(15,31,22,.05);
  --shadow-md:  0 8px 28px rgba(15,31,22,.08);
  --shadow-lg:  0 20px 54px rgba(15,31,22,.12);

  /* Liquid glass */
  --glass:        rgba(255,255,255,.72);
  --glass-strong: rgba(255,255,255,.90);
  --glass-rim:    inset 0 1px 0 rgba(255,255,255,.75), inset 0 0 0 1px rgba(255,255,255,.30);
  --glass-blur:   saturate(168%) blur(13px);
  --glass-dark:   rgba(15,31,22,.58);

  --serif: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --logo:  "DM Sans", var(--sans);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --container: 1208px;
  --container-wide: 1340px;
  --gap: clamp(1.5rem, 4vw, 4rem);
  --section-y: clamp(3.75rem, 8vw, 7rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--iris); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.022em;
}
h1 { font-size: clamp(2.35rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.65rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.08rem; font-weight: 600; letter-spacing: -.01em; }
p { max-width: 64ch; }
strong { color: var(--ink); font-weight: 600; }
.bg-ink strong, .cta-band strong { color: var(--gold-soft); }
.bg-ink p, .cta-band p { color: #C3D2C7; }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--iris-deep);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--iris);
  border-radius: 1px;
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-soft); }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--body); line-height: 1.65; font-weight: 400; }
.fineprint { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.container.is-wide { max-width: var(--container-wide); }
.container.is-narrow { max-width: 820px; }
.section { padding-block: var(--section-y); }
.section.is-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-paper { background: var(--paper); }
.bg-paper-deep { background: var(--paper-deep); }
.bg-white { background: var(--white); }
.bg-ink { background: var(--ink); color: #C3D2C7; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--white); }
.bg-iris-wash { background: var(--iris-wash); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .7rem; }
.section-head p { margin-top: .95rem; }
.section-head.is-centered p { margin-inline: auto; }

.grid { display: grid; gap: var(--gap); }
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } .split.is-wide-left { grid-template-columns: 1.08fr .92fr; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,242,236,.86);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(246,242,236,.96); }
.nav { display: flex; align-items: center; gap: 1.75rem; height: 70px; }
.nav__logo img { height: 21px; width: auto; }
.nav__menu { display: none; align-items: center; gap: 1.65rem; margin-left: auto; }
.nav__link {
  font-size: .93rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: .35rem 0; transition: color .2s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--iris); transition: width .25s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta { margin-left: .25rem; }

/* dropdown — desktop: pure hover; no click-sticky focus trap */
.nav__group { position: relative; }
.nav__group-trigger { display: inline-flex; align-items: center; gap: .35rem; }
.nav__group-trigger svg { width: 11px; height: 11px; transition: transform .22s var(--ease); }
.nav__dropdown {
  position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: .5rem; width: 268px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s var(--ease), transform .22s var(--ease), visibility .18s;
}
.nav__dropdown a { display: block; padding: .6rem .75rem; border-radius: var(--r-sm); transition: background .15s var(--ease); }
.nav__dropdown a:hover { background: var(--paper); }
.nav__dropdown strong { display: block; font-size: .92rem; color: var(--ink); }
.nav__dropdown span { font-size: .8rem; color: var(--muted); }
@media (min-width: 1024px) {
  .nav__group::after {
    content: ""; position: absolute; left: -10px; right: -10px; top: 100%; height: 14px;
  }
  .nav__group:hover .nav__dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto;
  }
  .nav__group:hover .nav__group-trigger svg { transform: rotate(180deg); }
  .nav__group:has(.nav__group-trigger:focus-visible) .nav__dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto;
  }
  .nav__group:has(.nav__group-trigger:focus-visible) .nav__group-trigger svg { transform: rotate(180deg); }
}

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

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 70px 0 0 0; z-index: 99;
  background: var(--paper);
  padding: 1.5rem clamp(1.15rem, 4vw, 2.5rem) 2.5rem;
  transform: translateX(100%); transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { display: block; font-size: 1.15rem; font-family: var(--sans); font-weight: 600; color: var(--ink); padding: .85rem 0; border-bottom: 1px solid var(--line); }
.mobile-nav .mobile-nav__sub a { font-size: 1rem; font-family: var(--sans); color: var(--ink-soft); padding: .55rem 0 .55rem 1rem; }
.mobile-nav .btn { margin-top: 1.5rem; width: 100%; }
.mobile-nav__label { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 1.6rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .96rem; letter-spacing: -.005em;
  padding: .95rem 1.7rem; border-radius: var(--r-pill);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-align: center; white-space: nowrap; line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(0) scale(0.985); transition-duration: .08s; }
.btn-primary { background: var(--iris-deep); color: var(--white); box-shadow: 0 6px 18px rgba(31,84,56,.22); }
.btn-primary:hover { background: var(--iris); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(31,84,56,.28); }
.btn-accent { background: var(--iris); color: var(--white); box-shadow: 0 8px 22px rgba(46,125,79,.32); }
.btn-accent:hover { background: var(--iris-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(46,125,79,.4); }
.btn-secondary { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); transform: translateY(-2px); }
.btn-on-dark { background: var(--white); color: var(--ink); }
.btn-on-dark:hover { background: var(--iris-wash); transform: translateY(-2px); }
.btn-lg { padding: 1.12rem 2.15rem; font-size: 1.02rem; }
.btn-sm { padding: .72rem 1.25rem; font-size: .88rem; }
.btn-block { width: 100%; }
.btn-link {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--iris-deep);
  font-size: .95rem; padding-bottom: 2px; box-shadow: inset 0 -1px 0 rgba(45,107,74,.35);
  transition: gap .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-link:hover { gap: .75rem; box-shadow: inset 0 -2px 0 var(--iris); }
.btn-link svg { width: 15px; height: 15px; }

/* ---------- Badges / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .42rem .85rem; border-radius: var(--r-pill);
}
.pill-gold { background: var(--iris-deep); color: var(--white); }
.pill-iris { background: var(--iris-wash); color: var(--iris-deep); }
.pill-ink  { background: var(--ink); color: var(--white); }
.pill-soft { background: var(--paper-deep); color: var(--ink-soft); }
.save-flag { color: var(--iris-deep); font-weight: 700; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.75rem, 6vw, 5.5rem); position: relative; }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 940px) { .hero__grid { grid-template-columns: 1.04fr .96fr; } }
.hero__title { margin: 1.1rem 0 1.15rem; }
.hero__title em { font-style: normal; font-weight: 700; color: var(--iris); }
.hero__sub { font-size: clamp(1.02rem, 1.45vw, 1.18rem); color: var(--body); max-width: 38ch; line-height: 1.65; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.7rem; }
.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: var(--r-lg); }
.hero__media.is-plain img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

/* trust row */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 1rem 1.65rem; margin-top: 1.85rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.trust-row__item { display: flex; align-items: center; gap: .55rem; font-size: .86rem; font-weight: 500; color: var(--ink-soft); }
.trust-row__item svg { width: 19px; height: 19px; color: var(--iris-deep); flex-shrink: 0; }

/* floating spec card on hero media */
.spec-card {
  position: absolute; background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 1rem 1.15rem; border: 1px solid var(--line);
}
.spec-card--tl { top: 6%; left: -4%; }
.spec-card--br { bottom: 7%; right: -4%; }
.spec-card__k { font-family: var(--sans); font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1; }
.spec-card__l { font-size: .76rem; color: var(--muted); margin-top: .2rem; }
@media (max-width: 600px) { .spec-card { display: none; } }

/* ---------- Video hero ---------- */
.hero--video {
  position: relative; overflow: hidden;
  min-height: clamp(540px, 82vh, 808px);
  display: flex; align-items: center;
  padding-block: clamp(3rem, 8vh, 6rem);
  color: #fff;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(178deg, rgba(9,26,15,.60) 0%, rgba(9,26,15,.72) 52%, rgba(9,26,15,.88) 100%);
}
.hero--video .container { position: relative; z-index: 2; }
.hero__inner { max-width: 768px; margin-inline: auto; text-align: center; }
.hero--video .eyebrow { color: var(--gold-soft); justify-content: center; }
.hero--video .eyebrow::before { background: rgba(184,212,196,.9); }
.hero--video h1 { color: #fff; text-shadow: 0 2px 24px rgba(15,31,22,.45); }
.hero--video .hero__title em { color: #D4E8DC; font-style: normal; font-weight: 700; }
.hero__sub--video {
  color: rgba(255,255,255,.9); margin: 1.15rem auto 0; max-width: 54ch;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem); line-height: 1.65;
}
.hero--video .hero__cta { justify-content: center; margin-top: 1.8rem; }
.hero--video .trust-row { justify-content: center; border-top-color: rgba(255,255,255,.22); }
.hero--video .trust-row__item { color: #D7E0D8; }
.hero--video .trust-row__item svg { color: var(--gold-soft); }
.hero--video .spec-card { z-index: 2; animation: spec-float 7s ease-in-out infinite; }
.hero--video .spec-card--tl { top: auto; bottom: 8%; left: 4.5%; animation-delay: 0s; }
.hero--video .spec-card--br { bottom: 8%; right: 4.5%; animation-delay: -3.5s; }

.btn-outline-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
.btn-outline-light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }

@media (max-width: 600px) {
  .hero--video { min-height: 78vh; }
}

/* ---------- Marquee / brand bar ---------- */
.assurance-bar { background: var(--ink); color: #AFC0B3; }
.assurance-bar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem 2.4rem; padding-block: 1rem; }
.assurance-bar__item { display: flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 500; letter-spacing: .02em; }
.assurance-bar__item svg { width: 17px; height: 17px; color: var(--gold-soft); }

/* ---------- Stat blocks ---------- */
.stat-grid { display: grid; gap: 1.5rem; }
@media (min-width: 760px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } }
.stat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 2.4rem 2.1rem 2.2rem; position: relative; overflow: hidden;
}
.stat::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--iris) 0%, var(--iris-deep) 100%);
}
.stat__label {
  display: block; font-size: .7rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .65rem; margin-top: .15rem;
}
.stat__num {
  font-family: var(--sans);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 700;
  color: var(--ink); line-height: 1;
}
.stat__num .unit {
  font-size: .35em; font-family: var(--sans); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--iris-deep); margin-left: .1em; vertical-align: middle;
}
.stat__num .stat__count { color: inherit; }
.stat__text { margin-top: .8rem; font-size: .96rem; color: var(--body); line-height: 1.65; }
.stat__cite { margin-top: .8rem; font-size: .73rem; color: var(--muted); }

/* ---------- Ingredient strip (tabs) ---------- */
.ing-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; }
.ing-tab {
  padding: .6rem 1.15rem; border-radius: var(--r-pill); font-size: .9rem; font-weight: 600;
  background: var(--white); color: var(--ink-soft); border: 1px solid var(--line);
  transition: all .2s var(--ease);
}
.ing-tab:hover { border-color: var(--ink-soft); }
.ing-tab.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.ing-panel { display: none; }
.ing-panel.is-active { display: grid; gap: clamp(1.5rem,4vw,3rem); }
@media (min-width: 820px) { .ing-panel.is-active { grid-template-columns: 1.1fr .9fr; align-items: center; } }
.ing-panel__body h3 { margin-bottom: .35rem; }
.ing-panel__dose {
  display: inline-flex; align-items: baseline; gap: .4rem; margin-bottom: 1rem;
  font-family: var(--sans); font-weight: 700; color: var(--iris-deep);
}
.ing-panel__dose b { font-size: 1.55rem; font-weight: 700; }
.ing-panel__dose span { font-size: .82rem; font-family: var(--sans); color: var(--muted); }
.ing-panel__meta { margin-top: 1.15rem; display: flex; flex-direction: column; gap: .6rem; }
.ing-panel__meta div { display: flex; gap: .6rem; font-size: .92rem; }
.ing-panel__meta svg { width: 18px; height: 18px; color: var(--iris); flex-shrink: 0; margin-top: 2px; }
.ing-visual {
  background: var(--iris-wash); border-radius: var(--r-md); padding: 2.5rem;
  display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3;
}
.ing-visual svg { width: 120px; height: 120px; color: var(--iris-deep); }

/* ---------- Cards (value / persona) ---------- */
.card-grid { display: grid; gap: 1.35rem; align-items: stretch; }
@media (min-width: 680px) { .card-grid.cols-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 760px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3,1fr); grid-auto-rows: 1fr; }
}
@media (min-width: 940px) { .card-grid.cols-4 { grid-template-columns: repeat(4,1fr); } }

.feature-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.75rem 1.6rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-card:hover .feature-card__icon svg { transform: scale(1.08); }
.feature-card__icon svg { transition: transform .25s var(--ease); }
.feature-card__icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--iris-wash);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.05rem;
}
.feature-card__icon svg { width: 23px; height: 23px; color: var(--iris-deep); }
.feature-card h3 { font-size: 1.16rem; margin-bottom: .45rem; }
.feature-card h4 { margin-bottom: .45rem; }
.feature-card p { font-size: .95rem; }

/* persona tile */
.persona-tile {
  position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 380px; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem; color: var(--white); isolation: isolate;
}
.persona-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.persona-tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(9,26,15,.1) 0%, rgba(9,26,15,.42) 45%, rgba(9,26,15,.88) 100%);
}
.persona-tile h3 { color: var(--white); font-size: 1.32rem; }
.persona-tile p { font-size: .9rem; color: #CDD6CF; margin: .4rem 0 1rem; line-height: 1.55; }
.persona-tile .btn-link { color: #D4E8DC; box-shadow: inset 0 -1px 0 rgba(184,212,196,.6); margin-top: auto; }
.persona-tile__tag { align-self: flex-start; margin-bottom: auto; }

/* ---------- Bundle / pricing cards ---------- */
.bundle-grid { display: grid; gap: 1.3rem; align-items: stretch; }
@media (min-width: 800px) { .bundle-grid { grid-template-columns: repeat(3,1fr); } }
.bundle-card {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 1.8rem 1.55rem; display: flex; flex-direction: column; position: relative;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.bundle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(45,107,74,.22); }
.bundle-card.is-featured {
  background: linear-gradient(165deg, #f3faf6 0%, var(--white) 48%, #eef6f0 100%);
  border: 2px solid var(--iris);
  box-shadow: 0 10px 34px rgba(45,107,74,.13), 0 0 0 1px rgba(45,107,74,.05);
  animation: card-glow 5.5s ease-in-out infinite;
}
.bundle-card.is-featured:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 42px rgba(45,107,74,.17), 0 0 0 1px rgba(45,107,74,.08);
}
@media (min-width: 800px) {
  .bundle-card.is-featured { transform: translateY(-3px); }
  .bundle-card.is-featured:hover { transform: translateY(-7px); }
}
.bundle-card__flag {
  position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%);
}
.bundle-card__bottles { display: flex; gap: 5px; margin-bottom: .7rem; align-items: flex-end; }
.bundle-card__bottles svg { width: 20px; height: 26px; color: var(--iris); flex-shrink: 0; }
.bundle-card__name { font-family: var(--sans); font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.bundle-card__desc { font-size: .85rem; color: var(--muted); margin-top: .15rem; min-height: 2.6em; }
.bundle-card__price { display: flex; align-items: baseline; gap: .5rem; margin-top: 1.1rem; }
.bundle-card__now { font-family: var(--sans); font-size: 2.35rem; font-weight: 700; color: var(--ink); line-height: 1; }
.bundle-card__was { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.bundle-card__per { font-size: .85rem; color: var(--iris-deep); font-weight: 600; margin-top: .35rem; }
.bundle-card__list { margin: 1.15rem 0 1.4rem; display: flex; flex-direction: column; gap: .55rem; }
.bundle-card__list li { display: flex; gap: .55rem; font-size: .9rem; }
.bundle-card__list svg { width: 17px; height: 17px; color: var(--iris-deep); flex-shrink: 0; margin-top: 3px; transition: transform .2s var(--ease); }
.bundle-card:hover .bundle-card__list svg { transform: scale(1.06); }
.bundle-card .btn { margin-top: auto; }

/* ---------- Accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 0; text-align: left; font-family: var(--sans); font-weight: 600;
  font-size: 1.04rem; color: var(--ink);
}
.acc-trigger:hover { color: var(--iris-deep); }
.acc-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: var(--iris-deep); border-radius: 2px; transition: transform .25s var(--ease); }
.acc-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.acc-icon::after  { top: 0; left: 8px; width: 2px; height: 18px; }
.acc-item.is-open .acc-icon::after { transform: scaleY(0); }
.acc-panel { overflow: hidden; max-height: 0; transition: max-height .32s var(--ease); }
.acc-panel__inner { padding: 0 0 1.4rem; }
.acc-panel__inner p { font-size: .98rem; }
.acc-panel__inner .ing-meta { margin-top: .9rem; display: grid; gap: .5rem; }
.acc-panel__inner .ing-meta span { font-size: .85rem; color: var(--muted); }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 1.25rem; }
@media (min-width: 820px) { .timeline { grid-template-columns: repeat(3,1fr); } }
.tl-step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.7rem 1.5rem; position: relative;
}
.tl-step__phase { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--iris-deep); }
.tl-step__num { font-family: var(--sans); font-size: 2.4rem; font-weight: 700; color: var(--paper-deep); line-height: 1; position: absolute; top: 1.2rem; right: 1.4rem; }
.tl-step h3 { font-size: 1.18rem; margin: .55rem 0 .45rem; }
.tl-step p { font-size: .93rem; }

/* ---------- Video carousel ---------- */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 1.1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.video-card {
  flex: 0 0 clamp(230px, 74vw, 290px); scroll-snap-align: center;
  border-radius: var(--r-md); overflow: hidden; background: var(--ink);
  position: relative; aspect-ratio: 9/16; box-shadow: var(--shadow-md);
}
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-card__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(9,26,15,.28); transition: opacity .2s var(--ease);
}
.video-card__play span {
  width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.94);
  display: flex; align-items: center; justify-content: center;
}
.video-card__play svg { width: 22px; height: 22px; color: var(--ink); margin-left: 3px; }
.video-card.is-playing .video-card__play { opacity: 0; pointer-events: none; }
.video-card__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem .95rem .8rem;
  background: linear-gradient(180deg, transparent, rgba(9,26,15,.85));
  color: var(--white); font-size: .82rem; font-weight: 500;
}
.carousel__nav { display: flex; gap: .6rem; margin-top: 1.2rem; }
.carousel__btn {
  width: 44px; height: 44px; border-radius: 50%; background: var(--white);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
}
.carousel__btn:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.carousel__btn svg { width: 18px; height: 18px; }

/* ---------- Auto-scroll video marquee ---------- */
.vmarquee {
  position: relative; overflow: hidden;
  padding: 0.75rem 0 1.25rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.vmarquee__track {
  display: flex; width: max-content; will-change: transform;
  animation: vmarquee-scroll 44s linear infinite;
}
.vmarquee.is-paused .vmarquee__track { animation-play-state: paused; }
@keyframes vmarquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.vfilm {
  flex: 0 0 clamp(208px, 56vw, 290px); margin: 0 1.15rem 0 0;
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 9 / 16; background: var(--ink); box-shadow: var(--shadow-md);
}
.vfilm video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none; -webkit-user-select: none; user-select: none;
}
.vfilm video::-webkit-media-controls { display: none !important; }
.vfilm video::-webkit-media-controls-enclosure { display: none !important; }
.vfilm figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.7rem .95rem .85rem; color: #fff; font-size: .84rem; font-weight: 500;
  background: linear-gradient(180deg, transparent, rgba(9,26,15,.85));
}
@media (prefers-reduced-motion: reduce) {
  .nav__cart svg { animation: none; }
  .vmarquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
  .vmarquee__track { animation: none; }
}

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.compare-table th, .compare-table td { padding: 1rem 1.1rem; text-align: left; font-size: .92rem; border-bottom: 1px solid var(--line); }
.compare-table thead th { font-family: var(--sans); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); background: var(--paper); }
.compare-table thead th.is-own { background: var(--ink); color: var(--white); }
.compare-table tbody th { font-weight: 600; color: var(--ink); }
.compare-table td.is-own { background: var(--iris-wash); font-weight: 600; color: var(--ink); }
.compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: none; }
.compare-table .tick { color: var(--iris-deep); }
.compare-table .dash { color: var(--muted); }

/* ---------- Product page ---------- */
.pdp { padding-block: clamp(1.5rem, 4vw, 3rem); }
.pdp__grid { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); }
@media (min-width: 940px) { .pdp__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.pdp__gallery { position: sticky; top: 90px; }
.pdp__decor-panel { position: absolute; z-index: 0; right: -5%; bottom: 4%; width: 64%; height: 66%; border-radius: var(--r-lg); background: linear-gradient(155deg, var(--iris-wash), #D4E6D8); }
.pdp__decor-glow { position: absolute; z-index: 0; left: -7%; top: 0; width: 64%; height: 64%; border-radius: 50%; background: radial-gradient(circle, rgba(46,125,79,.30), transparent 66%); }
.pdp__orb { position: absolute; z-index: 1; border-radius: 50%; pointer-events: none; }
.pdp__orb--berry  { width: 26px; height: 26px; top: 4%;  left: 2%;  background: radial-gradient(circle at 34% 30%, #6aa6da, #15376a); box-shadow: var(--shadow-sm); animation: floaty 7s var(--ease) infinite; }
.pdp__orb--berry2 { width: 16px; height: 16px; top: 12%; left: 8%;    background: radial-gradient(circle at 34% 30%, #6aa6da, #15376a); animation: floaty 9s var(--ease) infinite .6s; }
.pdp__orb--gold   { width: 34px; height: 34px; bottom: 18%; right: 2%; background: radial-gradient(circle at 36% 32%, #c8ddd0, var(--iris)); box-shadow: var(--shadow-sm); animation: floaty 8s var(--ease) infinite .3s; }
.pdp__orb--ring   { width: 58px; height: 58px; bottom: 8%; left: 6%; background: none; border: 2px solid var(--iris); opacity: .45; animation: floaty 11s var(--ease) infinite .2s; }
@media (max-width: 939px) {
  .pdp__orb { display: none; }
  .pdp__decor-glow { width: 48%; height: 48%; left: -4%; opacity: .55; }
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.pdp__stage { position: relative; z-index: 2; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.pdp__stage img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pdp__thumbs { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(5,1fr); gap: .55rem; margin-top: .65rem; }
.pdp__thumb { border-radius: var(--r-sm); overflow: hidden; border: 1.5px solid var(--line); background: var(--white); transition: border-color .2s var(--ease); }
.pdp__thumb img { aspect-ratio: 1/1; object-fit: cover; }
.pdp__thumb.is-active { border-color: var(--ink); }
@media (max-width: 600px) {
  .pdp__thumbs {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: .5rem; padding-bottom: .2rem;
  }
  .pdp__thumb { flex: 0 0 64px; scroll-snap-align: start; }
}
@media (min-width: 940px) and (max-width: 1100px) { .pdp__gallery { position: relative; top: auto; } }
@media (max-width: 939px) { .pdp__gallery { position: relative; top: auto; } }

.pdp__title { margin: .55rem 0 .5rem; }
.pdp__tagline { font-size: 1.05rem; color: var(--ink-soft); }
.pdp__rating { display: flex; align-items: center; gap: .6rem; margin: .85rem 0 1.25rem; font-size: .88rem; color: var(--muted); }
.pdp__rating .stars { display: inline-flex; gap: 2px; color: var(--iris); }
.pdp__rating .stars svg { width: 16px; height: 16px; }

/* purchase selector */
.buybox { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.5rem 1.4rem; }

.buy-headline { display: flex; align-items: baseline; flex-wrap: wrap; gap: .55rem; }
.buy-headline__now { font-family: var(--sans); font-size: 2.45rem; font-weight: 700; color: var(--ink); line-height: 1; }
.buy-headline__was { font-size: 1.05rem; color: var(--muted); }
.buy-headline__save { background: var(--iris); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .05em; padding: .32rem .6rem; border-radius: var(--r-pill); }
.buy-headline__unit { font-size: .9rem; color: var(--muted); }
.buy-headline__per { font-size: .85rem; color: var(--iris-deep); font-weight: 600; margin-top: .3rem; }

.buy-label { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin: 1.25rem 0 .65rem; }

.qty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.qty-tile {
  position: relative; text-align: left; cursor: pointer;
  display: flex; flex-direction: column; gap: .4rem;
  padding: .95rem .9rem; border-radius: var(--r-md);
  border: 1.5px solid var(--line); background: var(--white);
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), transform .22s var(--ease);
}
.qty-tile:hover { border-color: var(--ink-soft); transform: translateY(-2px); }
.qty-tile.is-selected { border-color: var(--iris); background: var(--iris-wash); box-shadow: var(--shadow-sm), 0 0 0 3px rgba(45,107,74,.08); }
.qty-tile__media { display: flex; align-items: flex-end; height: 58px; margin-bottom: .15rem; }
.qty-tile__media img { height: 58px; width: auto; border-radius: 6px; border: 1.5px solid #fff; box-shadow: 0 1px 5px rgba(9,26,15,.16); }
.qty-tile__media img + img { margin-left: -28px; }
.qty-tile__name { font-weight: 700; color: var(--ink); font-size: 1rem; }
.qty-tile__supply { font-size: .77rem; color: var(--muted); }
.qty-tile__price { font-family: var(--sans); font-size: 1.28rem; font-weight: 700; color: var(--ink); margin-top: .1rem; }
.qty-tile__price s { font-family: var(--sans); font-size: .78rem; color: var(--muted); margin-right: .28rem; }
.save-burst {
  position: absolute; top: -11px; right: -9px; z-index: 2;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--iris-deep); color: var(--white);
  font-size: .64rem; font-weight: 800; letter-spacing: .02em; text-align: center; line-height: 1.05;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transform: rotate(8deg);
}

.freq-list { display: flex; flex-direction: column; gap: .6rem; }
.freq-opt {
  display: block; cursor: pointer; padding: 1rem 1.05rem;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.freq-opt:hover { border-color: var(--ink-soft); }
.freq-opt.is-selected { border-color: var(--ink); background: var(--iris-wash); }
.freq-opt__head { display: flex; align-items: center; gap: .6rem; }
.freq-opt__head input { accent-color: var(--ink); width: 17px; height: 17px; flex-shrink: 0; }
.freq-opt__title { font-weight: 700; color: var(--ink); font-size: .98rem; }
.freq-opt__deal { background: var(--iris-deep); color: var(--white); font-size: .62rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: .25rem .5rem; border-radius: var(--r-pill); }
.freq-opt__price { margin-left: auto; font-family: var(--sans); font-size: 1.25rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.freq-opt__price s { font-family: var(--sans); font-size: .78rem; color: var(--muted); margin-right: .25rem; }
.freq-benefits { margin: .75rem 0 0; padding-left: 1.75rem; display: flex; flex-direction: column; gap: .35rem; }
.freq-benefits li { font-size: .85rem; color: var(--body); display: flex; gap: .45rem; }
.freq-benefits svg { width: 15px; height: 15px; color: var(--iris-deep); flex-shrink: 0; margin-top: 3px; }
.freq-cadence { margin: .7rem 0 0 1.75rem; font-size: .8rem; color: var(--muted); }

.buybox__cta { margin-top: 1.2rem; }
.buybox__reassure { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; margin-top: .95rem; justify-content: center; }
.buybox__reassure span { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--muted); }
.buybox__reassure svg { width: 14px; height: 14px; color: var(--iris-deep); }

.pdp__benefits { margin: 1.4rem 0; display: flex; flex-direction: column; gap: .7rem; }
.pdp__benefits li { display: flex; gap: .6rem; font-size: .98rem; }
.pdp__benefits svg { width: 20px; height: 20px; color: var(--iris-deep); flex-shrink: 0; margin-top: 2px; }

/* sticky mobile cart bar */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--white); border-top: 1px solid var(--line);
  padding: .7rem clamp(1rem,4vw,1.5rem); display: flex; align-items: center; gap: 1rem;
  transform: translateY(110%); transition: transform .3s var(--ease);
  box-shadow: 0 -6px 24px rgba(9,26,15,.1);
}
.sticky-buy.is-visible { transform: translateY(0); }
.sticky-buy__info { line-height: 1.2; }
.sticky-buy__info b { font-size: 1rem; color: var(--ink); }
.sticky-buy__info span { display: block; font-size: .78rem; color: var(--muted); }
.sticky-buy .btn { margin-left: auto; }
@media (min-width: 940px) { .sticky-buy { display: none !important; } }

/* ---------- Supplement facts ---------- */
.sup-facts { background: var(--white); border: 1px solid var(--ink); border-radius: var(--r-sm); padding: 1.25rem 1.4rem; font-family: var(--sans); }
.sup-facts h4 { font-family: var(--sans); font-size: 1.35rem; font-weight: 700; border-bottom: 6px solid var(--ink); padding-bottom: .3rem; }
.sup-facts__row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.sup-facts__row span:last-child { color: var(--ink); font-weight: 600; }
.sup-facts__sub { font-size: .78rem; color: var(--muted); padding-top: .6rem; }

/* ---------- Callout / quote ---------- */
.callout {
  background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--iris);
  border-radius: var(--r-md); padding: 1.35rem 1.5rem;
}
.callout p { font-family: var(--sans); font-size: 1.05rem; color: var(--ink); font-style: normal; font-weight: 500; line-height: 1.65; }

.split-feature__media img { border-radius: var(--r-md); width: 100%; box-shadow: var(--shadow-md); }
.icon-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.4rem; }
.icon-list li { display: flex; gap: .85rem; }
.icon-list__ic { width: 38px; height: 38px; border-radius: 10px; background: var(--iris-wash); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-list__ic svg { width: 19px; height: 19px; color: var(--iris-deep); }
.icon-list h4 { margin-bottom: .15rem; }
.icon-list p { font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-lg); }
.cta-band__inner { padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.cta-band h2 { color: var(--white); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: #C2CEC4; margin: 1rem auto 1.7rem; }
.cta-band .btn-group { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ---------- Email capture ---------- */
.email-form { display: flex; gap: .55rem; flex-wrap: wrap; max-width: 420px; }
.email-form input {
  flex: 1; min-width: 180px; padding: .85rem 1.1rem; border-radius: var(--r-pill);
  border: 1px solid var(--line-dark); background: rgba(255,255,255,.06); color: var(--white);
}
.email-form input::placeholder { color: #8A968C; }
.email-form__msg { font-size: .85rem; margin-top: .7rem; color: var(--gold-soft); min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #9DACA1; padding-top: clamp(3rem,6vw,5rem); }
.footer__top { display: grid; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer__brand img { height: 22px; filter: brightness(0) invert(1); opacity: .92; }
.footer__brand p { font-size: .9rem; margin: 1rem 0 1.3rem; max-width: 34ch; }
.footer__col h4 { color: var(--white); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col a { display: block; font-size: .92rem; padding: .32rem 0; transition: color .15s var(--ease); }
.footer__col a:hover { color: var(--white); }
.footer__badges { display: flex; flex-wrap: wrap; gap: 1.4rem; padding: 1.8rem 0; border-bottom: 1px solid var(--line-dark); }
.footer__badge { display: flex; align-items: center; gap: .5rem; font-size: .82rem; }
.footer__badge svg { width: 18px; height: 18px; color: var(--gold-soft); }
.footer__disclaimer { padding: 1.6rem 0; font-size: .78rem; color: #7C8A80; line-height: 1.65; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  align-items: center; padding: 1.5rem 0 2.2rem; font-size: .82rem;
}
.footer__bottom-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer__social { display: flex; gap: .65rem; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center; transition: all .2s var(--ease); }
.footer__social a:hover { background: var(--white); color: var(--ink); }
.footer__social svg { width: 16px; height: 16px; }

/* ---------- Disclaimer inline ---------- */
.disclaimer-note {
  background: var(--paper-deep); border-radius: var(--r-sm); padding: 1rem 1.2rem;
  font-size: .8rem; color: var(--ink-soft); line-height: 1.6;
}
.disclaimer-note strong { color: var(--ink); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: .45rem; font-size: .82rem; color: var(--muted); padding-block: 1.1rem; }
.breadcrumb a:hover { color: var(--iris-deep); }
.breadcrumb span { color: var(--line); }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p { margin-top: 1rem; }
.page-hero .lead { max-width: 56ch; }

/* ---------- Misc utilities ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; } .mt-4 { margin-top: 2.4rem; }
.hidden { display: none !important; }
.nowrap { white-space: nowrap; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px) scale(0.988); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Responsive nav switch ---------- */
@media (min-width: 1024px) {
  .nav__menu { display: flex; }
  .nav__toggle { display: none; }
  .mobile-nav { display: none; }
}
@media (max-width: 1023px) {
  .nav__cta.is-desktop { display: none; }
}

/* ---------- Founder / mission band ---------- */
.founder__statement {
  font-family: var(--sans); font-size: clamp(1.3rem, 2.5vw, 1.85rem); font-weight: 600;
  line-height: 1.45; color: var(--ink); max-width: 32ch; margin-inline: auto;
}
.founder__statement em { font-style: normal; font-weight: 700; color: var(--iris-deep); }
.founder__body { max-width: 60ch; margin: 1.3rem auto 0; }
.signature { margin-top: 1.7rem; font-family: var(--sans); font-style: normal; font-size: 1rem; font-weight: 500; color: var(--muted); }
.signature span {
  display: block; font-family: var(--sans); font-style: normal; font-size: .76rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: .45rem;
}
.reviews-mount:empty { display: none; }

/* ---------- Guarantee centerpiece ---------- */
.guarantee-hero {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.4rem, 4vw, 3rem); text-align: center;
  box-shadow: var(--shadow-md);
}
.guarantee-hero__seal {
  width: 86px; height: 86px; border-radius: 50%; margin: 0 auto 1.3rem;
  background: var(--iris-wash); border: 2px solid var(--iris);
  display: flex; align-items: center; justify-content: center;
}
.guarantee-hero__seal svg { width: 42px; height: 42px; color: var(--iris-deep); }
.guarantee-hero h2 { margin-top: .6rem; }
.guarantee-hero .lead { max-width: 52ch; margin-inline: auto; }
.seal-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; margin-top: 1.9rem; }
.seal {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: .58rem 1.05rem; font-size: .83rem; font-weight: 600; color: var(--ink);
}
.seal svg { width: 17px; height: 17px; color: var(--iris-deep); flex-shrink: 0; }

/* ---------- Prose (legal / long-form) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.7rem); margin: 2.4rem 0 .7rem; }
.prose h3 { font-size: 1.12rem; font-family: var(--sans); font-weight: 600; margin: 1.6rem 0 .4rem; }
.prose p { font-size: .99rem; margin-bottom: .95rem; max-width: none; }
.prose ul { list-style: disc; padding-left: 1.35rem; margin: 0 0 1.05rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin: 0 0 1.05rem; }
.prose li { font-size: .99rem; margin-bottom: .4rem; }
.prose a { color: var(--iris-deep); box-shadow: inset 0 -1px 0 rgba(45,107,74,.3); }
.prose a:hover { box-shadow: inset 0 -2px 0 var(--iris); }
.prose .legal-meta { color: var(--muted); font-size: .86rem; margin-bottom: 1.6rem; }
.prose hr { margin: 2rem 0; }

/* ---------- Small screens ---------- */
@media (max-width: 600px) {
  body { font-size: 1rem; }
  .btn { width: 100%; }
  .hero__cta .btn, .cta-band .btn, .btn-group .btn { width: 100%; }
  .trust-row { gap: .75rem 1.2rem; }
}

/* ==========================================================================
   v3 LAYER — mint canvas · liquid glass · trust numerals · scrolling ticker
   Placed last so these overrides win the cascade.
   ========================================================================== */

/* ---- Trust numerals: prices, doses, stats in confident tabular sans ---- */
.stat__num, .spec-card__k, .bundle-card__now, .buy-headline__now,
.qty-tile__price, .freq-opt__price, .ing-panel__dose b {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -.022em;
  font-feature-settings: "tnum" 1;
}
.ing-panel__dose { font-family: var(--sans); }
.bundle-card__now, .buy-headline__now { letter-spacing: -.03em; }
.stat__num span { font-weight: 700; }
.stat__count { font-variant-numeric: tabular-nums; }

/* ---- Liquid glass: header + dropdown ---- */
.site-header {
  background: rgba(246,242,236,.70);
  -webkit-backdrop-filter: saturate(175%) blur(16px);
          backdrop-filter: saturate(175%) blur(16px);
}
.site-header.is-scrolled {
  background: rgba(246,242,236,.92);
  border-bottom-color: rgba(200,192,182,.55);
}
.nav__dropdown {
  background: var(--glass-strong);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  border-color: rgba(255,255,255,.6);
  box-shadow: var(--shadow-lg), var(--glass-rim);
}

/* ---- Liquid glass: cards ---- */
.stat, .feature-card, .tl-step {
  position: relative;
  background: var(--glass);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  border-color: var(--line);
  box-shadow: var(--shadow-md), var(--glass-rim);
}
.bundle-card, .guarantee-hero, .buybox {
  background: var(--glass-strong);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-md), var(--glass-rim);
}
.bundle-card.is-featured {
  background: linear-gradient(165deg, rgba(243,250,246,.96) 0%, rgba(255,255,255,.94) 48%, rgba(238,246,240,.96) 100%);
  border-color: var(--iris);
}
.stat:hover, .feature-card:hover, .tl-step:hover, .bundle-card:hover {
  box-shadow: var(--shadow-lg), var(--glass-rim);
}

/* ---- Liquid glass: hero spec cards over video ---- */
.spec-card {
  background: rgba(255,255,255,.74);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  border-color: rgba(255,255,255,.5);
  box-shadow: var(--shadow-lg), var(--glass-rim);
}

/* ---- Liquid glass: sticky mobile buy bar ---- */
.sticky-buy {
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
}

/* ---- Card sheen on hover ---- */
.stat::after, .feature-card::after, .tl-step::after, .bundle-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; z-index: 0; opacity: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.55) 50%, transparent 62%);
  background-size: 250% 100%; background-position: 130% 0;
  transition: opacity .25s var(--ease), background-position .8s var(--ease);
}
.stat:hover::after, .feature-card:hover::after,
.tl-step:hover::after, .bundle-card:hover::after {
  opacity: 1; background-position: -30% 0;
}
.stat > *, .feature-card > *, .tl-step > *, .bundle-card > * {
  position: relative; z-index: 1;
}

/* ---- Scrolling glass ticker (announcement bar) ---- */
.assurance-bar {
  background: var(--glass-dark);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
          backdrop-filter: saturate(160%) blur(12px);
  color: #DCEADF;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.assurance-bar__viewport {
  display: flex; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.assurance-bar__track {
  display: flex; flex-shrink: 0; align-items: center;
  white-space: nowrap; padding-block: .6rem; will-change: transform;
  animation: ticker-scroll 42s linear infinite;
}
.assurance-bar:hover .assurance-bar__track { animation-play-state: paused; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.assurance-bar__item {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 500; letter-spacing: .015em;
  padding-inline: 1.4rem;
}
.assurance-bar__item svg { width: 15px; height: 15px; color: var(--gold-soft); flex-shrink: 0; }
.assurance-bar__item::after {
  content: ""; width: 3px; height: 3px; border-radius: 50%;
  background: var(--iris); opacity: .45; margin-left: 2.8rem;
}
@media (prefers-reduced-motion: reduce) {
  .assurance-bar__track { animation: none; flex-wrap: wrap; justify-content: center; }
  .assurance-bar__viewport { overflow-x: auto; }
}

/* ---- Hero video: square source crops to cover on all sizes (no bars) ---- */
.hero__video-blur { display: none; }

/* ---- Extra reveal delays ---- */
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }

/* ---------- Exit-intent popup ---------- */
.exit-overlay {
  position: fixed; inset: 0; background: rgba(9,26,15,.6); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.exit-modal {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); max-width: 480px; width: 100%;
  padding: 2.8rem 2.5rem 2.2rem; position: relative;
}
.exit-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--muted); padding: .2rem .5rem;
  transition: color .15s;
}
.exit-close:hover { color: var(--ink); }
.exit-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: var(--iris); margin-bottom: .55rem;
}
.exit-headline { font-family: var(--sans); font-size: 1.75rem; font-weight: 700; color: var(--ink); margin-bottom: .9rem; line-height: 1.25; }
.exit-body { color: var(--body); line-height: 1.68; margin-bottom: 1.6rem; font-size: .97rem; }
.exit-cta { margin-bottom: .9rem; }
.exit-no-thanks {
  display: block; width: 100%; background: none; border: none; cursor: pointer;
  font-size: .85rem; color: var(--muted); text-align: center; padding: .4rem;
  transition: color .15s;
}
.exit-no-thanks:hover { color: var(--ink); }

/* ---------- Conversion optimization additions ---------- */
.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; }

/* ---------- Subtle motion (conversion polish) ---------- */
@keyframes card-glow {
  0%, 100% { box-shadow: 0 10px 34px rgba(45,107,74,.12), 0 0 0 1px rgba(45,107,74,.04); }
  50% { box-shadow: 0 14px 40px rgba(45,107,74,.17), 0 0 0 1px rgba(45,107,74,.09); }
}
@keyframes spec-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .bundle-card.is-featured { animation: none; }
  .hero--video .spec-card { animation: none; }
  .feature-card:hover .feature-card__icon svg,
  .bundle-card:hover .bundle-card__list svg { transform: none; }
  .qty-tile:hover { transform: none; }
}

/* Mobile: featured bundle card first */
@media (max-width: 799px) {
  .bundle-grid { display: flex; flex-direction: column; }
  .bundle-grid .bundle-card.is-featured { order: -1; }
}

.mobile-promo-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem clamp(1rem, 4vw, 1.5rem);
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 24px rgba(9,26,15,.12);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.mobile-promo-bar.is-visible { transform: translateY(0); }
.mobile-promo-bar__text { flex: 1; line-height: 1.25; font-size: .82rem; color: var(--ink-soft); }
.mobile-promo-bar__text strong { display: block; font-size: .92rem; color: var(--ink); }
.mobile-promo-bar .btn { flex-shrink: 0; font-size: .82rem; padding: .55rem .9rem; }
@media (min-width: 940px) { .mobile-promo-bar { display: none !important; } }

.email-capture-band {
  background: var(--iris-wash); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.2rem); text-align: center;
}
.email-capture-band h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: .5rem; }
.email-capture-band p { margin-inline: auto; max-width: 42ch; color: var(--body); margin-bottom: 1rem; }
.email-capture-band .email-form {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; max-width: 420px; margin-inline: auto;
}
.email-capture-band .email-form input {
  flex: 1 1 200px; min-width: 0; padding: .65rem .85rem;
  border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--white);
}
.email-capture-band .email-form__msg { width: 100%; font-size: .85rem; color: var(--iris-deep); }

.pdp__trust-seals {
  display: flex; flex-wrap: wrap; gap: .5rem .85rem; margin-top: .75rem;
  font-size: .78rem; color: var(--muted);
}
.pdp__trust-seals span { display: inline-flex; align-items: center; gap: .35rem; }
.pdp__trust-seals svg { width: 14px; height: 14px; color: var(--iris); }

.buybox__sub-note {
  font-size: .82rem; color: var(--muted); margin-top: .65rem; line-height: 1.5;
}
.buybox__sub-note a { color: var(--iris-deep); text-decoration: underline; text-underline-offset: 2px; }

.support-callout {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1rem; padding: .65rem 1rem;
  background: rgba(255,255,255,.12); border-radius: var(--r-sm);
  font-size: .9rem;
}
.support-callout a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }

.exit-email-form { margin-bottom: .9rem; }
.exit-email-form input {
  width: 100%; padding: .7rem .85rem; margin-bottom: .65rem;
  border: 1px solid var(--line); border-radius: var(--r-sm);
}

.bonus-grid { display: grid; gap: .65rem; }
@media (min-width: 520px) { .bonus-grid { grid-template-columns: repeat(3, 1fr); } }
.bonus-tile {
  text-align: left; padding: .85rem .9rem; border-radius: var(--r-md);
  border: 1.5px solid var(--line); background: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.bonus-tile.is-selected {
  border-color: var(--iris);
  box-shadow: 0 0 0 1px var(--iris), var(--shadow-sm);
}
.bonus-tile__name { display: block; font-weight: 600; color: var(--ink); font-size: .92rem; }
.bonus-tile__note { display: block; font-size: .78rem; color: var(--muted); margin-top: .2rem; }

/* ---------- Cart UX ---------- */
.nav__cart {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--iris);
  background: linear-gradient(145deg, #edf6ef 0%, #d8eadc 100%);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  box-shadow: 0 2px 10px rgba(45, 106, 70, 0.14);
}
.nav__cart svg {
  width: 21px; height: 21px; color: var(--iris-deep);
  animation: cart-nudge 2.4s ease-in-out infinite;
}
@keyframes cart-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.nav__cart:hover svg { animation-play-state: paused; }
.nav__cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: var(--r-pill);
  background: var(--iris-deep); color: var(--white);
  font-size: .68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.5);
  transition: opacity .2s var(--ease), transform .25s var(--ease);
}
.nav__cart-count.is-visible { opacity: 1; transform: scale(1); }
.nav__cart.is-bump { animation: cart-bump .45s var(--ease); }
.nav__cart.has-items { border-color: var(--iris); box-shadow: 0 0 0 3px var(--iris-wash); }
@keyframes cart-bump {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.12); }
}
@media (min-width: 1024px) {
  .nav__cart { margin-left: .35rem; order: 1; }
  .nav__cta { order: 2; }
}
@media (max-width: 1023px) {
  .nav__cart { margin-left: auto; margin-right: .35rem; }
  .nav__toggle { margin-left: 0; }
}

.cart-drawer {
  position: fixed; inset: 0; z-index: 3000;
  pointer-events: none; visibility: hidden;
}
.cart-drawer.is-open { pointer-events: auto; visibility: visible; }
.cart-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(9,26,15,.45);
  opacity: 0; transition: opacity .28s var(--ease);
}
.cart-drawer.is-open .cart-drawer__overlay { opacity: 1; }
.cart-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(100%, 420px);
  background: var(--white);
  box-shadow: -8px 0 40px rgba(9,26,15,.15);
  display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform .35s var(--ease);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 1.25rem 1.25rem .75rem;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--iris-deep); margin-bottom: .25rem;
}
.cart-drawer__head h2 { font-size: 1.35rem; margin: 0; }
.cart-drawer__close {
  background: none; border: none; font-size: 1.75rem; line-height: 1;
  color: var(--muted); padding: .2rem .45rem; cursor: pointer;
}
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 1.25rem; }
.cart-drawer__empty { text-align: center; padding: 2rem 0; }
.cart-drawer__empty p { margin: 0 auto 1rem; color: var(--muted); }

.cart-progress {
  display: flex; align-items: center; gap: .35rem;
  padding: .85rem 1.25rem; background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: .72rem; font-weight: 600; color: var(--muted);
}
.cart-progress__step {
  display: flex; align-items: center; gap: .35rem; white-space: nowrap;
}
.cart-progress__step i {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-style: normal; font-size: .65rem;
}
.cart-progress__step.is-active { color: var(--ink); }
.cart-progress__step.is-active i { background: var(--iris-deep); border-color: var(--iris-deep); color: var(--white); }
.cart-progress__step.is-done i { background: var(--iris); border-color: var(--iris); color: var(--white); }
.cart-progress__line { flex: 1; height: 2px; background: var(--line); min-width: 12px; }
.cart-progress__line.is-done { background: var(--iris); }

.cart-line {
  display: grid; grid-template-columns: 72px 1fr auto; gap: .85rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.cart-line__img img {
  width: 72px; height: 72px; object-fit: cover;
  border-radius: var(--r-sm); border: 1px solid var(--line);
}
.cart-line__info strong { display: block; color: var(--ink); font-size: .95rem; }
.cart-line__info span { display: block; font-size: .82rem; color: var(--muted); margin-top: .15rem; }
.cart-line__price { font-weight: 700; color: var(--ink) !important; margin-top: .35rem !important; }
.cart-line__remove {
  background: none; border: none; font-size: 1.4rem; color: var(--muted);
  line-height: 1; padding: .2rem; cursor: pointer;
}

.cart-drawer__summary { padding: 1rem 0; }
.cart-drawer__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; padding: .35rem 0;
}
.cart-drawer__row--muted { color: var(--muted); font-size: .88rem; }
.cart-drawer__subtotal { font-size: 1.15rem; color: var(--ink); }

.cart-drawer__trust {
  margin: 0 0 1rem; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: .45rem;
}
.cart-drawer__trust li {
  display: flex; align-items: center; gap: .45rem;
  font-size: .82rem; color: var(--body);
}
.cart-drawer__trust svg { width: 15px; height: 15px; color: var(--iris-deep); flex-shrink: 0; }

.cart-drawer__fine {
  font-size: .75rem; color: var(--muted); text-align: center;
  margin-top: .75rem; line-height: 1.5;
}

.cart-toast {
  position: fixed; bottom: 1.25rem; left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 3100;
  background: var(--ink); color: var(--white);
  padding: .85rem 1.25rem; border-radius: var(--r-pill);
  font-size: .88rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  opacity: 0; max-width: min(92vw, 420px); text-align: center;
}
.cart-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
@media (max-width: 939px) {
  .cart-toast { bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px)); }
}

.cart-fly {
  position: fixed; z-index: 3200;
  width: 48px; height: 48px; pointer-events: none;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .6s ease;
}
.cart-fly img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-md); }

.checkout-handoff {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(9,26,15,.72);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.checkout-handoff.is-visible { opacity: 1; visibility: visible; }
.checkout-handoff__card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem 1.75rem; max-width: 400px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg);
}
.checkout-handoff__card h2 { font-size: 1.35rem; margin: 1rem 0 .5rem; }
.checkout-handoff__card p { color: var(--body); font-size: .92rem; margin-bottom: 1.25rem; }
.checkout-handoff__spinner {
  width: 44px; height: 44px; margin: 0 auto;
  border: 3px solid var(--line);
  border-top-color: var(--iris-deep);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

body.cart-open,
body.checkout-handoff-active { overflow: hidden; }

.btn.is-loading { pointer-events: none; opacity: .85; }
.btn.is-success { background: var(--iris-deep) !important; border-color: var(--iris-deep) !important; }
.btn-spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle; margin-right: .35rem;
}
.btn-check { width: 18px; height: 18px; vertical-align: middle; margin-right: .25rem; }
