/* ==============================
   Delta LP V2 . shared styles
   ============================== */

:root {
  --space-blue: #302952;
  --space-blue-deep: #1F1A38;
  --sky-blue: #A4DBE8;
  --sky-blue-soft: #DCEEF3;
  --sky-blue-light: #DFF2F8;
  --sun: #F2C94C;
  --coral: #FF7A59;
  --cream: #FAF6EE;
  --paper: #FFFFFF;
  --ink: #1B1830;
  --ink-mute: #5C5878;
  --line: #E9E5DD;
  --success: #2BA84A;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(27, 24, 48, 0.06);
  --shadow-md: 0 8px 24px rgba(27, 24, 48, 0.08);
  --shadow-lg: 0 18px 48px rgba(27, 24, 48, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ===== Type ===== */
.h-display { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; font-variation-settings: "SOFT" 100, "WONK" 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 0.5em; }
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
p { margin: 0 0 1em; line-height: 1.6; }
.eyebrow { font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--space-blue); }
.lede { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; color: var(--ink-mute); }

/* ===== Layout primitives ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 920px; }
.container-md { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-cream { background: var(--cream); }
.section-sky { background: var(--sky-blue-soft); }
.section-skyblue { background: var(--sky-blue-light); }
.section-deep { background: var(--space-blue); color: #fff; }
.section-deep .lede, .section-deep p { color: rgba(255,255,255,0.85); }
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section-tight { padding: 32px 0; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 13px;
  padding: 16px 28px; border-radius: var(--radius-pill); border: 2px solid transparent;
  text-decoration: none; transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--space-blue); color: #fff; }
.btn-primary:hover { background: var(--space-blue-deep); color: #fff; }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: #e8623d; color: #fff; }
.btn-outline { background: transparent; color: var(--space-blue); border-color: var(--space-blue); }
.btn-outline:hover { background: var(--space-blue); color: #fff; }
.btn-light { background: #fff; color: var(--space-blue); }
.btn-light:hover { background: var(--cream); color: var(--space-blue); }
.btn-block { width: 100%; }
.btn-lg { font-size: 14px; padding: 20px 32px; }

/* ===== Announcement bar ===== */
.bar {
  background: var(--space-blue); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 16px; text-align: center;
}
.bar a { color: var(--sky-blue); text-decoration: underline; text-underline-offset: 3px; }

/* ===== Header / nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo img, .nav-logo svg { height: 28px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 600; text-decoration: none; color: var(--ink); }
.nav-links a:hover { color: var(--space-blue); }
.cart-trigger {
  background: var(--sky-blue-soft); border: 2px solid var(--space-blue);
  border-radius: var(--radius-pill); padding: 8px 16px;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-size: 13px; font-weight: 700; color: var(--space-blue);
}
.cart-count {
  background: var(--coral); color: #fff;
  border-radius: 999px; padding: 1px 7px; font-size: 11px; font-weight: 800;
  display: none;
}
@media (max-width: 768px) {
  .nav-links a:not(.cart-trigger) { display: none; }
}

/* ===== Hero (Generic) ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--sky-blue-soft) 0%, #fff 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 0.95fr; gap: 56px;
  align-items: center; padding: 64px 0 56px;
}
.hero-copy h1 { color: var(--space-blue); }
.hero-copy .lede { margin-bottom: 24px; max-width: 540px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--ink-mute);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust-stack { flex-direction: column; align-items: flex-start; gap: 6px; }
.hero-trust-stack > div { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stars { color: var(--sun); letter-spacing: 1px; }

/* Hero buy card (right side) */
.hero-buy { position: relative; }
.hero-buy-cans {
  position: relative; height: 280px;
  display: flex; align-items: end; justify-content: center; gap: 0;
  margin-bottom: -36px;
}
.hero-buy-cans img {
  height: 280px; width: auto; object-fit: contain; object-position: center bottom;
  filter: drop-shadow(0 18px 32px rgba(48, 41, 82, 0.22));
}
.hero-buy-cans img:nth-child(1) { transform: rotate(-8deg) translateX(28px); z-index: 1; height: 240px; }
.hero-buy-cans img:nth-child(2) { transform: rotate(-2deg) translateX(10px); z-index: 2; }
.hero-buy-cans img:nth-child(3) { transform: rotate(2deg)  translateX(-10px); z-index: 2; }
.hero-buy-cans img:nth-child(4) { transform: rotate(8deg)  translateX(-28px); z-index: 1; height: 240px; }

.hero-buy-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px 24px 22px;
  text-align: center;
  position: relative; z-index: 3;
}
.hero-buy-meta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--space-blue); margin-bottom: 14px;
}
.hero-buy-card .triple-zero { margin: 0 auto 16px; box-shadow: none; background: var(--sky-blue-soft); }
.hero-buy-price {
  display: flex; align-items: baseline; justify-content: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 16px;
}
.hero-buy-strike { color: var(--ink-mute); text-decoration: line-through; font-weight: 600; font-size: 16px; }
.hero-buy-now { font-family: var(--font-display); font-weight: 800; font-size: 36px; color: var(--space-blue); line-height: 1; }
.hero-buy-save {
  background: var(--coral); color: #fff;
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-buy-foot {
  font-size: 11px; color: var(--ink-mute); margin-top: 12px;
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 0 32px; }
  .hero-buy-cans { height: 220px; margin-bottom: -28px; }
  .hero-buy-cans img { height: 220px; }
  .hero-buy-cans img:nth-child(1), .hero-buy-cans img:nth-child(4) { height: 190px; }
  .hero-buy-card { padding: 24px 20px 18px; }
  .hero-buy-now { font-size: 30px; }
}

/* ===== Triple-zero badge ===== */
.triple-zero {
  display: inline-flex; gap: 18px; padding: 12px 22px;
  background: #fff; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display); font-weight: 800;
  color: var(--space-blue);
}
.triple-zero span { display: inline-flex; align-items: baseline; gap: 4px; }
.triple-zero strong { font-size: 22px; line-height: 1; }
.triple-zero em { font-style: normal; font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-mute); }
@media (max-width: 480px) {
  .triple-zero { gap: 12px; padding: 10px 16px; }
  .triple-zero strong { font-size: 18px; }
}

/* ===== Trust strip ===== */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.trust-tile { text-align: center; }
.trust-tile .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3vw, 32px); color: var(--space-blue); line-height: 1; }
.trust-tile .label { font-size: 12px; font-weight: 600; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }
@media (max-width: 768px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 24px 0; }
}

/* ===== Scroll fade-in animations ===== */
/* Default visible — JS adds .anim-ready to body to enable hidden-then-fade behavior. */
/* This keeps content visible if JS fails to load. */
.fade-in { transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.anim-ready .fade-in:not(.is-visible) { opacity: 0; transform: translateY(18px); }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
.fade-in-stagger > * { transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.anim-ready .fade-in-stagger:not(.is-visible) > * { opacity: 0; transform: translateY(18px); }
.fade-in-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.fade-in-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.fade-in-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.fade-in-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.fade-in-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* ===== Page hero (big top-of-page Gruns-style hero with image + CTA) ===== */
.page-hero {
  background: linear-gradient(180deg, var(--sky-blue-soft) 0%, var(--cream) 100%);
  padding: 56px 0 64px;
}
.page-hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}
.page-hero-copy .eyebrow { color: var(--coral); font-size: 14px; font-weight: 900; letter-spacing: 0.18em; }
.page-hero-copy h1 {
  font-size: clamp(34px, 5vw, 56px); margin: 12px 0 16px;
  color: var(--space-blue); line-height: 1.05; font-weight: 800;
}
.page-hero-copy .hero-h1-emph { color: var(--coral); display: block; }
.page-hero-copy .lede { font-size: 17px; color: var(--ink-mute); max-width: 540px; margin: 0 0 14px; }
.hero-zero-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.01em;
  color: var(--space-blue);
  line-height: 1.1;
  margin: 0 0 28px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-zero-line strong {
  font-size: 1.18em;
  color: var(--coral);
  font-weight: 800;
}
.hero-zero-dot {
  color: var(--ink-mute);
  font-weight: 600;
  font-size: 0.85em;
}
@media (max-width: 540px) {
  .hero-zero-line { font-size: 22px; gap: 8px; }
}
.hero-zero-line--center { justify-content: center; margin: 6px auto 18px; }
.zero-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px auto 0;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(20, 24, 64, 0.08);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--space-blue);
  letter-spacing: 0.01em;
  box-shadow: 0 1px 2px rgba(20, 24, 64, 0.04);
}
.zero-chip strong { color: var(--coral); font-weight: 800; font-size: 1.1em; }
.zero-chip span { color: var(--ink-mute); font-weight: 600; }
.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-cta-save {
  font-size: 13px; font-weight: 700; color: var(--space-blue);
  background: #fff; padding: 8px 14px; border-radius: var(--radius-pill);
  border: 1px dashed var(--space-blue);
}
.hero-mini-trust {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: var(--ink-mute);
}
.hero-mini-trust span { display: inline-flex; align-items: center; gap: 5px; }
.page-hero-img {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(48, 41, 82, 0.18);
}
.page-hero-img img { width: 100%; height: auto; display: block; }
.hero-img-badge {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--space-blue); color: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display); font-weight: 800;
}
.hero-img-badge strong { font-size: 22px; line-height: 1; }
.hero-img-badge span { font-family: var(--font-body); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-promo-card {
  position: absolute; top: 18px; left: 18px;
  background: var(--coral); color: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 14px 30px rgba(255, 122, 89, 0.36);
  max-width: 220px;
  transform: rotate(-3deg);
}
.hero-promo-eyebrow {
  display: block; font-size: 10px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.92; margin-bottom: 6px;
}
.hero-promo-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.hero-promo-strike { text-decoration: line-through; font-weight: 600; opacity: 0.75; font-size: 14px; }
.hero-promo-now { font-family: var(--font-display); font-weight: 800; font-size: 28px; line-height: 1; }
.hero-promo-save { display: block; font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.hero-promo-save strong { background: #fff; color: var(--coral); padding: 1px 6px; border-radius: 4px; font-weight: 800; }
.hero-promo-perk { display: block; font-size: 10px; opacity: 0.9; line-height: 1.3; }
@media (max-width: 600px) {
  .hero-promo-card { max-width: 180px; padding: 10px 14px; top: 12px; left: 12px; }
  .hero-promo-now { font-size: 22px; }
  .hero-promo-eyebrow { font-size: 9px; }
  .hero-promo-perk { display: none; }
}
@media (max-width: 880px) {
  .page-hero { padding: 32px 0 36px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero-copy h1 { font-size: clamp(28px, 7vw, 36px); }
  .hero-cta-save { font-size: 12px; padding: 6px 12px; }
  .hero-img-badge strong { font-size: 18px; }
}

/* ===== Product hero copy (above the gallery+checkout) ===== */
.product-section { padding: 28px 0 56px; background: var(--cream); }
.product-hero-copy { text-align: center; max-width: 860px; margin: 0 auto 32px; }
.product-hero-copy .eyebrow { color: var(--coral); }
.product-hero-copy h1 { font-size: clamp(28px, 4.2vw, 44px); margin: 8px 0 12px; color: var(--space-blue); line-height: 1.08; }
.product-hero-copy .lede { font-size: 15px; color: var(--ink-mute); max-width: 620px; margin: 0 auto; }
@media (max-width: 880px) {
  .product-section { padding: 20px 0 36px; }
  .product-hero-copy { text-align: left; margin-bottom: 20px; }
}

/* ===== Product / Buy block ===== */
.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm);
}
.product[data-mode="variety"] .pack-pill-flavor { display: none !important; }
.product[data-mode="flavor"] .pack-pill-variety { display: none !important; }
/* Sampler bundle has no subscribe option — only one-time + NEW code */
.product[data-mode="variety"] .purchase-card-subscribe { display: none !important; }
.product[data-mode="variety"] .purchase-row { gap: 0; }
@media (max-width: 880px) {
  .product { padding: 20px; gap: 28px; }
}
.product-gallery { display: flex; flex-direction: column; gap: 12px; }
.product-assurance {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  margin-top: 4px;
}
.product-assurance .pa-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 2px;
  padding: 4px 6px;
  border-right: 1px solid var(--line);
}
.product-assurance .pa-item:last-child { border-right: 0; }
.product-assurance .pa-icon { font-size: 22px; line-height: 1; margin-bottom: 4px; }
.product-assurance strong { font-size: 12px; font-weight: 800; color: var(--space-blue); line-height: 1.2; }
.product-assurance span { font-size: 10px; color: var(--ink-mute); line-height: 1.3; }
.product-main {
  aspect-ratio: 1; background: #f1f0ec; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.product-main.is-flavor img {
  width: auto; height: 100%; object-fit: contain;
  padding: 28px 0;
  filter: drop-shadow(0 18px 36px rgba(48, 41, 82, 0.22));
}
.product-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.product-thumbs button {
  background: var(--sky-blue-soft);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.15s;
  overflow: hidden;
}
.product-thumbs button:hover { border-color: var(--line); }
.product-thumbs button.active { border-color: var(--space-blue); }
.product-thumbs button img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-thumbs button.thumb-can img { object-fit: contain; padding: 8px; }

.product-info .stars { color: var(--sun); letter-spacing: 1px; font-size: 16px; }
.product-info .stars-line { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-mute); margin-bottom: 12px; }
.product-info h1, .product-info h2.product-title-h2 { font-size: clamp(32px, 4vw, 44px); margin: 0 0 12px; color: var(--space-blue); }
.product-info .product-description { color: var(--ink-mute); line-height: 1.6; margin-bottom: 24px; }

@keyframes cta-flash {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 122, 89, 0); transform: translateY(0); }
  20%      { box-shadow: 0 0 0 8px rgba(255, 122, 89, 0.55); transform: translateY(-2px); }
  60%      { box-shadow: 0 0 0 16px rgba(255, 122, 89, 0); transform: translateY(0); }
}
.cta-flash { animation: cta-flash 1.4s ease-out 1; }

/* Flavor chip grid (Sampler + 4 individual cans) */
.chip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin: 0; }
.flavor-chip {
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 8px 4px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-family: var(--font-body);
  text-align: center;
  min-height: 96px;
}
.flavor-chip:hover { border-color: var(--space-blue); }
.flavor-chip.active { border-color: var(--space-blue); background: #fff; }
.flavor-chip .chip-img {
  width: 100%; height: 56px; display: flex; align-items: center; justify-content: center;
  border-radius: 6px; overflow: hidden;
}
.flavor-chip .chip-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.flavor-chip .chip-img-can { background: transparent; padding: 4px 0 0; }
.flavor-chip .chip-img-can img { object-fit: contain; object-position: center bottom; max-height: 100%; max-width: 70%; }
.flavor-chip .chip-label {
  font-size: 11px; font-weight: 700; color: var(--space-blue);
  line-height: 1.2; letter-spacing: 0.01em;
}

/* Strength selector (production-mimic) */
.strength-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.strength-pill {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 8px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.strength-pill:hover { border-color: var(--space-blue); color: var(--space-blue); }
.strength-pill.active { background: var(--space-blue); border-color: var(--space-blue); color: #fff; }
.strength-pill .leaf { font-size: 14px; line-height: 1; }
@media (max-width: 600px) {
  .strength-pill { font-size: 11px; padding: 10px 4px; gap: 4px; }
  .strength-pill .leaf { font-size: 12px; }
}

/* Product price row (above flavor selector) */
.product-price-row {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px;
  margin: 18px 0 6px;
}
.product-price-strike { color: var(--ink-mute); text-decoration: line-through; font-weight: 600; font-size: 18px; }
.product-price-now { font-family: var(--font-display); font-weight: 800; font-size: 36px; line-height: 1; color: var(--space-blue); }
.product-price-save {
  background: var(--coral); color: #fff;
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
}

/* Production-style purchase cards */
.purchase-row { display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
.purchase-card {
  display: block; width: 100%; padding: 0;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s;
}
.purchase-card:hover { border-color: var(--space-blue); }
.purchase-card.active { border-color: var(--space-blue); background: #fff; }
.purchase-card-header {
  background: var(--space-blue); color: #fff;
  padding: 8px 16px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
}
.purchase-card-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
}
.purchase-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--line);
  flex: none;
  position: relative;
  margin-top: 2px;
}
.purchase-card.active .purchase-radio { border-color: var(--space-blue); }
.purchase-card.active .purchase-radio::after {
  content: ''; position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--space-blue);
}
.purchase-body { flex: 1; min-width: 0; }
.purchase-name-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-bottom: 4px;
}
.purchase-name { font-weight: 700; font-size: 15px; color: var(--space-blue); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.purchase-meta { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.purchase-price { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--space-blue); }
.purchase-strike { color: var(--ink-mute); text-decoration: line-through; font-size: 13px; font-weight: 600; }
.purchase-percan { font-size: 12px; color: var(--ink-mute); }
.purchase-tag {
  background: var(--coral); color: #fff;
  padding: 2px 8px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 800; letter-spacing: 0.04em;
}
.purchase-frequency {
  display: block; width: 100%;
  margin: 10px 0 12px;
  padding: 10px 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23302952' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.purchase-perks-head { font-size: 13px; font-weight: 700; color: var(--space-blue); margin: 6px 0 6px; }
.purchase-perks { list-style: none; padding: 0; margin: 0; font-size: 12px; color: var(--ink-mute); }
.purchase-perks li { padding-left: 18px; position: relative; margin-bottom: 4px; line-height: 1.4; }
.purchase-perks li::before {
  content: '\2713'; position: absolute; left: 0; top: 0;
  color: var(--success); font-weight: 800; font-size: 12px;
}

/* Foot text under Add to Cart */
.product-foot { font-size: 11px; color: var(--ink-mute); text-align: center; margin: 10px 0; line-height: 1.5; }

/* Proof line directly above Add to Cart */
.cta-proof {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 10px 0;
  font-size: 13px; color: var(--ink);
  flex-wrap: wrap; text-align: center;
}
.cta-proof-stars { color: var(--sun); font-size: 14px; letter-spacing: 1px; }
.cta-proof-text strong { color: var(--space-blue); font-weight: 800; }

/* Risk reversal guarantee row directly under Add to Cart */
.guarantee-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 12px 0 6px; padding: 12px 14px;
  background: var(--cream); border-radius: var(--radius-md);
  font-size: 13px; line-height: 1.4;
}
.guarantee-icon {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--success); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
}
.guarantee-row strong { color: var(--space-blue); display: block; font-size: 13px; }
.guarantee-row span { color: var(--ink-mute); font-size: 12px; }

/* Fix author markup so role appears below name */
.testi-card .author .role { display: block; margin-top: 2px; font-weight: 500; color: var(--ink-mute); font-size: 12px; }

/* 0/0/0 reinforcement strip */
.zero-strip {
  display: flex; gap: 8px; margin: 16px 0 4px;
  background: var(--sky-blue-soft);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  justify-content: space-around;
  align-items: center;
}
.zero-strip span {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--space-blue);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.zero-strip strong {
  font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--space-blue); line-height: 1;
}

/* Ingredient list (single-can clean ingredients block) */
.ingredient-list {
  list-style: none; padding: 0; max-width: 720px; margin: 24px auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.ingredient-list li {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
  font-size: 14px;
  color: var(--space-blue);
  position: relative;
}
.ingredient-bullet {
  display: block; width: 32px; height: 32px;
  border-radius: 50%; background: var(--success);
  margin: 0 auto 10px;
  position: relative;
}
.ingredient-bullet::after {
  content: '\2713'; color: #fff; font-weight: 800;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ingredient-emoji {
  display: block; font-size: 36px; line-height: 1;
  margin: 0 auto 12px;
  width: 56px; height: 56px;
  border-radius: 50%; background: var(--sky-blue-soft);
  display: flex; align-items: center; justify-content: center;
}
.ingredient-list strong { font-weight: 700; display: block; font-size: 14px; line-height: 1.3; }
.ingredient-foot {
  text-align: center; max-width: 640px; margin: 16px auto 0;
  font-size: 14px; color: var(--ink-mute);
}
@media (max-width: 600px) {
  .ingredient-list { grid-template-columns: repeat(2, 1fr); }
}

/* Moment grid (3-col use-cases block) */
.moment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.moment-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.moment-card h3 { font-size: 20px; margin-bottom: 8px; color: var(--space-blue); }
.moment-card p { font-size: 14px; color: var(--ink-mute); margin: 0; line-height: 1.5; }
.moment-card-img { padding: 0; overflow: hidden; }
.moment-card-img .moment-img {
  aspect-ratio: 16/10; overflow: hidden;
  background: var(--sky-blue-soft);
}
.moment-card-img .moment-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.moment-card-img .moment-card-body { padding: 22px 24px 28px; }
/* Icon-led variant (no crop risk on images with overlay copy) */
.moment-card-icon { text-align: center; padding: 36px 28px 32px; }
.moment-icon-wrap {
  width: 80px; height: 80px; margin: 0 auto 18px;
  background: var(--sky-blue-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.moment-emoji { font-size: 40px; line-height: 1; }
.moment-card-icon h3 { margin-top: 4px; }
@media (max-width: 768px) {
  .moment-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Stats section (deep navy bg, big numbers, distinctive contrast) */
.section-stats {
  background: linear-gradient(135deg, var(--space-blue-deep) 0%, var(--space-blue) 100%);
  padding: 64px 0; color: #fff;
}
.stats-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.stats-head .eyebrow { color: var(--coral); }
.stats-head h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); margin: 8px 0 0; line-height: 1.15; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center;
}
.stat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 5vw, 56px); line-height: 1;
  color: #fff; margin-bottom: 14px;
}
.stat-num .stat-num-unit { font-size: 0.45em; color: var(--coral); margin-left: 6px; font-weight: 700; vertical-align: middle; }
.stat-label {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  color: var(--coral); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.stat-sub { font-size: 13px; color: rgba(255, 255, 255, 0.7); line-height: 1.4; }
@media (max-width: 768px) {
  .section-stats { padding: 48px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 22px 14px; }
}

/* Founder section (sky-blue side-by-side card to break dark monotony) */
.founder-section { background: var(--sky-blue-soft); padding: 64px 0; }
.founder-card {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: stretch;
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 16px 40px rgba(48, 41, 82, 0.12);
}
.founder-img {
  background: var(--space-blue);
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
  position: relative; overflow: hidden;
}
.founder-img-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  display: block;
}
.founder-img-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(48, 41, 82, 0) 50%, rgba(48, 41, 82, 0.55) 100%);
  pointer-events: none;
}
.founder-quote-mark {
  position: absolute; bottom: 12px; left: 18px; z-index: 2;
  font-family: var(--font-display); font-size: 100px; line-height: 0.7; color: var(--coral);
  font-weight: 800;
}
.founder-body { padding: 36px 36px 36px 0; display: flex; flex-direction: column; justify-content: center; }
.founder-body .eyebrow { color: var(--coral); }
.founder-context { font-size: 14px; color: var(--ink-mute); line-height: 1.55; margin: 10px 0 14px; }
.founder-quote {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.25;
  color: var(--space-blue); margin: 4px 0 16px;
  border-left: 3px solid var(--coral); padding-left: 16px;
}
.founder-attrib { font-size: 14px; margin-bottom: 22px; }
.founder-attrib strong { color: var(--space-blue); margin-right: 6px; }
.founder-attrib span { color: var(--ink-mute); }
.founder-foot { font-size: 12px; color: var(--ink-mute); margin: 12px 0 0; line-height: 1.5; }
@media (max-width: 880px) {
  .founder-card { grid-template-columns: 1fr; }
  .founder-body { padding: 28px 24px 32px; }
  .founder-img { min-height: 200px; }
}

/* Quick testimonial bar (right under hero, Gruns-style) */
.quick-testi-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.quick-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quick-testi {
  text-align: center; padding: 0 12px;
  border-right: 1px solid var(--line);
}
.quick-testi:last-child { border-right: 0; }
.quick-testi-stars { color: var(--sun); font-size: 16px; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.quick-testi p {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  color: var(--space-blue); line-height: 1.35; margin: 0 0 10px;
}
.quick-testi-author { font-size: 12px; color: var(--ink-mute); }
.quick-testi-author strong { color: var(--space-blue); margin-right: 4px; }
@media (max-width: 768px) {
  .quick-testi-grid { grid-template-columns: 1fr; gap: 18px; }
  .quick-testi { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .quick-testi:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* Big can with USPs around it (Gruns-style centerpiece) */
.can-usps-section { padding: 64px 0; }
.can-usps-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; align-items: start;
}
.can-usps-col { display: flex; flex-direction: column; gap: 28px; }
.can-usps-col.can-usps-left { text-align: right; }
.can-usps-col.can-usps-left .usp-block { align-items: flex-end; }
.can-usps-col.can-usps-right { text-align: left; }
.can-usps-center {
  display: flex; align-items: flex-start; justify-content: center;
  position: relative;
  min-height: 100%;
}
.can-usps-center img {
  max-height: 560px; width: auto; height: auto;
  filter: drop-shadow(0 24px 50px rgba(48, 41, 82, 0.25));
  will-change: opacity;
}
.usp-block { display: flex; flex-direction: column; gap: 4px; }
.usp-badge {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--space-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: 26px; line-height: 1;
  margin-bottom: 6px;
  box-shadow: 0 8px 18px rgba(48, 41, 82, 0.18);
}
.usp-badge.usp-badge-wide { width: auto; min-width: 96px; padding: 0 14px; border-radius: 36px; font-size: 22px; letter-spacing: 0.02em; }
.usp-badge.usp-badge-stack { flex-direction: column; gap: 0; padding: 4px; }
.usp-badge.usp-badge-stack strong { font-size: 22px; line-height: 1; font-weight: 800; }
.usp-badge.usp-badge-stack em { font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; }
.usp-badge-icon { background: var(--coral); font-size: 32px; }
.can-usps-col.can-usps-left .usp-badge { margin-left: auto; }
.usp-block h3 { font-size: 18px; margin: 0; color: var(--space-blue); }
.usp-block p { font-size: 14px; color: var(--ink-mute); margin: 0; line-height: 1.4; }
@media (max-width: 880px) {
  .can-usps-grid { grid-template-columns: 1fr; gap: 28px; }
  .can-usps-col.can-usps-left, .can-usps-col.can-usps-right { text-align: left; }
  .can-usps-col.can-usps-left .usp-block { align-items: flex-start; }
  .can-usps-col.can-usps-left .usp-badge { margin-left: 0; }
  .can-usps-center { order: -1; }
  .can-usps-center img { max-height: 320px; }
}

/* Retailer marks (mini brand-color "logos" with icon + wordmark) */
.retailer-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 18px 26px;
}
.retailer-mark {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.retailer-mark:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(48, 41, 82, 0.08); }
.retailer-mark .rm-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 800; font-size: 13px;
  color: #fff;
}
.retailer-mark .rm-name {
  display: flex; flex-direction: column;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  color: var(--space-blue); line-height: 1.05; letter-spacing: 0.01em;
}
.retailer-mark .rm-name small { font-family: var(--font-body); font-weight: 600; font-size: 9px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

.retailer-totalwine .rm-icon { background: #c8102e; }
.retailer-sprouts .rm-icon { background: #4a8b3a; font-size: 16px; }
.retailer-circlek .rm-icon { background: #e30613; }
.retailer-winndixie .rm-icon { background: #006937; }
.retailer-kwiktrip .rm-icon { background: #d6202e; }
.retailer-lowesfoods .rm-icon { background: #4a7c2a; font-size: 16px; }
@media (max-width: 600px) {
  .retailer-row { gap: 10px 12px; }
  .retailer-mark { padding: 8px 12px; gap: 8px; }
  .retailer-mark .rm-icon { width: 26px; height: 26px; font-size: 11px; }
  .retailer-mark .rm-name { font-size: 12px; }
  .retailer-mark .rm-name small { font-size: 8px; }
}

/* Edible-vs-Delta callout (in /5-guide article body) */
.edible-card {
  display: grid; grid-template-columns: 110px 1fr; gap: 24px;
  background: var(--sky-blue-soft);
  border-left: 4px solid var(--space-blue);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 28px 0;
}
.edible-icon {
  font-size: 56px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  width: 100px; height: 100px;
  background: #fff; border-radius: 50%;
  margin: 0 auto;
}
.edible-body .eyebrow { color: var(--coral); }
.edible-body h3 { font-size: clamp(20px, 2.4vw, 26px); margin: 6px 0 10px; color: var(--space-blue); }
.edible-body p { font-size: 15px; color: var(--ink-mute); margin: 0 0 14px; line-height: 1.6; }
.edible-compare { list-style: none; padding: 0; margin: 0; }
.edible-compare li {
  padding: 10px 0; border-bottom: 1px solid rgba(48, 41, 82, 0.08);
  font-size: 14px; color: var(--space-blue);
}
.edible-compare li:last-child { border-bottom: 0; }
.edible-compare strong { font-weight: 800; margin-right: 6px; }
.edible-compare span { color: var(--ink-mute); font-style: italic; font-weight: 400; margin-left: 4px; }
@media (max-width: 600px) {
  .edible-card { grid-template-columns: 1fr; padding: 22px; }
  .edible-icon { width: 80px; height: 80px; font-size: 40px; }
}

/* Press strip (As seen on / Featured by) */
.press-strip { padding: 48px 0 32px; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.press-head { text-align: center; max-width: 640px; margin: 0 auto 28px; }
.press-head .eyebrow { color: var(--coral); }
.press-head h2 { font-size: clamp(22px, 2.8vw, 28px); margin: 6px 0 0; color: var(--space-blue); }
.press-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 28px 44px;
}
.press-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  letter-spacing: 0.08em; color: var(--space-blue);
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.press-logo:hover { opacity: 1; }
@media (max-width: 600px) {
  .press-logos { gap: 18px 28px; }
  .press-logo { font-size: 14px; }
}

/* Configurator (flavor mode): pack pills + purchase pills + summary */
.config-section { margin-bottom: 16px; }
.config-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 8px;
}
.pack-row, .purchase-row { display: flex; gap: 10px; }
.pack-pill, .purchase-pill {
  flex: 1; padding: 14px 14px 12px; border: 2px solid var(--line); border-radius: var(--radius-md);
  background: #fff; cursor: pointer; transition: border-color 0.15s, background 0.15s, color 0.15s;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-body); position: relative;
  min-height: 64px; justify-content: center;
}
.pack-pill:hover, .purchase-pill:hover { border-color: var(--space-blue); }
.pack-pill.active, .purchase-pill.active { border-color: var(--space-blue); background: var(--sky-blue-soft); }
.pack-name, .purchase-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.pack-price { font-weight: 800; font-size: 16px; color: var(--space-blue); }
.pack-save, .purchase-tag {
  position: absolute; top: -10px; right: 10px;
  background: var(--coral); color: #fff;
  padding: 3px 8px; border-radius: var(--radius-pill);
  font-size: 9px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap;
}
.flavor-summary {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding: 14px 16px; background: var(--cream); border-radius: var(--radius-md);
  margin: 16px 0;
}
.flavor-mode-strike { color: var(--ink-mute); text-decoration: line-through; font-weight: 600; font-size: 14px; }
.flavor-mode-now { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--space-blue); line-height: 1; }
.flavor-mode-percan { font-size: 12px; color: var(--ink-mute); margin-left: auto; }

@media (max-width: 600px) {
  .chip-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .chip-grid > .flavor-chip:first-child { grid-column: 1 / -1; flex-direction: row; min-height: 64px; padding: 8px 12px; gap: 12px; justify-content: flex-start; }
  .chip-grid > .flavor-chip:first-child .chip-img { width: 56px; height: 56px; flex: none; }
  .chip-grid > .flavor-chip:first-child .chip-label { font-size: 14px; font-weight: 800; }
  .flavor-chip { min-height: 92px; padding: 10px 6px; }
  .flavor-chip .chip-img { height: 56px; }
  .flavor-chip .chip-label { font-size: 12px; line-height: 1.2; }
  .product-thumbs { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .pay-row { font-size: 10px; padding: 6px 10px; gap: 4px; flex-wrap: wrap; justify-content: center; }
}

/* Single-offer card (no toggle, since Sampler has no subscribe option) */
.buy-offer-card {
  background: var(--sky-blue-soft);
  border: 2px solid var(--space-blue);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 16px;
}
.buy-offer-row {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.buy-offer-strike {
  color: var(--ink-mute); text-decoration: line-through; font-weight: 600; font-size: 17px;
}
.buy-offer-now {
  font-family: var(--font-display); font-weight: 800; font-size: 32px; line-height: 1;
  color: var(--space-blue);
}
.buy-offer-pill {
  background: var(--coral); color: #fff;
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
}
.buy-offer-perks {
  list-style: none; padding: 0; margin: 14px 0 0;
  font-size: 13px; color: var(--ink-mute);
}
.buy-offer-perks li {
  padding-left: 22px; position: relative; margin-bottom: 6px; line-height: 1.4;
}
.buy-offer-perks li::before {
  content: '\2713'; position: absolute; left: 0; top: 0;
  width: 16px; height: 16px; border-radius: 50%; background: var(--success);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; top: 1px;
}

.option-card {
  display: block; padding: 18px; border: 2px solid var(--line); border-radius: var(--radius-md);
  margin-bottom: 12px; cursor: pointer; transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.option-card.active { border-color: var(--space-blue); background: var(--sky-blue-soft); }
.option-card .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.option-card .label { font-weight: 700; font-size: 15px; color: var(--ink); }
.option-card .save-pill { background: var(--coral); color: #fff; font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: var(--radius-pill); margin-left: 8px; vertical-align: 2px; }
.option-card .price { font-weight: 800; font-size: 17px; color: var(--space-blue); }
.option-card .strike { color: var(--ink-mute); font-weight: 600; text-decoration: line-through; margin-right: 6px; font-size: 14px; }
.option-card .perks { font-size: 12px; color: var(--ink-mute); margin: 8px 0 0; padding-left: 16px; }
.option-card .perks li { margin: 2px 0; }
.option-card input[type="radio"] { display: none; }

.buy-cta-row { display: flex; gap: 12px; align-items: center; margin-top: 8px; }
.add-to-cart { flex: 1; }
.pay-row {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  margin-top: 10px; padding: 8px 12px;
  background: var(--cream); border-radius: var(--radius-pill);
  font-size: 11px; color: var(--ink-mute); font-weight: 600;
  letter-spacing: 0.02em;
}
.pay-row img { opacity: 0.7; }
.config-hint { display: inline; margin-left: 6px; font-weight: 500; color: var(--ink-mute); text-transform: none; letter-spacing: 0; font-size: 11px; }
.trust-line { font-size: 12px; color: var(--ink-mute); margin-top: 14px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.trust-line span { display: inline-flex; align-items: center; gap: 4px; }

@media (max-width: 880px) {
  .product { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
}

/* ===== Benefit grid ===== */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: left;
}
.benefit-card .icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--sky-blue-soft); color: var(--space-blue);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  margin-bottom: 20px;
}
.benefit-card h3 { font-size: 22px; margin-bottom: 8px; color: var(--space-blue); }
.benefit-card p { font-size: 15px; color: var(--ink-mute); margin: 0; }
@media (max-width: 768px) {
  .benefit-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== Comparison table ===== */
.compare-wrap { overflow-x: auto; }
.compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare th, .compare td {
  padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.compare th { font-family: var(--font-body); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-mute); background: var(--cream); }
.compare th:first-child, .compare td:first-child { text-align: left; font-weight: 700; }
.compare .delta-col { background: var(--sky-blue-soft); color: var(--space-blue); font-weight: 700; }
.compare th.delta-col { background: var(--space-blue); color: #fff; }
.compare .check { color: var(--success); font-weight: 800; }
.compare .x { color: #c44; font-weight: 800; }

/* ===== Testimonials ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi-grid-3 { grid-template-columns: repeat(3, 1fr); }
.testi-grid-2 { grid-template-columns: repeat(2, 1fr); }
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.testi-card .stars { color: var(--sun); margin-bottom: 12px; letter-spacing: 1px; }
.testi-card blockquote { font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 1.35; color: var(--ink); margin: 0 0 16px; }
.testi-card .author { font-size: 13px; font-weight: 600; color: var(--ink-mute); }
.testi-card .author strong { color: var(--ink); }
@media (max-width: 880px) {
  .testi-grid, .testi-grid-3, .testi-grid-2 { grid-template-columns: 1fr; }
}

.testi-card-image {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.testi-card-image img { width: 100%; height: auto; display: block; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 24px; color: var(--space-blue); font-weight: 600;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 0 22px; color: var(--ink-mute); line-height: 1.6; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ===== Footer ===== */
.site-footer {
  background: var(--space-blue-deep); color: rgba(255,255,255,0.7);
  padding: 48px 0 32px; font-size: 13px;
}
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; margin-right: 18px; }
.site-footer a:hover { color: #fff; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: end; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 16px; max-width: 720px; line-height: 1.5; }
.footer-logo svg, .footer-logo img { height: 22px; }

/* ===== Cart drawer (Bootstrap offcanvas overrides) ===== */
.offcanvas { font-family: var(--font-body); }
.offcanvas-header { border-bottom: 1px solid var(--line); padding: 20px 24px; }
.offcanvas-title { font-family: var(--font-display); font-weight: 800; color: var(--space-blue); }
.offcanvas-body { padding: 20px 24px; }
.cart-empty { text-align: center; color: var(--ink-mute); padding: 32px 0; }
.cart-item { display: grid; grid-template-columns: 80px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 80px; height: 80px; object-fit: contain; background: var(--sky-blue-soft); border-radius: var(--radius-md); padding: 6px; }
.cart-item-title { font-weight: 700; font-size: 14px; color: var(--ink); }
.cart-item-meta { font-size: 12px; color: var(--ink-mute); margin: 2px 0 8px; }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill); }
.qty-btn { width: 28px; height: 28px; background: transparent; border: 0; font-size: 16px; line-height: 1; color: var(--ink); }
.qty-val { padding: 0 10px; font-size: 14px; font-weight: 700; }
.cart-item-price { font-weight: 800; color: var(--space-blue); }
.cart-remove { background: transparent; border: 0; color: #c44; font-size: 12px; padding: 4px 0 0; }
.cart-footer {
  position: sticky; bottom: 0; background: #fff;
  padding: 18px 0 0; margin-top: 12px; border-top: 1px solid var(--line);
}
.cart-subtotal-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 16px; margin-bottom: 12px; }
.checkout-link { display: block; }

/* ===== Article / Listicle ===== */
.article-hero {
  background: var(--cream); padding: 64px 0 32px;
}
.article-hero .eyebrow { color: var(--coral); }
.article-hero h1 { color: var(--space-blue); max-width: 820px; }
.article-hero .lede { max-width: 720px; }
.article-hero .byline { font-size: 13px; color: var(--ink-mute); margin-top: 16px; }
.article-hero .byline strong { color: var(--ink); }
.article-hero-img {
  margin-top: 32px; border-radius: var(--radius-lg); overflow: hidden;
  background: #f1f0ec;
}
.article-hero-img img { width: 100%; height: auto; display: block; }
@media (min-width: 880px) {
  .article-hero-img { max-width: 720px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .article-hero-img { max-width: 320px; margin-top: 16px; }
  .article-hero-img img { max-height: 50vh; object-fit: cover; }
}
.trust-badge-row { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 14px 24px; justify-content: center; font-size: 12px; font-weight: 700; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; }
.trust-badges span::before { content: '\2713'; color: var(--success); margin-right: 6px; font-weight: 800; }
@media (max-width: 600px) {
  .trust-badges { gap: 8px 16px; font-size: 10px; letter-spacing: 0.04em; }
}

.article-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 32px; font-size: 18px; line-height: 1.65; }
.article-body p { font-size: 18px; }
.article-body .reason {
  margin: 56px 0;
  scroll-margin-top: 80px;
}
.article-body .reason-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--space-blue); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  margin-bottom: 18px;
}
.article-body .reason h2 { font-size: clamp(28px, 3.4vw, 38px); color: var(--space-blue); margin-bottom: 12px; }
.article-body .reason-img {
  margin: 24px 0; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/10; background: var(--sky-blue-soft);
}
.article-body .reason-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 75%; }
.article-body .reason-img-portrait { aspect-ratio: auto; max-width: 420px; margin: 28px auto; border-radius: var(--radius-lg); overflow: hidden; }
.article-body .reason-img-portrait img { width: 100%; height: auto; display: block; object-fit: contain; }
.article-body .reason-asset-square { max-width: 520px; margin: 28px auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.article-body .reason-asset-square img { width: 100%; height: auto; display: block; }
.article-body .reason-asset-portrait { max-width: 360px; margin: 28px auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.article-body .reason-asset-portrait img { width: 100%; height: auto; display: block; }
.article-body .pull-quote {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px); line-height: 1.25;
  color: var(--space-blue); padding: 24px 0 24px 24px;
  border-left: 4px solid var(--coral); margin: 28px 0;
}
.article-body .nutri-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); font-size: 15px; margin: 24px 0;
}
.article-body .nutri-table th, .article-body .nutri-table td { padding: 12px 16px; text-align: center; border-bottom: 1px solid var(--line); }
@media (max-width: 600px) {
  .article-body .nutri-table { font-size: 12px; }
  .article-body .nutri-table th, .article-body .nutri-table td { padding: 8px 6px; }
  .article-body .nutri-table th { font-size: 10px; letter-spacing: 0.04em; }
  .sampler-reveal-grid { grid-template-columns: repeat(2, 1fr); }
}
.article-body .nutri-table th:first-child, .article-body .nutri-table td:first-child { text-align: left; font-weight: 700; }
.article-body .nutri-table th { background: var(--cream); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-mute); }
.article-body .nutri-table .delta-col { background: var(--sky-blue-soft); color: var(--space-blue); font-weight: 700; }
.article-body .nutri-table th.delta-col { background: var(--space-blue); color: #fff; }

.flavor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0; }
.flavor-tile {
  background: var(--cream); border-radius: var(--radius-md);
  padding: 20px; display: flex; align-items: center; gap: 14px;
}
.flavor-tile img { width: 64px; height: 110px; object-fit: contain; flex: none; }
.flavor-tile h4 { font-family: var(--font-display); font-weight: 800; font-size: 19px; margin: 0 0 4px; color: var(--space-blue); }
.flavor-tile p { margin: 0; font-size: 14px; color: var(--ink-mute); line-height: 1.4; }
@media (max-width: 600px) { .flavor-grid { grid-template-columns: 1fr; } }

/* ===== Feeling words (Reason 4 visual) ===== */
.feel-words {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin: 28px 0;
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--space-blue); line-height: 1.1;
  letter-spacing: -0.01em;
}
.feel-words span { display: inline-block; }
.feel-words span:nth-child(2) { color: var(--coral); }
.feel-words span:nth-child(4) { color: var(--coral); }

/* ===== Sampler reveal (listicle, between Reason 2 + 3) ===== */
.sampler-reveal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  margin: 40px 0;
  scroll-margin-top: 80px;
}
.sampler-reveal-head { text-align: center; margin-bottom: 24px; }
.sampler-reveal-head .eyebrow { color: var(--coral); }
.sampler-reveal-head h2 { font-size: clamp(24px, 3vw, 32px); margin: 8px 0 8px; color: var(--space-blue); }
.sampler-reveal-head p { font-size: 14px; max-width: 540px; margin: 0 auto; }
.sampler-reveal-image {
  background: #f1f0ec;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 640px; margin: 0 auto;
}
.sampler-reveal-image img { width: 100%; height: auto; display: block; }
/* Legacy 4-box grid (kept for backward compat / not currently used) */
.sampler-reveal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.sampler-reveal-grid figure {
  margin: 0; background: var(--sky-blue-soft); border-radius: var(--radius-md);
  padding: 16px 12px 12px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.sampler-reveal-grid img {
  width: 100%; height: 130px; object-fit: contain; object-position: center;
  margin-bottom: 8px;
}
.sampler-reveal-grid figcaption {
  font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--space-blue);
}
@media (max-width: 600px) {
  .sampler-reveal-grid { grid-template-columns: repeat(2, 1fr); }
  .sampler-reveal { padding: 28px 16px 22px; }
}

/* ===== Inline buy block (used in listicle) ===== */
.buy-block-inline {
  background: var(--sky-blue-soft);
  border-radius: var(--radius-lg);
  padding: 24px; margin: 32px 0;
  display: grid; grid-template-columns: 140px 1fr; gap: 20px;
  align-items: center;
}
.buy-block-inline .product-thumb {
  background: #fff; border-radius: var(--radius-md);
  padding: 12px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.buy-block-inline .product-thumb > img { max-height: 130px; object-fit: contain; object-position: center; }
.buy-block-inline .product-thumb-sampler { padding: 0; overflow: hidden; }
.buy-block-inline .product-thumb-sampler > img { width: 100%; height: 100%; max-height: none; object-fit: cover; border-radius: var(--radius-md); }

/* Buy-block inline trust + guarantee */
.buy-block-inline .bb-testi {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  margin: 8px 0 12px; padding: 10px 12px;
  background: var(--cream); border-radius: var(--radius-md);
  font-size: 12px; color: var(--ink); line-height: 1.4;
}
.buy-block-inline .bb-testi .stars { color: var(--sun); font-size: 13px; letter-spacing: 1px; }
.buy-block-inline .bb-testi strong { color: var(--space-blue); font-weight: 800; }
.buy-block-inline .bb-guarantee {
  margin: 10px 0 0; padding: 10px 12px;
  background: var(--sky-blue-soft); border-radius: var(--radius-md);
  font-size: 12px; color: var(--ink-mute); line-height: 1.45;
}
.buy-block-inline .bb-guarantee strong { color: var(--space-blue); }

/* Hero stars line under byline */
.hero-stars-line {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px; color: var(--ink);
}
.hero-stars-line .hero-stars { color: var(--sun); letter-spacing: 1px; font-size: 14px; }
.hero-stars-line strong { color: var(--space-blue); font-weight: 800; }

/* Sampler cluster (4 cans fanned in a small space, used in inline buy blocks) */
.product-thumb-cluster {
  padding: 8px !important;
}
.product-thumb-cluster img {
  position: absolute; left: 50%; top: 50%; height: 130px; width: auto;
  filter: drop-shadow(0 6px 12px rgba(48, 41, 82, 0.18));
}
.product-thumb-cluster img:nth-child(1) { transform: translate(-50%, -50%) rotate(-10deg) translateX(-30px); height: 110px; z-index: 1; }
.product-thumb-cluster img:nth-child(2) { transform: translate(-50%, -50%) rotate(-3deg)  translateX(-10px); z-index: 2; }
.product-thumb-cluster img:nth-child(3) { transform: translate(-50%, -50%) rotate(3deg)   translateX(10px);  z-index: 2; }
.product-thumb-cluster img:nth-child(4) { transform: translate(-50%, -50%) rotate(10deg)  translateX(30px);  height: 110px; z-index: 1; }

/* Sub-line under price-line in inline buy blocks */
.price-sub {
  font-size: 12px; line-height: 1.4; margin: 6px 0 14px;
}
.buy-block-inline h3 { font-size: 22px; margin: 0 0 4px; color: var(--space-blue); }
.buy-block-inline .price-line { font-size: 14px; color: var(--ink-mute); margin-bottom: 12px; }
.buy-block-inline .price-line strong { color: var(--space-blue); font-size: 17px; font-weight: 800; }
.buy-block-inline .price-line .strike { text-decoration: line-through; margin-right: 6px; font-weight: 600; }
.buy-block-inline .toggle-row { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.buy-block-inline .toggle-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border: 2px solid var(--line); border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; cursor: pointer; background: #fff;
  color: var(--ink);
}
.buy-block-inline .toggle-pill.active { border-color: var(--space-blue); background: var(--space-blue); color: #fff; }
.buy-block-inline input[type="radio"] { display: none; }
.buy-block-inline .save-tag { background: var(--coral); color: #fff; padding: 1px 6px; border-radius: 999px; font-size: 10px; font-weight: 800; margin-left: 4px; }
@media (max-width: 600px) {
  .buy-block-inline { grid-template-columns: 1fr; text-align: center; }
  .buy-block-inline .toggle-row { justify-content: center; }
}

/* ===== Offer stack (listicle Reason 5) ===== */
.offer-stack {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 8px 20px; margin: 24px 0; box-shadow: var(--shadow-sm);
}
.offer-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.offer-row:last-child { border-bottom: 0; }
.offer-row .save { color: var(--coral); font-weight: 700; }
.offer-row .incl { color: var(--success); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.offer-row.offer-total {
  background: var(--space-blue); color: #fff;
  padding: 16px 20px; margin: 8px -20px -8px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
}

/* ===== Sticky mobile bottom-bar ===== */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--space-blue); color: #fff;
  padding: 10px 16px env(safe-area-inset-bottom, 10px);
  display: none; align-items: center; justify-content: center; gap: 14px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
  transform: translateY(100%); transition: transform 0.25s ease;
}
.sticky-buy.sticky-buy-visible { transform: translateY(0); }
.sticky-buy .label { font-size: 13px; font-weight: 700; white-space: nowrap; }
.sticky-buy .label .price { font-weight: 800; }
.sticky-buy .btn { padding: 14px 22px; font-size: 13px; flex: 0 0 auto; min-height: 44px; }
@media (max-width: 768px) { .sticky-buy { display: flex; } }

/* ===== Recap card ===== */
.recap {
  background: var(--space-blue); color: #fff;
  border-radius: var(--radius-lg); padding: 40px 32px;
  margin: 48px 0;
}
.recap h2 { color: #fff; }
.recap ul { list-style: none; padding: 0; margin: 24px 0; }
.recap li { padding-left: 32px; position: relative; margin-bottom: 12px; line-height: 1.5; }
.recap li::before {
  content: '\2713'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%; background: var(--coral);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.recap .recap-cta { margin-top: 24px; }
.recap .recap-trust { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 12px; }

/* ===== Section header ===== */
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { color: var(--space-blue); }
.section-head .lede { max-width: 640px; margin: 0 auto; }

/* ===== Misc utilities ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-3 { margin-bottom: 24px; }
.gap-2 { gap: 16px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.muted { color: var(--ink-mute); }
.small { font-size: 13px; }

/* ===== Triple-zero icon strip (between hero quick-testi and press strip) ===== */
.zero-strip-section {
  background: var(--sky-blue-light);
  padding: 48px 0;
}
.zero-icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
  justify-items: center;
}
.zero-icon-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.zero-icon-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--sky-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.zero-icon-wrap img {
  width: 56px;
  height: 56px;
  filter: brightness(0) invert(1); /* render the pale-blue source SVG as solid white */
  position: relative;
  z-index: 1;
}
.zero-icon-wrap::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 50%;
  height: 6px;
  background: #fff;
  transform: translateY(-50%) rotate(-45deg);
  z-index: 2;
  border-radius: 2px;
}
.zero-icon-wrap--no-slash::after { display: none; }
.zero-icon-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--space-blue);
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .zero-icon-row { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .zero-icon-wrap { width: 80px; height: 80px; }
  .zero-icon-wrap img { width: 44px; height: 44px; }
}

/* ===== Section divider (decorative banner between major sections) ===== */
/* Full bleed - escapes any container, spans 100vw */
.section-divider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: transparent;
  line-height: 0;
}
.section-divider img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
/* Text-based divider variant - copy overlaid on the brand coral banner artwork */
.section-divider-text {
  background-image: url('/assets/images/brand/coral-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px clamp(20px, 5vw, 80px);
  line-height: 1.18;
  position: relative;
}
.section-divider-line {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 1100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(22px, 2.6vw, 38px);
  letter-spacing: -0.005em;
  color: #fff;
}
.section-divider-line em {
  font-style: italic;
  font-weight: 800;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
@media (max-width: 720px) {
  .section-divider-text {
    padding: 40px 22px;
  }
  .section-divider-line {
    font-size: clamp(18px, 4.6vw, 26px);
  }
}

/* ===== Brand voice marquee (motion + signature lines) ===== */
.brand-marquee {
  background: var(--space-blue);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brand-marquee-scroll 38s linear infinite;
}
.brand-marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex: 0 0 auto;
}
.brand-marquee-group span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.brand-marquee-dot {
  color: var(--coral) !important;
  font-size: 10px !important;
  font-weight: 800;
  line-height: 1;
}
@keyframes brand-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track { animation: none; }
}

/* ===== Branded lifestyle photo grid (replaces emoji moments) ===== */
.moments-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.moments-photo {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.moments-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.moments-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
@media (max-width: 900px) {
  .moments-photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Pull-quote section (signature voice break) ===== */
.pullquote-section {
  background: var(--sky-blue-light);
  padding: 80px 0;
  text-align: center;
}
.pullquote-eyebrow {
  color: var(--coral) !important;
  display: inline-block;
  margin-bottom: 18px;
}
.pullquote-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--space-blue);
  margin: 0 0 18px;
}
.pullquote-line-emph {
  color: var(--coral);
}
.pullquote-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ink-mute);
  max-width: 540px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pullquote-section { padding: 56px 0; }
}

/* ===== Real retailer logo row (replaces .retailer-mark text approximations) ===== */
.retailer-row-logos,
.retailer-row.retailer-row-logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.4vw, 24px);
  padding: 8px 0;
  width: 100%;
}
.retailer-row-logos .retailer-logo,
.retailer-row.retailer-row-logos .retailer-logo {
  height: clamp(22px, 2.6vw, 40px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 160ms ease;
  flex: 1 1 0;
  min-width: 0;
}
.retailer-logo:hover { opacity: 1; }
@media (max-width: 540px) {
  .retailer-row-logos,
  .retailer-row.retailer-row-logos { flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
  .retailer-row-logos .retailer-logo,
  .retailer-row.retailer-row-logos .retailer-logo { flex: 0 0 auto; height: 24px; max-width: 90px; }
}

/* ===== /5-guide: 5-ingredients card (after Reason 2) ===== */
.ingredient-card {
  background: var(--sky-blue-light);
  border: 1px solid rgba(48, 41, 82, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px clamp(20px, 4vw, 40px);
  margin: 36px auto;
  max-width: 720px;
  box-shadow: var(--shadow-sm);
}
.ingredient-card .eyebrow {
  color: var(--coral);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 8px;
}
.ingredient-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--space-blue);
  margin: 0 0 8px;
}
.ingredient-card > p {
  color: var(--ink-mute);
  margin: 0 0 18px;
}
.ingredient-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  counter-reset: ing;
}
.ingredient-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--space-blue);
  font-size: 15px;
}
.ingredient-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--space-blue);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  flex: 0 0 26px;
}
@media (max-width: 540px) {
  .ingredient-list { grid-template-columns: 1fr; }
}

/* ===== /5-guide: half-can pacing callout (inside Reason 4) ===== */
.pace-callout {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin: 28px auto;
  max-width: 620px;
  box-shadow: var(--shadow-sm);
}
.pace-callout .pace-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
}
.pace-callout strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.2;
  color: var(--space-blue);
  margin-bottom: 4px;
}
.pace-callout p { margin: 0; }
@media (max-width: 540px) {
  .pace-callout { grid-template-columns: 48px 1fr; padding: 16px; gap: 14px; }
  .pace-callout .pace-icon { width: 44px; height: 44px; font-size: 22px; }
}

/* ===== /5-guide: 5 moments first-timers love (after Reason 4) ===== */
.moments-block {
  margin: 56px auto;
  max-width: 1080px;
}
.moments-head { text-align: center; margin-bottom: 28px; }
.moments-head .eyebrow {
  color: var(--coral);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 8px;
}
.moments-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--space-blue);
  margin: 0 0 8px;
}
.moments-head p { color: var(--ink-mute); margin: 0; }
.moments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.moments-grid .moment {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.moments-grid .moment img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.moments-grid .moment figcaption {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.moments-grid .moment figcaption strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--space-blue);
  letter-spacing: -0.01em;
}
.moments-grid .moment figcaption span {
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 1.4;
}
/* Asymmetric layout: feature first 2 wide, last 3 thirds. With 5 moments total: */
.moments-grid .moment:nth-child(1) { grid-column: span 3; }
.moments-grid .moment:nth-child(2) { grid-column: span 3; }
.moments-grid .moment:nth-child(3) { grid-column: span 2; }
.moments-grid .moment:nth-child(4) { grid-column: span 2; }
.moments-grid .moment:nth-child(5) { grid-column: span 2; }
.moments-grid .moment:nth-child(1) img,
.moments-grid .moment:nth-child(2) img {
  aspect-ratio: 16 / 10;
}
@media (max-width: 900px) {
  .moments-grid { grid-template-columns: 1fr 1fr; }
  .moments-grid .moment:nth-child(n) { grid-column: span 1; }
  .moments-grid .moment:nth-child(1) { grid-column: span 2; }
  .moments-grid .moment:nth-child(1) img { aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .moments-grid { grid-template-columns: 1fr; }
  .moments-grid .moment:nth-child(n) { grid-column: span 1; }
  .moments-grid .moment img { aspect-ratio: 4 / 3; }
}

/* 4-up symmetric variant for /5 */
.moments-grid--four .moment:nth-child(n) { grid-column: span 3; }
.moments-grid--four .moment:nth-child(n) img { aspect-ratio: 1 / 1; }
@media (max-width: 900px) {
  .moments-grid--four .moment:nth-child(n) { grid-column: span 1; }
  .moments-grid--four .moment:nth-child(1) { grid-column: span 1; }
}
@media (max-width: 560px) {
  .moments-grid--four .moment:nth-child(n) { grid-column: span 1; }
}

/* /10-guide additions */

/* Course-pair chip in flavor tile titles (Sober Curious × Social-Occasion frame) */
.pair-tag {
  display: inline-block;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 8px;
  line-height: 1.2;
}
.pair-aperitif { background: #f5dde6; color: #7a2c4a; }
.pair-apps     { background: #d8e7f3; color: #1f4e79; }
.pair-main     { background: #f0e6cf; color: #6b4d18; }
.pair-after    { background: #f3d9c8; color: #7a3a18; }

/* Stress 3-way grid (mind / body / sleep) */
.stress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 22px;
}
.stress-card {
  background: #fff7ec;
  border: 1px solid #f0dfc6;
  border-radius: 16px;
  padding: 20px 18px 18px;
  text-align: left;
}
.stress-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
  margin: 8px 0 6px;
  color: #2a1f10;
}
.stress-card p {
  font-size: 14px;
  line-height: 1.45;
  color: #5a4d3d;
  margin: 0;
}
.stress-icon {
  font-size: 26px;
  line-height: 1;
}
@media (max-width: 720px) {
  .stress-grid { grid-template-columns: 1fr; }
}
