/* eve Daily Stack PDP — design tokens & global styles */

@font-face {
  font-family: "Bilo";
  src: url("fonts/Bilo-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bilo";
  src: url("fonts/Bilo-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* eve brand palette — matching production PDP */
  --bg: #FCE9CF;             /* peachy cream main */
  --bg-elevated: #FDF1DF;    /* slight lift */
  --bg-deep: #FFE0BB;        /* warmer for cards */
  --bg-soft: #F7E5DF;        /* pinkish for quote boxes */
  --paper: #FFFFFF;
  --ink: #4A3A33;            /* warm brown ink */
  --ink-soft: #6B5851;
  --ink-mute: #9A867D;
  --rule: #E8D4BD;
  --rule-soft: #F0DFC8;

  /* primary action — eve green */
  --green: #4FAF73;
  --green-deep: #3E9A60;

  /* savings accent — soft premium terracotta-red (money saved) */
  --save: #BD5544;
  --save-deep: #A2412F;
  --save-tint: #F7E3DC;

  /* accents */
  --butter: #FFE8CC;
  --butter-deep: #F4C68A;
  --cocoa: #4A3A33;
  --cocoa-deep: #2E2421;     /* promo bar / dark sections */
  --vanilla: #FFE8CC;
  --rose: #F7E5DF;
  --star: #E6AE2D;           /* review stars */

  /* type — Bilo everywhere */
  --serif: "Bilo", Georgia, serif;
  --sans: "Bilo", system-ui, -apple-system, sans-serif;
  --mono: "Bilo", ui-monospace, "SF Mono", Menlo, monospace;

  --radius: 4px;
  --radius-lg: 10px;
  --radius-pill: 999px;

  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ───── Typography scale ───── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.label-mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.14;
  letter-spacing: -0.015em;
}
.h-display em { font-style: normal; font-weight: 700; color: var(--ink); }
.h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.008em;
}
.h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
}
.lede {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ───── Layout ───── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ───── Promo bar ───── */
.promo-bar {
  background: var(--cocoa-deep);
  color: var(--bg);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.promo-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  padding-left: 56px;
}
.promo-track span { display: inline-flex; align-items: center; gap: 10px; }
.promo-track .ic { font-size: 14px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ───── Nav ───── */
.nav {
  background: var(--bg);
  border-bottom: 0;
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  gap: 32px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 22px; font-size: 14px; font-weight: 700; align-items: center; flex-wrap: nowrap; }
.nav-links a { position: relative; padding: 8px 0; white-space: nowrap; }
.nav-links a.active { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1.5px; }
.nav-links a:hover { color: var(--cocoa); }
.nav-promo {
  background: var(--green);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  margin-left: 6px;
  letter-spacing: 0.01em;
}
.nav-promo:hover { background: var(--green-deep); color: #fff; }
.nav-icons { display: flex; align-items: center; gap: 18px; }
.nav-icons button { color: var(--ink); display: inline-flex; align-items: center; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  transition: transform 120ms ease, background 200ms ease, color 200ms ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-deep); }
.btn-yellow {
  background: var(--ink);
  color: var(--bg);
}
.btn-yellow:hover { background: var(--cocoa-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-block { width: 100%; }
.btn-lg { padding: 22px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ───── Pill / chip ───── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: var(--bg-deep);
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  white-space: nowrap;
}
.chip-butter { background: var(--butter); color: var(--ink); border-color: transparent; }
.chip-cocoa { background: var(--cocoa); color: var(--vanilla); border-color: transparent; }
.chip-outline { background: transparent; border-color: var(--ink); color: var(--ink); }

/* ───── Payment badges ───── */
.payment-badges {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  margin-top: 22px;
  flex-wrap: wrap;
}
.payment-badge {
  height: 28px;
  border-radius: 5px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.payment-badge svg {
  display: block;
  width: 100%;
  height: 100%;
}
.sub-toggle {
  display: flex;
  gap: 0;
  margin-bottom: -2px;
  position: relative;
  z-index: 2;
}
.sub-toggle button {
  padding: 12px 22px;
  background: var(--bg-deep);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  border-radius: 12px 12px 0 0;
  border: 1.5px solid var(--rule);
  border-bottom: 0;
  cursor: pointer;
  transition: 200ms;
}
.sub-toggle button + button { margin-left: -1.5px; }
.sub-toggle button.active {
  background: var(--paper);
  border-color: var(--ink);
  z-index: 2;
}

/* ───── Tier cards (horizontal) ───── */
.tier-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--paper);
  border-radius: 14px;
  border: 1.5px solid var(--rule);
  padding: 14px;
  margin-top: 0;
}
.tier-card {
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  padding: 14px 18px;
  cursor: pointer;
  position: relative;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 18px;
  align-items: center;
}
.tier-card:hover { border-color: var(--ink-mute); }
.tier-card.selected {
  border-color: var(--ink);
  border-width: 2px;
  padding: 13.5px 17.5px;
}
.tier-card--pinned {
  border-color: var(--green);
}
.tier-card--pinned.selected {
  border-color: var(--green-deep);
}
.tier-card--pinned .ribbon {
  background: var(--green);
}
.tier-sub-meta {
  color: var(--ink-mute);
  font-size: 12px;
}
.tier-note {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.005em;
}
.tier-card .ribbon {
  position: absolute;
  top: -10px; right: 18px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  white-space: nowrap;
  background: var(--cocoa-deep);
  color: #fff;
}
.tier-card .tier-thumb {
  width: 80px; height: 64px;
  border-radius: 8px;
  background: var(--bg-deep);
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
}
.tier-card .tier-thumb .tt-stack {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.tier-card .tier-thumb .tt-pouch {
  width: 28px; height: 38px;
  border-radius: 4px 4px 5px 5px;
  position: relative;
}
.tier-card .tier-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.tier-card .tier-title {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}
.tier-card .tier-sub {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.35;
}
.tier-card .tier-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  background: var(--green);
  color: #fff;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.005em;
  margin-top: 4px;
  align-self: flex-start;
  box-shadow: 0 2px 8px -2px color-mix(in oklch, var(--green) 70%, transparent);
}
.tier-card .tier-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.tier-card .tier-right .strike {
  font-size: 12px;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.tier-card .tier-right .price {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
.tier-card .tier-right .unit {
  font-size: 12px;
  color: var(--ink-mute);
}

/* ───── Hero eyebrow (category clarity) ───── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 12px 5px 10px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  border: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ───── Hero urgency cue ───── */
.hero-urgency {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--save-tint);
  border: 1px solid color-mix(in oklch, var(--save) 26%, transparent);
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink-soft);
}
.hero-urgency strong { color: var(--save-deep); font-weight: 800; }
.hero-urgency-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--save);
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--save) 55%, transparent);
  animation: hero-urgency-pulse 2s ease-out infinite;
}
@keyframes hero-urgency-pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in oklch, var(--save) 50%, transparent); }
  70%  { box-shadow: 0 0 0 7px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
@media (prefers-reduced-motion: reduce) { .hero-urgency-dot { animation: none; } }

/* ───── CTA reassurance row ───── */
.hero-cta-reassure {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 12px;
}
.hero-cta-reassure span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-cta-reassure svg { color: var(--green); flex: none; }

/* ───── Value stack (perceived value + savings) ───── */.value-stack {
  margin-top: 22px;
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 10px 30px -18px rgba(60,30,10,0.28);
}
.value-stack-gifts {
  padding: 16px 18px 14px;
  background: color-mix(in oklch, var(--butter) 42%, var(--paper));
  border-bottom: 1px dashed var(--rule);
}
.value-stack-gifts-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 12px;
}
.value-stack-gifts-head .vs-gift-icon { font-size: 18px; }
.value-stack-gifts-head .vs-gift-worth {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 4px 9px;
  border-radius: 999px;
}
.value-stack-gift-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.value-stack-gift-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.value-stack-gift-list li svg { flex: none; }
.value-stack-gift-list .vs-gift-name { flex: 1; min-width: 0; }
.value-stack-gift-list .vs-gift-price { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.value-stack-gift-list .vs-gift-price s { color: var(--ink-mute); font-size: 13px; }
.value-stack-gift-list .vs-gift-price strong {
  color: var(--green-deep);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.value-stack-total {
  display: flex;
  align-items: stretch;
  padding: 14px 18px;
}
.value-stack-total .vs-total-left,
.value-stack-total .vs-total-right { flex: 1; }
.value-stack-total .vs-total-right { text-align: right; }
.value-stack-total .vs-total-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.value-stack-total .vs-total-strike {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: color-mix(in oklch, var(--ink-mute) 60%, transparent);
}
.value-stack-total .vs-total-price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.value-stack-save {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 13px 16px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.005em;
}
.value-stack-save .vs-save-spark { font-size: 14px; opacity: 0.85; }
.value-stack-save .vs-save-pct {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255,255,255,0.22);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .value-stack-save { font-size: 16px; }
  .value-stack-total .vs-total-price { font-size: 24px; }
  .value-stack-gifts-head { font-size: 15px; }
  .value-stack-gift-list li { font-size: 13px; }
}

/* ───── Trust strip ───── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-item {
  padding: 22px 20px;
  border-right: 1px solid var(--rule);
  display: flex; align-items: center; gap: 14px;
}
.trust-item:last-child { border-right: 0; }
.trust-item .glyph {
  width: 36px; height: 36px; flex: none;
  display: grid; place-items: center;
  background: var(--bg-elevated);
  border-radius: 50%;
  font-family: var(--mono); font-size: 13px;
}
.trust-item .glyph--logo {
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
  padding: 2px;
}
.trust-item .copy { font-size: 13px; color: var(--ink-soft); line-height: 1.35; display: flex; flex-direction: column; gap: 2px; }
.trust-item .copy strong { color: var(--ink); font-weight: 500; font-size: 14px; }

/* ───── Product image placeholder ───── */
.product-img {
  background: var(--bg-elevated);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: block;
}
.product-img.stripes {
  background-image:
    repeating-linear-gradient(135deg,
      rgba(55,45,45,0.04) 0 12px,
      transparent 12px 24px),
    linear-gradient(180deg, #FCF1E0 0%, #F4DDC4 100%);
}
.product-img .label {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,252,244,0.9);
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  color: var(--ink);
}

/* placeholder pouch */
.pouch {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px 18px 26px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(60,30,10,0.35), 0 2px 6px rgba(60,30,10,0.08);
}
.pouch::before {
  content: "";
  position: absolute; left: 12%; right: 12%; top: -4%; height: 7%;
  background: var(--cocoa-deep);
  border-radius: 4px;
}
.pouch::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(170deg, rgba(255,255,255,0.32), rgba(255,255,255,0) 40%);
  pointer-events: none;
}
.pouch-vanilla {
  background: linear-gradient(180deg, #FFE8CC 0%, #F4C68A 100%);
}
.pouch-cocoa {
  background: linear-gradient(180deg, #5A4242 0%, #2A2222 100%);
  color: var(--vanilla);
}
.pouch-creatin {
  background: linear-gradient(180deg, #F9EFE8 0%, #E4D2C5 100%);
}
.pouch-inner {
  position: absolute; inset: 20% 14% 18%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.pouch-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px; line-height: 1;
}
.pouch-name {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pouch-flavor {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}
.pouch-weight {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
}

/* canvas bag placeholder */
.bag {
  width: 100%;
  aspect-ratio: 1;
  background: #F4DDC4;
  border-radius: 6px;
  position: relative;
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 3px);
}
.bag::before, .bag::after {
  content: "";
  position: absolute;
  top: -22%; width: 28%; height: 42%;
  border: 5px solid #E0BE96;
  border-bottom: 0;
  border-radius: 60% 60% 0 0 / 100% 100% 0 0;
}
.bag::before { left: 14%; }
.bag::after { right: 14%; }
.bag-mark {
  position: absolute;
  inset: 0; display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--cocoa-deep);
}

/* ───── Section spacing ───── */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ───── Accordion ───── */
.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}
.faq-q .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  transition: 200ms;
  flex: none; margin-left: 24px;
}
.faq-item.open .faq-q .ic { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > * { min-height: 0; }
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 720px;
}

/* ───── Sticky bottom bar ───── */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 14px 0;
  z-index: 30;
  transform: translateY(100%);
  transition: transform 280ms ease;
  box-shadow: 0 -20px 40px -20px rgba(60,30,10,0.18);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
@media (max-width: 640px) {
  .sticky-bar { padding: 10px 0; }
  .sticky-bar-inner { grid-template-columns: 1fr auto; gap: 12px; }
  .sticky-thumb { display: none; }
  .sticky-info .t { font-size: 15px; }
  .sticky-info .p { font-size: 11px; }
  .sticky-bar .btn { padding: 12px 16px; font-size: 13px; min-height: 44px; }
}
.sticky-thumb {
  width: 52px; height: 52px;
  border-radius: 8px;
  background: var(--bg-deep);
  background-image: url("https://www.evenutrition.de/cdn/shop/files/Packaging-Hero.jpg?v=1764091287&width=200");
  background-size: cover;
  background-position: center;
}
.sticky-info { line-height: 1.25; min-width: 0; }
.sticky-info .t { font-family: var(--serif); font-size: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-info .p { font-size: 13px; color: var(--ink-mute); }

/* ───── Quote card ───── */
.quote-card {
  background: var(--paper);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--rule);
}
.quote-card .stars {
  display: flex; gap: 2px; margin-bottom: 12px;
  color: var(--butter-deep);
  font-size: 14px;
}
.quote-card .quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.quote-card .who {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}
.quote-card .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rose);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px; color: var(--cocoa-deep);
}
.quote-card .who strong { color: var(--ink); font-weight: 500; }

/* ───── Cellebrities Strip ───── */
.celebrity {
  display: flex; gap: 16px; align-items: flex-start;
}
.celebrity-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  background-image: linear-gradient(135deg, var(--rose), var(--cocoa));
  flex: none;
}
.celebrity-quote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 8px;
}
.celebrity-name {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* ───── Marquee dividers ───── */
.divider-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.divider-eyebrow .line {
  flex: 1; height: 1px; background: var(--rule);
}
.divider-eyebrow .label-mono { flex: none; }

/* ───── Footer ───── */
.footer {
  background: var(--cocoa-deep);
  color: var(--bg-elevated);
  padding: 80px 0 32px;
}
.footer a:hover { color: var(--butter); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h5 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; margin: 0 0 16px;
  color: var(--butter);
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-legal {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,252,244,0.12);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(255,252,244,0.6);
}

/* ───── Toast ───── */
.toast {
  position: fixed; top: 88px; right: 24px;
  background: var(--ink); color: var(--paper);
  padding: 14px 18px; border-radius: 8px;
  font-size: 14px;
  z-index: 60;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  transform: translateX(140%);
  transition: transform 320ms cubic-bezier(.2,.8,.3,1);
}
.toast.visible { transform: translateX(0); }

.hero-gallery { position: sticky; top: 96px; min-width: 0; }
.hero-thumb { transition: border-color 180ms ease; flex: 0 0 auto; width: 64px; scroll-snap-align: start; }
.hero-thumb-row { display: flex; gap: 10px; min-width: 0; max-width: 100%; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--ink) transparent; padding-bottom: 4px; }
.hero-thumb-row::-webkit-scrollbar { height: 5px; }
.hero-thumb-row::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 999px; }
.hero-nav-btn { transition: background 160ms ease, opacity 160ms ease; opacity: 0; }
.hero-main-img:hover .hero-nav-btn, .hero-main-img:focus-within .hero-nav-btn { opacity: 1; }
@media (hover: none) { .hero-nav-btn { opacity: 1; } }

/* ───── Hero social proof bubble ───── */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  padding: 5px 14px 5px 6px;
  margin-bottom: 22px;
  align-self: flex-start;
}
.hero-social-proof-avatars {
  display: inline-flex;
  flex: none;
}
.hero-social-proof-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--paper);
  background: var(--bg-deep);
}
.hero-social-proof-avatars img + img { margin-left: -9px; }
.hero-social-proof-avatars img:nth-child(1) { object-position: 50% 30%; }
.hero-social-proof-avatars img:nth-child(2) { object-position: 70% 50%; }
.hero-social-proof-text {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.3;
  text-wrap: pretty;
}
.hero-social-proof-text strong {
  color: var(--ink-soft);
  font-weight: 700;
}
@media (max-width: 480px) {
  .hero-social-proof { padding: 4px 12px 4px 5px; gap: 8px; }
  .hero-social-proof-avatars img { width: 24px; height: 24px; }
  .hero-social-proof-avatars img + img { margin-left: -8px; }
  .hero-social-proof-text { font-size: 11.5px; }
}
@media (max-width: 900px) {
  .hero-gallery { position: static; top: auto; gap: 4px !important; }
  .hero-gallery > div:last-child { gap: 6px !important; }
  .hero-thumb { border-radius: 6px !important; }
  .hero-thumb-row { max-width: none; gap: 8px !important; margin-top: 4px; }
  .hero-thumb { width: 60px !important; }
  /* Collapse the column gap so the chip sits right under the gallery */
  section:first-of-type .grid-2 { gap: 8px !important; }
  /* Hero section: minimal top padding so first-content sits right under nav */
  section:first-of-type { padding: 4px 0 28px !important; }
  /* Tighten hero spacing on mobile so the bubble reaches above the fold */
  section > .container > .grid-2 > div:last-child .chip-butter { margin-bottom: 6px !important; margin-top: 6px !important; }
  section > .container > .grid-2 > div:last-child h1.h-display { margin: 0 0 6px !important; }
  /* Compact hero image — true square, full mobile width */
  .hero-gallery .product-img:first-child { aspect-ratio: 1 / 1 !important; max-height: none !important; }
  /* Headline stays bold/large per spec */
  h1.h-display { font-size: 30px !important; line-height: 1.12 !important; letter-spacing: -0.012em !important; }
  .chip { font-size: 10px !important; padding: 4px 10px !important; }
  /* Subhead compact */
  section:first-of-type .grid-2 > div:last-child > p:first-of-type,
  section:first-of-type p[style*="textWrap"] { font-size: 14.5px !important; line-height: 1.4 !important; margin: 0 0 10px !important; }
  /* Hide the lede paragraph on mobile — adds 4-5 lines of text between headline and the bubble */
  .lede { display: none !important; }
  /* Stars tighter */
  section:first-of-type [data-stars-row],
  section:first-of-type > .container > .grid-2 > div:last-child > div[style*="--star"] { margin-bottom: 8px !important; }
  /* Social proof bubble: visually beef up so it earns the above-fold spot */
  .hero-social-proof { margin-top: 0 !important; margin-bottom: 14px !important; padding: 10px 12px !important; }
  .hero-social-proof-text { font-size: 12.5px !important; line-height: 1.35 !important; }
  .label-mono { white-space: normal; }
  .divider-eyebrow .label-mono { white-space: normal; text-align: center; }
  /* Promo bar slimmer on mobile to save above-fold real estate */
  .promo-bar { height: 30px !important; font-size: 11.5px !important; }
  .promo-track { gap: 32px !important; padding-left: 32px !important; }
  /* Hero image goes edge-to-edge on mobile (negative margin cancels container padding) — perfect square, full width */
  .hero-gallery .hero-main-img { margin-left: -16px !important; margin-right: -16px !important; border-radius: 0 !important; aspect-ratio: 1 / 1 !important; max-height: none !important; width: calc(100% + 32px) !important; }
  .hero-gallery .hero-main-img > img { border-radius: 0 !important; }
  /* Tighter container padding on mobile */
  .container { padding: 0 16px !important; }
  /* Header / nav: tighter on mobile */
  .nav-inner { height: 56px !important; }
  .nav-logo img { height: 32px !important; }
  .nav-icons { gap: 14px !important; }
}
@media (max-width: 480px) {
  h1.h-display { font-size: 28px !important; }
  .hero-gallery .product-img:first-child { aspect-ratio: 1 / 1 !important; max-height: none !important; }
  .hero-thumb-row { max-width: none; }
  .hero-thumb { width: 54px !important; }
  /* Make thumbnails compact so they don't eat fold space */
  .hero-thumb { aspect-ratio: 1/1; }
}
.hide-md { }
@media (max-width: 1180px) {
  .hide-md { display: none; }
}
@media (max-width: 900px) {
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--rule); }
  .trust-item:last-child { border-bottom: 0; }

  /* ── Tier card: reflow to a 2-row layout on mobile ── */
  .tier-card {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "thumb body"
      "price price";
    gap: 10px 14px;
    padding: 12px 14px;
  }
  .tier-card.selected { padding: 11.5px 13.5px; }
  .tier-card .tier-thumb { grid-area: thumb; width: 64px; height: 56px; }
  .tier-card .tier-body { grid-area: body; min-width: 0; }
  .tier-card .tier-title { font-size: 16px; }
  .tier-card .tier-sub { font-size: 12.5px; }
  .tier-card .tier-right {
    grid-area: price;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 10px;
    text-align: left;
    padding-top: 10px;
    margin-top: 2px;
    border-top: 1px dashed var(--rule);
    width: 100%;
  }
  .tier-card .tier-right .price { font-size: 22px; }
  .tier-card .tier-right .strike { order: 2; }
  .tier-card .tier-right .price { order: 1; }
  .tier-card .tier-right .unit { order: 3; margin-left: auto; }
  .tier-card .tier-right > div:last-child:not(.strike):not(.price):not(.unit) {
    order: 4;
    margin-left: auto;
    text-align: left;
    max-width: 100%;
  }
  /* Coffee-anchor box: keep visible but constrain so it never pushes the column out */
  .tier-card .tier-right > div[style*="butter"],
  .tier-card .tier-right > div[style*="--butter"] {
    margin-left: auto;
  }
  .tier-coffee-anchor {
    order: 4;
    margin-top: 0 !important;
    margin-left: auto !important;
    text-align: left !important;
    max-width: 100%;
    font-size: 11px !important;
    padding: 5px 8px !important;
  }
}

/* utility */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-2 > *, .grid-2-tight > * { min-width: 0; }
.hero-buy-row > * { min-width: 0; }
@media (max-width: 480px) {
  .hero-buy-row { grid-template-columns: 1fr !important; }
}
.grid-2-tight { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 900px) {
  .grid-2, .grid-2-tight { grid-template-columns: 1fr; gap: 32px; }
}
.stack-sm > * + * { margin-top: 8px; }
.stack-md > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 28px; }
.muted { color: var(--ink-mute); }
.serif-it { font-family: var(--serif); font-style: normal; color: var(--ink); font-weight: 700; }
em { font-style: normal; }

/* ───── Flavor picker ───── */
.flavor-picker {
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 4px;
}
.flavor-picker-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.flavor-mode-toggle {
  display: inline-flex;
  padding: 3px;
  background: var(--bg-elevated);
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  gap: 0;
}
.flavor-mode-btn {
  padding: 7px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
  font-weight: 700;
}
.flavor-mode-btn.active {
  background: var(--ink);
  color: var(--paper);
}
.flavor-mode-btn:not(.active):hover {
  color: var(--ink);
}
.flavor-picker-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.flavor-summary-plus {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-mute);
  line-height: 1;
}
.flavor-picker-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin: 4px 0 0;
  color: var(--ink);
}
.flavor-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: var(--radius-pill);
  background: var(--bg-elevated);
  border: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.25;
}
.flavor-summary-pill strong {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 700;
  margin-top: 1px;
}
.flavor-summary-pill--main { border-color: var(--ink); }
.flavor-summary-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid;
  flex: none;
}

.flavor-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.flavor-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 8px 10px;
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, transform 120ms ease, background 180ms ease;
  position: relative;
}
.flavor-tile:hover {
  border-color: var(--ink-mute);
  transform: translateY(-1px);
}
.flavor-tile--main {
  border-color: var(--ink);
  border-width: 2px;
  padding: 7px 7px 9px;
  background: var(--bg-elevated);
}
.flavor-tile--secondary {
  border-color: var(--cocoa);
  border-style: dashed;
  background: var(--bg-elevated);
}
.flavor-tile-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  overflow: hidden;
  display: block;
}
.flavor-tile-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flavor-tile-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  border: 1.5px solid #fff;
  box-shadow: 0 4px 10px rgba(60,30,10,0.25);
}
.flavor-tile-badge--main {
  background: var(--ink);
  color: #fff;
}
.flavor-tile-badge--sec {
  background: var(--paper);
  color: var(--ink);
}
.flavor-tile-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 2px;
}
.flavor-tile-name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}
.flavor-tile-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  line-height: 1.3;
}
.flavor-picker-hint {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.45;
}
.flavor-picker-hint strong {
  color: var(--ink-soft);
  font-weight: 700;
}
.flavor-picker-hint svg {
  flex: none;
  margin-top: 1px;
  color: var(--ink-mute);
}

@media (max-width: 720px) {
  .flavor-tiles { grid-template-columns: repeat(3, 1fr); }
  .flavor-picker-head { flex-direction: column; align-items: flex-start; }
  .flavor-picker-summary { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 420px) {
  .flavor-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* ───── Intro video modal ───── */
.intro-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: color-mix(in oklch, var(--ink) 62%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: intro-fade-in 0.3s ease both;
}
.intro-modal-overlay.closing { animation: intro-fade-out 0.24s ease both; }
.intro-modal {
  position: relative;
  width: min(420px, 100%);
  border-radius: 22px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
  animation: intro-pop-in 0.34s cubic-bezier(0.22,1,0.36,1) both;
}
.intro-modal.closing { animation: intro-pop-out 0.24s ease both; }
.intro-modal-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 720px);
  background: #000;
}
.intro-modal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-modal-overlay-grad {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(18,12,8,0.92) 0%, rgba(18,12,8,0.55) 26%, rgba(18,12,8,0) 52%);
}
.intro-modal-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.intro-modal-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,252,244,0.72);
}
.intro-modal-headline {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.intro-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: #fff;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  box-shadow: 0 10px 26px -8px color-mix(in oklch, var(--green) 70%, transparent);
}
.intro-modal-cta:hover { background: var(--green-deep); transform: translateY(-1px); }
.intro-modal-cta svg { transition: transform 0.15s ease; }
.intro-modal-cta:hover svg { transform: translateX(3px); }
.intro-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.15s ease;
}
.intro-modal-close:hover { background: rgba(0,0,0,0.62); }
.intro-modal-mute {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.15s ease;
}
.intro-modal-mute:hover { background: rgba(0,0,0,0.62); }
@keyframes intro-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes intro-fade-out { from { opacity: 1; } to { opacity: 0; } }
@keyframes intro-pop-in {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes intro-pop-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(10px) scale(0.97); }
}
@media (max-width: 480px) {
  .intro-modal-overlay { padding: 14px; }
  .intro-modal-headline { font-size: 24px; }
  .intro-modal-content { padding: 24px 20px 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .intro-modal-overlay, .intro-modal { animation-duration: 0.01ms !important; }
}

/* ═══════════════ Advertorial / Listicle (pre-sell) ═══════════════ */
.adv { background: var(--paper); padding: 52px 0 60px; border-bottom: 1px solid var(--rule); }
.adv-wrap { max-width: 730px; margin: 0 auto; padding: 0 22px; }
.adv-flag { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: color-mix(in oklch, var(--ink-mute) 62%, transparent); border: 0; background: none; padding: 0; }
.adv-flag .dot { width: 4px; height: 4px; border-radius: 999px; background: color-mix(in oklch, var(--green) 55%, transparent); display: inline-block; }
.adv-ref { font-family: var(--mono); font-size: 0.62em; font-weight: 600; line-height: 0; vertical-align: super; margin-left: 1px; }
.adv-ref a { color: var(--butter-deep); text-decoration: none; padding: 0 1px; }
.adv-ref a:hover { text-decoration: underline; }
.adv-ref + .adv-ref { margin-left: 2px; }
.adv-footnotes-section { background: var(--paper); border-top: 1px solid var(--rule); padding: 30px 0 46px; }
.adv-footnotes-section .container { max-width: 860px; }
.adv-footnotes { margin: 0; padding: 0; }
.adv-fn-h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 14px; }
.adv-footnotes ol { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 9px; }
.adv-footnotes li { font-size: 12.5px; line-height: 1.5; color: var(--ink-mute); text-wrap: pretty; }
.adv-footnotes li strong { color: var(--ink-soft); font-weight: 600; }
.adv-footnotes li::marker { color: var(--butter-deep); font-variant-numeric: tabular-nums; }
.adv-h1 { font-size: clamp(30px, 5.2vw, 47px); line-height: 1.07; letter-spacing: -0.022em; font-weight: 700; margin: 18px 0 14px; color: var(--ink); text-wrap: balance; }
.adv-h1 .hl { background: linear-gradient(transparent 58%, var(--butter-deep) 58%); padding: 0 2px; }
.adv-dek { font-size: clamp(17px, 2.2vw, 20px); line-height: 1.45; color: var(--ink-soft); margin: 0 0 22px; text-wrap: pretty; }
.adv-eyebrow { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--butter-deep); margin: 18px 0 12px; }
.adv-subhead { font-size: clamp(18px, 2.6vw, 22px); font-weight: 700; font-style: italic; color: var(--ink); margin: -8px 0 18px; letter-spacing: -0.01em; }
.adv-trustrow { list-style: none; margin: 0 0 26px; padding: 14px 0; display: flex; flex-wrap: wrap; gap: 8px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.adv-trustrow li { position: relative; flex: 1 1 auto; padding: 0 16px; font-size: 13px; font-weight: 600; color: var(--ink-soft); text-align: center; white-space: nowrap; }
.adv-trustrow li::before { content: "\2713"; color: var(--green); font-weight: 700; margin-right: 6px; }
.adv-trustrow li + li { border-left: 1px solid var(--rule); }
@media (max-width: 560px) { .adv-trustrow li { flex-basis: 50%; text-align: left; padding: 4px 10px; white-space: normal; } .adv-trustrow li:nth-child(odd) { border-left: 0; } }
.adv-item-eyebrow { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--butter-deep); margin-bottom: 6px; }
.adv-luecke { display: flex; align-items: center; gap: 12px; margin: 24px 0 10px; }
.adv-luecke-tag { flex: none; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper); background: #C4502E; padding: 5px 11px; border-radius: var(--radius-pill); }
.adv-luecke-h { font-size: 19px; font-weight: 700; color: var(--ink); margin: 0; letter-spacing: -0.01em; line-height: 1.2; }
.adv-bigstatement { font-family: var(--serif); font-size: clamp(28px, 6vw, 40px); font-weight: 700; color: var(--ink); margin: 18px 0 !important; letter-spacing: -0.02em; }
.adv-layers-close { font-size: 17px; line-height: 1.5; color: var(--ink); margin: 20px 0 0; text-wrap: pretty; }
.adv-layers-close strong { font-weight: 700; }
.adv-vs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0 14px; }
.advs-col { border: 1px solid var(--rule); border-radius: 14px; padding: 18px 18px 20px; background: var(--paper); }
.advs-eve { border-color: var(--ink); background: color-mix(in oklch, var(--butter) 40%, var(--paper)); box-shadow: 0 8px 24px rgba(74,46,28,0.10); }
.advs-head { font-size: 16px; font-weight: 800; color: var(--ink); margin: 0 0 14px; letter-spacing: -0.01em; }
.advs-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.advs-col li { display: flex; gap: 9px; font-size: 14px; line-height: 1.4; color: var(--ink-soft); }
.advs-eve li { color: var(--ink); font-weight: 500; }
.advs-ic { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 19px; height: 19px; border-radius: 999px; font-size: 11px; font-weight: 700; color: #fff; margin-top: 1px; }
.advs-std .advs-ic { background: rgba(74,58,51,0.28); }
.advs-eve .advs-ic { background: var(--green); }
.adv-vs-note { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 6px; text-wrap: pretty; }
@media (max-width: 560px) { .adv-vs { grid-template-columns: 1fr; } }
.adv-dek-cta { display: inline-flex; align-items: center; gap: 7px; margin: 0 0 24px; padding: 0; background: none; border: 0; cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--green-deep, #1F8A5B); text-align: left; line-height: 1.4; border-bottom: 1.5px solid color-mix(in oklch, var(--green-deep, #1F8A5B) 40%, transparent); padding-bottom: 2px; transition: color .15s, border-color .15s; }
.adv-dek-cta:hover { color: var(--ink); border-color: var(--ink); }
.adv-dek-cta-arrow { transition: transform .15s; }
.adv-dek-cta:hover .adv-dek-cta-arrow { transform: translateX(3px); }
.adv-byline { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 26px; }
.adv-avatar { width: 44px; height: 44px; border-radius: 999px; background: var(--butter-deep); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; overflow: hidden; flex: none; }
.adv-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.adv-byline-meta strong { display: block; font-size: 14.5px; color: var(--ink); }
.adv-byline-meta span { font-size: 12.5px; color: var(--ink-mute); }
.adv-lead { border-radius: 13px; overflow: hidden; margin: 0 0 28px; aspect-ratio: 16/10; background: var(--bg-deep); }
.adv-lead img { width: 100%; height: 100%; object-fit: cover; display: block; }
.adv-body p { font-size: 17.5px; line-height: 1.62; color: var(--ink); margin: 0 0 18px; text-wrap: pretty; }
.adv-body p .hl { background: linear-gradient(transparent 60%, var(--butter) 60%); padding: 0 1px; }
.adv-body strong { font-weight: 700; }
.adv-kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); margin: 40px 0 4px; }
.adv-section-h { font-size: clamp(23px, 3.2vw, 31px); font-weight: 700; letter-spacing: -0.012em; line-height: 1.12; margin: 4px 0 8px; color: var(--ink); text-wrap: balance; }
.adv-item { padding: 26px 0; border-top: 1px solid var(--rule-soft); }
.adv-item:first-of-type { border-top: 0; }
.adv-item-head { display: flex; align-items: baseline; gap: 14px; }
.adv-item-num { font-size: 46px; font-weight: 700; line-height: 0.9; color: var(--butter-deep); flex: 0 0 auto; font-variant-numeric: tabular-nums; }
.adv-item-h { font-size: 21px; font-weight: 700; line-height: 1.18; margin: 0; color: var(--ink); }
.adv-item p { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin: 12px 0 0; }
.adv-item p strong { color: var(--ink); }
.adv-figure { margin: 18px auto 0; border-radius: 11px; overflow: hidden; border: 1px solid var(--rule-soft); max-width: 470px; }
.adv-figure.wide { max-width: 100%; }
.adv-figure img { width: 100%; display: block; }
.adv-reviews { background: var(--bg-soft); border-radius: 15px; padding: 24px 24px 8px; margin: 34px 0; }
.adv-reviews-h { font-size: 13px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 4px; }
.adv-review { padding: 16px 0; border-bottom: 1px solid rgba(74,58,51,0.1); }
.adv-review:last-child { border-bottom: 0; }
.adv-stars { color: var(--star); letter-spacing: 3px; font-size: 15px; }
.adv-review p { font-size: 16.5px; line-height: 1.5; color: var(--ink); margin: 8px 0 6px; }
.adv-review cite { font-size: 13.5px; color: var(--ink-mute); font-style: normal; }
.adv-cta-box { background: linear-gradient(160deg, var(--bg-deep), var(--bg-elevated)); border: 1px solid var(--rule); border-radius: 18px; padding: 34px 28px; text-align: center; margin: 36px 0 0; }
.adv-cta-box h3 { font-size: clamp(22px, 3vw, 27px); font-weight: 700; letter-spacing: -0.012em; margin: 0 0 8px; color: var(--ink); text-wrap: balance; }
.adv-cta-box > p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.5; margin: 0 auto 20px; max-width: 460px; text-wrap: pretty; }
.adv-cta-box .btn { font-size: 17px; }
.adv-cta-sub { font-size: 13px; color: var(--ink-mute); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 7px; flex-wrap: wrap; }
.adv-disclaimer { font-size: 11.5px; color: var(--ink-mute); line-height: 1.5; margin: 26px 0 0; }
.adv-closing { margin: 8px 0 0; padding: 30px 0 6px; border-top: 1px solid var(--rule-soft); }
.adv-closing p { font-size: 18px; line-height: 1.6; color: var(--ink); margin: 0 0 16px; text-wrap: pretty; }
.adv-closing .adv-kicker { margin-top: 0; }
.adv-signoff { font-family: var(--serif, Georgia, serif); font-style: italic; font-size: 20px; color: var(--ink-soft); }
.adv-quote { border-left: 3px solid var(--butter-deep); padding: 4px 0 4px 20px; margin: 24px 0; font-size: 20px; line-height: 1.4; font-style: italic; color: var(--ink); }
.adv-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0 4px; }
.adv-chip { font-size: 13.5px; font-weight: 600; background: var(--bg-deep); border: 1px solid var(--rule); border-radius: 999px; padding: 7px 14px; color: var(--ink-soft); }
.adv-chip b { color: var(--ink); }
.adv-claim { font-size: 13px; line-height: 1.5; color: var(--ink-soft); background: rgba(255,232,204,.5); border-radius: 8px; padding: 11px 14px; margin: 16px 0 2px; }
.adv-claim b { color: var(--ink); }
.adv-source { font-size: 12px; line-height: 1.5; color: var(--ink-mute); margin: 18px 0 2px; padding-top: 12px; border-top: 1px solid var(--rule-soft); }
.shock { background: var(--bg-deep); border: 1px solid var(--rule); border-radius: 16px; padding: 22px 22px 22px; margin: 22px 0 16px; }
.shock-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 16px; }
.shock-row { margin-top: 16px; }
.shock-rowhead { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.shock-ic { width: 19px; height: 19px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; flex: 0 0 auto; }
.shock-ic.bad { background: #C4502E; }
.shock-ic.ok { background: var(--green); }
.shock-rowlabel { font-size: 15px; font-weight: 600; color: var(--ink); }
.shock-track { background: rgba(74,58,51,0.07); border-radius: 9px; height: 46px; overflow: hidden; }
.shock-fill { height: 100%; border-radius: 9px; display: flex; align-items: center; justify-content: flex-end; padding: 0 14px; min-width: 56px; transition: width 1.2s cubic-bezier(0.16,1,0.3,1); }
.shock-fill.bad { background: linear-gradient(90deg, #E4D7C8, #CFC0AE); }
.shock-fill.ok { background: linear-gradient(90deg, var(--butter-deep), #E8A84F); }
.shock-grams { font-size: 18px; font-weight: 800; color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
.shock-row.bad .shock-grams { color: var(--ink-soft); }
.shock-gap { margin-top: 20px; padding: 16px 18px; border-radius: 12px; background: color-mix(in oklch, #C4502E 11%, var(--paper)); border: 1px solid color-mix(in oklch, #C4502E 26%, transparent); display: flex; align-items: baseline; gap: 13px; flex-wrap: wrap; opacity: 0; transform: translateY(7px); }
.shock-gap.in { opacity: 1; transform: none; transition: opacity .55s ease .45s, transform .55s ease .45s; }
.shock-gap-num { font-size: clamp(30px, 8.5vw, 44px); font-weight: 800; line-height: 0.95; color: #B0431F; letter-spacing: -0.025em; font-variant-numeric: tabular-nums; }
.shock-gap-txt { font-size: 15.5px; font-weight: 600; color: #8A3A1C; line-height: 1.3; }
.adv-consequence { font-size: 18.5px !important; line-height: 1.5; color: var(--ink) !important; font-weight: 500; margin-top: 16px; text-wrap: pretty; }
.adv-consequence strong { color: #B0431F; font-weight: 700; }
@media (prefers-reduced-motion: reduce) { .shock-fill, .shock-gap.in { transition: none; } }
/* Interactive protein calculator (Insight 1) */
.pcalc { background: color-mix(in oklch, var(--bg-deep) 55%, var(--paper)); border: 1px solid var(--rule-soft); border-radius: 13px; padding: 16px 16px 15px; margin: 18px 0 14px; }
.pcalc-q { font-size: 15.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.005em; margin: 0 0 14px; text-wrap: balance; }
.pcalc-weight { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.pcalc-weight-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.pcalc-weight-val { font-family: var(--serif); font-weight: 700; font-size: 22px; color: var(--ink); font-variant-numeric: tabular-nums; }
.pcalc-range { -webkit-appearance: none; appearance: none; width: 100%; height: 7px; border-radius: 999px; outline: none; cursor: pointer; }
.pcalc-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 999px; background: var(--ink); border: 3px solid var(--paper); box-shadow: 0 2px 6px rgba(74,46,28,0.24); cursor: grab; }
.pcalc-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 999px; background: var(--ink); border: 3px solid var(--paper); box-shadow: 0 2px 6px rgba(74,46,28,0.24); cursor: grab; }
.pcalc-range:active::-webkit-slider-thumb { cursor: grabbing; }
.pcalc-range:focus-visible { outline: 2px solid var(--butter-deep); outline-offset: 3px; }
.pcalc-scale { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--ink-mute); margin-top: 6px; font-variant-numeric: tabular-nums; }
.pcalc-result { margin-top: 16px; }
.pcalc-act { margin-top: 15px; }
.pcalc-act-label { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 7px; }
.pcalc-seg { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.pcalc-seg-btn { padding: 9px 8px; border-radius: 9px; border: 1.5px solid var(--rule); background: var(--paper); font-size: 13.5px; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.pcalc-seg-btn:hover { border-color: var(--ink-mute); }
.pcalc-seg-btn.on { border-color: var(--ink); background: var(--ink); color: var(--paper); }
/* Compact result bars inside the calculator (scoped) */
.pcalc-result .shock-row { margin-top: 9px; }
.pcalc-result .shock-row:first-child { margin-top: 0; }
.pcalc-result .shock-rowhead { margin-bottom: 5px; gap: 7px; }
.pcalc-result .shock-ic { width: 16px; height: 16px; font-size: 9.5px; }
.pcalc-result .shock-rowlabel { font-size: 13px; }
.pcalc-result .shock-track { height: 32px; border-radius: 7px; }
.pcalc-result .shock-fill { border-radius: 7px; padding: 0 11px; min-width: 46px; }
.pcalc-result .shock-grams { font-size: 14.5px; }
.pcalc .shock-gap { margin-top: 13px; padding: 11px 14px; border-radius: 10px; gap: 11px; }
.pcalc .shock-gap-num { font-size: clamp(22px, 6vw, 30px); }
.pcalc .shock-gap-txt { font-size: 13.5px; }
/* Subtle text-link CTA — invites the tap, then lets her scroll on */
.pcalc-cta { display: inline-flex; align-items: center; gap: 6px; margin: 14px 0 2px; padding: 0 0 2px; background: none; border: 0; border-bottom: 1.5px solid color-mix(in oklch, var(--green-deep, #1F8A5B) 40%, transparent); border-radius: 0; box-shadow: none; width: auto; min-height: 0; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--green-deep, #1F8A5B); cursor: pointer; transition: color .15s, border-color .15s; }
.pcalc-cta:hover { color: var(--ink); border-color: var(--ink); background: none; transform: none; box-shadow: none; }
@media (prefers-reduced-motion: reduce) { .shock-fill, .shock-gap.in { transition: none; } .pcalc .shock-fill { transition: none; } }
.adv-manifesto--compact { padding: 22px 24px 20px; }
.adv-manifesto--compact h3 { font-size: clamp(22px, 4.6vw, 30px); margin: 0 0 14px; }
.adv-manifesto-chips { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.adv-manifesto-chips li { font-size: 13.5px; font-weight: 600; color: #46291A; background: rgba(255,255,255,0.5); border: 1px solid color-mix(in oklch, var(--butter-deep) 35%, transparent); padding: 5px 12px; border-radius: 999px; }
.adv-manifesto--compact .adv-manifesto-punch { font-size: 16px; }
.adv-manifesto { margin: 30px 0; padding: 30px 30px 28px; border-radius: 18px; background: linear-gradient(158deg, #FBE3C4 0%, #F4C892 100%); border: 1px solid color-mix(in oklch, var(--butter-deep) 48%, transparent); }
.adv-manifesto-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #8A5A2C; margin: 0 0 12px; }
.adv-manifesto h3 { font-size: clamp(29px, 6vw, 44px); font-weight: 800; line-height: 1.0; letter-spacing: -0.025em; color: #46291A; margin: 0 0 20px; text-wrap: balance; }
.adv-manifesto-sub { font-size: 16px; font-weight: 700; color: #5C3823; margin: 0 0 14px; }
.adv-manifesto-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px; }
.adv-manifesto-list li { position: relative; padding-left: 28px; font-size: 17px; font-weight: 600; color: #46291A; line-height: 1.25; }
.adv-manifesto-list li::before { content: ""; position: absolute; left: 0; top: 0; width: 19px; height: 19px; border-radius: 999px; background: #4A2E1C; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4 4 10-10' fill='none' stroke='%23FBE3C4' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 13px; background-position: center; background-repeat: no-repeat; }
.adv-manifesto-punch { font-size: 18.5px; line-height: 1.45; color: #46291A; margin: 0; font-weight: 500; text-wrap: pretty; }
.adv-manifesto-punch strong { font-weight: 800; }
/* Manifesto body/chromosome diagram */
.md-diagram { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 10px; margin: 4px 0 22px; padding: 18px 14px; background: color-mix(in oklch, var(--paper) 78%, transparent); border: 1px solid color-mix(in oklch, #46291A 16%, transparent); border-radius: 14px; }
.md-side { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 12px 8px; border-radius: 11px; color: #8A6A4A; text-align: center; }
.md-side--her { color: #46291A; background: color-mix(in oklch, var(--butter-deep) 30%, transparent); box-shadow: inset 0 0 0 1.5px color-mix(in oklch, #46291A 30%, transparent); }
.md-body { width: 38px; height: 60px; display: block; }
.md-chromo { display: flex; gap: 4px; }
.md-chromo svg { width: 17px; height: 17px; }
.md-karyo { font-family: var(--mono); font-size: 15px; font-weight: 700; letter-spacing: 0.08em; line-height: 1; }
.md-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.8; line-height: 1.2; }
.md-nutri { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; margin-top: 2px; }
.md-nutri span { font-size: 11px; font-weight: 700; color: #46291A; background: var(--paper); border-radius: 999px; padding: 3px 9px; line-height: 1.2; }
.md-vs { align-self: center; font-size: 22px; font-weight: 700; color: #8A6A4A; padding: 0 2px; }
@media (max-width: 560px) { .adv-manifesto-list { grid-template-columns: 1fr; gap: 10px; } .md-diagram { gap: 6px; padding: 16px 8px; } .md-nutri span { font-size: 10px; padding: 3px 7px; } }
@media (max-width: 600px) {
  .adv-lead img { max-height: 260px; object-fit: cover; object-position: center 28%; }
  .rec-routine-body { grid-template-columns: 76px 1fr; gap: 13px; }
  .rec-routine-img { width: 76px; height: 76px; }
  .rec-now { font-size: 24px; }
  .rec-routine-list li { font-size: 14px; }
}
.adv-pbreak { margin: 34px 0; }
.adv-clickable { cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, opacity .2s ease; }
.adv-clickable:hover { transform: translateY(-2px); }
.adv-figure.adv-clickable:hover, .adv-lead.adv-clickable:hover, .adv-pbreak-img.adv-clickable:hover { box-shadow: 0 10px 28px rgba(74,46,28,0.14); }
.shock.adv-clickable:hover { box-shadow: 0 10px 28px rgba(74,46,28,0.10); }
a.adv-byline { text-decoration: none; color: inherit; }
a.adv-byline.adv-clickable:hover { transform: none; opacity: 0.82; }
.adv-clickable:focus-visible { outline: 2px solid var(--butter-deep); outline-offset: 3px; }
/* Recommended routine card (simplified-first configurator) */
.rec-routine { border: 2px solid var(--ink); border-radius: 18px; padding: 18px; background: var(--paper); box-shadow: 0 10px 30px rgba(74,46,28,0.10); margin-top: 6px; }
.rec-routine-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.rec-routine-flag { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); background: var(--ink); padding: 5px 11px; border-radius: var(--radius-pill); }
.rec-routine-pouches { font-size: 14px; font-weight: 700; color: var(--ink); }
.rec-routine-body { display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: center; margin-bottom: 16px; }
.rec-routine-img { width: 92px; height: 92px; object-fit: cover; border-radius: 12px; background: var(--bg-deep); display: block; }
.rec-routine-price { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; margin-bottom: 10px; }
.rec-now { font-family: var(--serif); font-weight: 700; font-size: 27px; color: var(--ink); }
.rec-strike { font-size: 14px; color: var(--ink-mute); text-decoration: line-through; }
.rec-day { font-size: 13px; color: var(--ink-mute); }
.rec-routine-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.rec-routine-list li { position: relative; padding-left: 24px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.rec-routine-list li::before { content: ""; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; border-radius: 999px; background: var(--green); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4 4 10-10' fill='none' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 12px; background-position: center; background-repeat: no-repeat; }
.rec-routine-cta { margin-top: 2px; }
.rec-routine-reassure { text-align: center; font-size: 12.5px; color: var(--ink-mute); margin-top: 10px; }
/* Limited summer offer card */
.summer-offer { border: 2px solid var(--ink); border-radius: 18px; overflow: hidden; background: var(--paper); box-shadow: 0 12px 34px rgba(74,46,28,0.13); margin-top: 6px; }
.summer-banner { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 16px; background: var(--ink); color: var(--paper); flex-wrap: wrap; }
.summer-banner-label { font-family: var(--mono); font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; }
.summer-banner-count { font-family: var(--mono); font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; color: #FFE0B8; }
.summer-count { font-variant-numeric: tabular-nums; background: rgba(255,255,255,0.14); padding: 2px 7px; border-radius: 6px; letter-spacing: 0.04em; }
.summer-head { display: flex; align-items: center; gap: 13px; padding: 16px 18px 4px; }
.summer-badge { flex: none; display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--paper); background: #C4502E; border-radius: 12px; padding: 9px 12px; letter-spacing: -0.01em; }
.summer-title { font-size: 21px; font-weight: 800; color: var(--ink); margin: 0; letter-spacing: -0.01em; line-height: 1.1; }
.summer-sub { font-size: 13.5px; color: var(--ink-mute); margin: 2px 0 0; }
.summer-offer .rec-routine-body { padding: 14px 18px 4px; }
.summer-save { display: inline-block; font-size: 13.5px; font-weight: 700; color: #1F8A5B; background: color-mix(in oklch, var(--green) 16%, transparent); padding: 3px 10px; border-radius: 999px; margin: 2px 0 10px; }
.summer-offer .rec-routine-cta { margin: 4px 18px 0; width: calc(100% - 36px); }
.summer-offer .rec-routine-reassure { padding: 0 18px; }
.summer-single { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; padding: 13px 18px; border-top: 1px solid var(--rule); background: var(--bg-deep); text-decoration: none; color: var(--ink-soft); transition: background .15s; }
.summer-single:hover { background: var(--bg-deeper, var(--rule-soft)); }
.summer-single-txt { font-size: 13.5px; }
.summer-perportion { font-size: 13px; color: var(--ink-soft); font-weight: 600; margin: 2px 0 10px; }
.summer-scarcity { display: flex; align-items: center; gap: 8px; margin: 12px 18px 0; padding: 9px 14px; background: color-mix(in oklch, #C4502E 9%, var(--paper)); border: 1px solid color-mix(in oklch, #C4502E 24%, transparent); border-radius: 9px; font-size: 13px; line-height: 1.35; color: #8A3A1C; text-wrap: pretty; }
.summer-scarcity strong { color: #B0431F; font-weight: 700; }
/* Lena Gercke endorsement band (celebrity trust anchor) */
.lena { background: linear-gradient(165deg, var(--butter) 0%, var(--paper) 100%); padding: 52px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.lena-inner { display: grid; grid-template-columns: 200px 1fr; gap: 36px; align-items: center; max-width: 880px; }
.lena-photo { border-radius: 16px; overflow: hidden; aspect-ratio: 1; background: var(--bg-deep); box-shadow: 0 12px 30px rgba(74,46,28,0.16); }
.lena-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lena-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--butter-deep); margin: 0 0 12px; }
.lena-quote { font-family: var(--serif); font-size: clamp(20px, 3.2vw, 27px); font-weight: 500; font-style: italic; line-height: 1.32; color: var(--ink); margin: 0 0 18px; text-wrap: pretty; letter-spacing: -0.01em; }
.lena-name { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; margin-bottom: 16px; }
.lena-name strong { font-size: 16px; font-weight: 700; color: var(--ink); }
.lena-name span { font-size: 14px; color: var(--ink-mute); }
.lena-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 600; color: var(--green-deep, #1F8A5B); text-decoration: none; border-bottom: 1.5px solid color-mix(in oklch, var(--green-deep, #1F8A5B) 40%, transparent); padding-bottom: 2px; transition: color .15s, border-color .15s; }
.lena-cta:hover { color: var(--ink); border-color: var(--ink); }
@media (max-width: 640px) {
  .lena { padding: 40px 0; }
  .lena-inner { grid-template-columns: 1fr; gap: 22px; max-width: 420px; text-align: center; }
  .lena-photo { width: 150px; margin: 0 auto; }
  .lena-name { justify-content: center; }
}
/* "So einfach geht's" 3-step section (Vetain-style friction reducer) */
.howto { background: var(--paper); padding: 56px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.howto-kicker { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--butter-deep); text-align: center; margin: 0 0 10px; }
.howto-h { font-size: clamp(24px, 4vw, 34px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); text-align: center; margin: 0 auto 38px; max-width: 18ch; text-wrap: balance; }
.howto-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 920px; margin: 0 auto; }
.howto-step { text-align: center; padding: 0 8px; }
.howto-num { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 999px; background: var(--ink); color: var(--paper); font-family: var(--serif); font-weight: 700; font-size: 21px; margin-bottom: 16px; }
.howto-step-h { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.01em; }
.howto-step-p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 0; text-wrap: pretty; }
.howto-cta { display: block; width: max-content; max-width: 100%; margin: 38px auto 0; }
@media (max-width: 680px) {
  .howto { padding: 44px 0; }
  .howto-steps { grid-template-columns: 1fr; gap: 28px; max-width: 360px; }
  .howto-step { display: grid; grid-template-columns: 46px 1fr; gap: 4px 16px; text-align: left; align-items: center; }
  .howto-num { grid-row: span 2; margin-bottom: 0; }
  .howto-step-h { margin: 0; }
  .howto-cta { width: 100%; text-align: center; }
}
/* Kölner Liste trust badge (buy box) */
.koelner-trust { display: flex; align-items: center; gap: 13px; margin-top: 12px; padding: 12px 16px; background: var(--bg-deep); border: 1px solid var(--rule); border-radius: 10px; text-decoration: none; color: var(--ink-soft); transition: border-color .15s; }
.koelner-trust:hover { border-color: var(--ink-mute); }
.koelner-trust-logo { width: 52px; height: 52px; flex: none; }
.koelner-trust-txt { font-size: 13px; line-height: 1.4; text-wrap: pretty; }
.koelner-trust-txt strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 1px; }
.summer-single-price { font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap; }
@media (max-width: 480px) {
  .summer-banner { padding: 8px 13px; }
  .summer-banner-label { font-size: 10.5px; }
  .summer-head { padding: 14px 14px 2px; }
  .summer-title { font-size: 19px; }
  .summer-offer .rec-routine-cta { margin: 4px 14px 0; width: calc(100% - 28px); }
  .summer-single { padding: 12px 14px; }
  .summer-single-txt { font-size: 12.5px; }
}
.customize-head { display: flex; align-items: center; gap: 14px; margin: 30px 0 6px; }
.customize-head::before, .customize-head::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.customize-head span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); white-space: nowrap; }
.adv-pbreak-eyebrow { font-size: clamp(20px, 3.2vw, 26px); font-weight: 700; letter-spacing: -0.015em; color: var(--ink); margin: 0 0 16px; text-wrap: balance; }
.adv-pbreak-card { display: grid; grid-template-columns: 168px 1fr; gap: 22px; align-items: center; padding: 20px; border: 1px solid var(--rule); border-radius: 18px; background: linear-gradient(165deg, var(--paper) 0%, var(--bg-deep) 100%); }
.adv-pbreak-img { border-radius: 13px; overflow: hidden; background: var(--bg-deep); aspect-ratio: 1; }
.adv-pbreak-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.adv-pbreak-body { display: flex; flex-direction: column; gap: 16px; }
.adv-pbreak-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.adv-pbreak-list li { position: relative; padding-left: 26px; font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.adv-pbreak-list li::before { content: ""; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 999px; background: var(--green); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4 4 10-10' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 13px; background-position: center; background-repeat: no-repeat; }
.adv-pbreak-cta { align-self: flex-start; }
@media (max-width: 560px) {
  .adv-pbreak-card { grid-template-columns: 1fr; gap: 18px; text-align: left; }
  .adv-pbreak-img { width: 150px; aspect-ratio: 1; }
  .adv-pbreak-cta { width: 100%; }
}
.adv-softcta { margin: 30px 0; padding: 26px 24px; border-radius: 15px; background: var(--ink); color: var(--paper); text-align: center; }
.adv-softcta p { font-size: 19px; font-style: italic; line-height: 1.4; margin: 0 0 16px; color: var(--paper); }
@media (max-width: 600px) {
  .adv { padding: 30px 0 40px; }
  .adv-wrap { padding: 0 18px; }
  .adv-body p { font-size: 16.5px; }
  .adv-item-num { font-size: 38px; }
  .adv-item-h { font-size: 19px; }
  .adv-lead { aspect-ratio: 4/3; margin-bottom: 22px; }
}

/* Advertorial intro — symptom list + checkmark list + social proof (new top) */
.adv-feel-list { margin: 4px 0 18px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.adv-feel-list li { position: relative; padding-left: 22px; font-size: 17.5px; line-height: 1.5; color: var(--ink-soft); text-wrap: pretty; }
.adv-feel-list li::before { content: ""; position: absolute; left: 3px; top: 11px; width: 7px; height: 7px; border-radius: 999px; background: var(--butter-deep); }
.adv-check-list { margin: 14px 0 8px; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 11px 26px; }
.adv-check-list li { position: relative; padding-left: 26px; font-size: 16.5px; font-weight: 600; color: var(--ink); }
.adv-check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.adv-socialproof { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; margin: 22px 0 28px; padding: 16px 20px; background: var(--bg-soft); border: 1px solid var(--rule); border-radius: 13px; }
.adv-socialproof .adv-stars { font-size: 17px; letter-spacing: 3px; }
.adv-socialproof p { margin: 0; font-size: 15px; line-height: 1.4; color: var(--ink-soft); }
.adv-socialproof strong { color: var(--ink); }

/* ═══════════════ Outcome band (between listicle & product) ═══════════════ */
.outcome { background: var(--bg-deep); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 66px 0; }
.outcome-wrap { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.outcome-kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-deep); margin: 0 0 10px; }
.outcome-h { font-size: clamp(28px, 4.6vw, 44px); font-weight: 700; letter-spacing: -0.018em; line-height: 1.08; margin: 0 0 38px; color: var(--ink); text-wrap: balance; }
.outcome-list { list-style: none; margin: 0 auto 40px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 36px; max-width: 780px; text-align: left; }
.outcome-item { display: flex; align-items: flex-start; gap: 14px; font-size: 18px; line-height: 1.4; color: var(--ink); font-weight: 500; text-wrap: pretty; }
.outcome-check { flex: 0 0 auto; width: 26px; height: 26px; margin-top: 1px; }
.outcome-cta { display: flex; justify-content: center; }
@media (max-width: 640px) {
  .outcome { padding: 46px 0; }
  .outcome-list { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .outcome-item { font-size: 16.5px; }
}

/* Configurator reassurance microcopy */
.flavor-prepared { margin: 0 0 18px; padding: 12px 16px; background: var(--butter); border-radius: 10px; font-size: 14.5px; line-height: 1.45; color: var(--ink); text-wrap: pretty; }
.flavor-prepared strong { font-weight: 700; }

/* ═══════════ Advertorial v3 — recap, comparison, founder, layers, honesty ═══════════ */
.adv-editorial { margin: 8px 0 24px; border-radius: 16px; overflow: hidden; background: var(--bg-deep); }
.adv-editorial img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.adv-editorial--cap { margin: 4px 0 18px; }
.adv-editorial--cap figcaption { padding: 10px 14px 12px; font-size: 12.5px; line-height: 1.45; color: var(--ink-mute); text-wrap: pretty; }
.adv-recap { margin: 24px 0 4px; padding: 22px 24px; border-radius: 16px; background: var(--bg-deep); border: 1px solid var(--rule); }
.adv-recap-h { font-size: 19px; font-weight: 800; color: var(--ink); margin: 0 0 10px; }
.adv-recap p { font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 10px; text-wrap: pretty; }
.adv-recap-punch { font-size: 17.5px !important; font-weight: 700; color: var(--ink) !important; margin-bottom: 0 !important; }

/* Comparison table */
.pcmp { margin: 22px 0 8px; border: 1px solid var(--rule); border-radius: 14px; overflow: hidden; background: var(--paper); }
.pcmp-row { display: grid; grid-template-columns: 1.55fr 0.9fr 0.9fr 0.9fr 1fr; align-items: center; border-top: 1px solid var(--rule-soft); }
.pcmp-row:first-child { border-top: 0; }
.pcmp-head { background: var(--bg-deep); }
.pcmp-head .pcmp-cell { font-family: var(--mono); font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em; text-transform: none; color: var(--ink-soft); padding: 11px 4px; }
.pcmp-head .pcmp-eve { color: var(--ink); }
.pcmp-feat { font-size: 13px; line-height: 1.3; font-weight: 600; color: var(--ink); padding: 13px 12px 13px 14px; text-wrap: pretty; }
.pcmp-cell { display: flex; align-items: center; justify-content: center; text-align: center; padding: 13px 4px; min-height: 48px; }
.pcmp-eve { background: color-mix(in oklch, var(--butter) 55%, transparent); }
.pcmp-head .pcmp-eve { background: color-mix(in oklch, var(--butter-deep) 30%, transparent); }
.pcmp-ic { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.pcmp-ic.yes { background: var(--green); color: #fff; }
.pcmp-ic.no { background: rgba(74,58,51,0.12); color: var(--ink-mute); }
.pcmp-ic.part { background: rgba(74,58,51,0.08); color: var(--ink-mute); font-weight: 700; }

/* Advertorial expert quote (moved out of buy box → after comparison) */
.adv-expert { display: flex; gap: 16px; align-items: flex-start; margin: 22px 0 4px; padding: 20px 22px; background: var(--bg-deep); border: 1px solid var(--rule); border-left: 3px solid var(--cocoa, var(--butter-deep)); border-radius: 0 12px 12px 0; }
.adv-expert-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex: none; border: 2px solid var(--paper); background: var(--rule-soft); }
.adv-expert-body { flex: 1; min-width: 0; }
.adv-expert-body blockquote { margin: 0 0 10px; font-family: var(--serif); font-size: 17px; font-style: italic; line-height: 1.45; color: var(--ink); text-wrap: pretty; }
.adv-expert-body figcaption { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-mute); font-weight: 600; flex-wrap: wrap; }
.adv-expert-body figcaption strong { color: var(--ink); font-weight: 700; }
.adv-expert-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: none; }
@media (max-width: 480px) { .adv-expert { padding: 18px 16px; gap: 13px; } .adv-expert-img { width: 50px; height: 50px; } .adv-expert-body blockquote { font-size: 15.5px; } }

/* Founder block */
.adv-founder { margin: 8px 0; padding: 34px 0 4px; border-top: 1px solid var(--rule-soft); }
.adv-founder-photo { display: block; border-radius: 16px; overflow: hidden; margin: 16px 0 8px; background: var(--bg-deep); }
.adv-founder-photo img { width: 100%; height: auto; display: block; aspect-ratio: 16/10; object-fit: cover; object-position: center 18%; }

/* Two-layer product explainer */
.adv-layers { margin: 8px 0; padding: 34px 0 4px; border-top: 1px solid var(--rule-soft); }
.adv-layers-img { display: block; border-radius: 16px; overflow: hidden; margin: 16px 0 10px; background: var(--bg-deep); }
.adv-layers-img img { width: 100%; height: auto; display: block; aspect-ratio: 16/10; object-fit: cover; }
.adv-layers-tags { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--green-deep); margin: 0 0 18px; text-align: center; }
.adv-layer { margin: 16px 0; padding: 22px 22px 20px; border-radius: 16px; background: var(--paper); border: 1px solid var(--rule); }
.adv-layer-tag { display: inline-block; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); background: var(--ink); padding: 4px 11px; border-radius: var(--radius-pill); margin-bottom: 12px; }
.adv-layer h4 { font-size: 19px; font-weight: 700; line-height: 1.2; color: var(--ink); margin: 0 0 12px; letter-spacing: -0.01em; text-wrap: balance; }
.adv-layer p { font-size: 16px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 11px; text-wrap: pretty; }
.adv-layer p:last-child { margin-bottom: 0; }
.adv-layer strong { color: var(--ink); font-weight: 700; }
.adv-layer-meta { font-size: 14px !important; color: var(--ink-mute) !important; padding-top: 6px; border-top: 1px solid var(--rule-soft); margin-top: 14px !important; }
.adv-micros { display: flex; flex-direction: column; gap: 14px; margin: 16px 0; }
.adv-micro-group { }
.adv-micro-h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-deep); margin: 0 0 8px !important; }
.adv-micro-group ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 14px; }
.adv-micro-group li { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; padding: 7px 11px; background: var(--bg-deep); border-radius: 9px; font-size: 14px; }
.adv-micro-group li b { font-weight: 600; color: var(--ink); }
.adv-micro-group li span { font-family: var(--mono); font-size: 12.5px; font-weight: 700; color: var(--green-deep); white-space: nowrap; }

/* Honesty box */
.adv-honesty { margin: 26px 0; padding: 22px 24px; border-radius: 16px; background: var(--bg-deep); border: 1px dashed var(--rule); }
.adv-honesty-h { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 10px; }
.adv-honesty p:not(.adv-honesty-h) { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0; text-wrap: pretty; }
.adv-koelner { display: flex; align-items: center; gap: 16px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--rule); text-decoration: none; color: var(--ink-soft); }
.adv-koelner img { width: 76px; height: 76px; flex: none; }
.adv-koelner span { font-size: 14px; line-height: 1.5; text-wrap: pretty; }
.adv-koelner strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }
.adv-koelner-more { display: block; margin-top: 6px; font-weight: 700; color: var(--cocoa, #1F4E79); font-size: 13px; }
@media (max-width: 480px) { .adv-koelner { gap: 13px; } .adv-koelner img { width: 62px; height: 62px; } .adv-koelner span { font-size: 13px; } }

/* Pflichtangaben */
.adv-pflicht { font-size: 11.5px; line-height: 1.55; color: var(--ink-mute); margin: 0 0 18px; padding-bottom: 16px; border-bottom: 1px solid var(--rule-soft); text-wrap: pretty; }

/* Collapsible configurator (radical simplification) */
.customize-wrap { margin: 22px 0 4px; border-top: 1px solid var(--rule); }
.customize-summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 2px; cursor: pointer; list-style: none; font-size: 15px; font-weight: 600; color: var(--ink-soft); user-select: none; }
.customize-summary::-webkit-details-marker { display: none; }
.customize-summary:hover { color: var(--ink); }
.customize-chevron { font-size: 20px; line-height: 1; transition: transform .2s ease; color: var(--ink-mute); }
.customize-wrap[open] .customize-chevron { transform: rotate(90deg); }
.customize-inner { padding-top: 8px; }
@media (max-width: 560px) {
  .pcmp-row { grid-template-columns: 1.4fr 0.85fr 0.85fr 0.85fr 0.95fr; }
  .pcmp-feat { font-size: 11.5px; padding: 11px 6px 11px 10px; }
  .pcmp-head .pcmp-cell { font-size: 10px; padding: 9px 2px; }
  .pcmp-ic { width: 20px; height: 20px; font-size: 11px; }
  .pcmp-cell { padding: 11px 2px; min-height: 44px; }
  .adv-micro-group ul { grid-template-columns: 1fr; }
}
