@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Figtree:wght@500;600;700;800&display=swap");

:root {
  --white: #ffffff;
  --ink: #0d0d0c;
  --ink-80: #38382f;
  --ink-60: #6b6b60;
  --ink-40: #9b9b90;
  --ink-20: #d8d6ce;
  --ink-10: #eae8e1;
  --shell: #f7f5f0;

  --sun: #ffc61e;
  --sun-press: #e9ae00;
  --sun-tint: #fff2cc;
  --zest: #ff7a1a;
  --zest-press: #e8650a;
  --zest-tint: #ffe8d6;
  --sky: #8cb0e8;
  --sky-press: #6e99dc;
  --sky-tint: #e5edfa;
  --sprout: #79c47e;
  --sprout-press: #5faf65;
  --sprout-tint: #e3f2e4;

  --text-primary: var(--ink);
  --text-secondary: var(--ink-60);
  --text-disabled: var(--ink-40);
  --text-inverse: var(--white);
  --surface-page: var(--white);
  --surface-sunk: var(--shell);
  --surface-card: var(--white);
  --surface-invert: var(--ink);
  --surface-highlight: var(--sun-tint);
  --border-hairline: var(--ink-20);
  --border-input: var(--ink-40);
  --border-strong: var(--ink);
  --action-primary-bg: var(--ink);
  --action-primary-bg-press: var(--ink-80);
  --action-primary-fg: var(--white);
  --action-accent-bg: var(--sun);
  --action-accent-bg-press: var(--sun-press);
  --action-accent-fg: var(--ink);
  --status-success: #2c7a33;
  --status-success-tint: #e3f2e4;
  --status-error: #b32d18;
  --status-error-tint: #fbe4df;

  --font-display: "Outfit", "Avenir Next", "Trebuchet MS", sans-serif;
  --font-text: "Figtree", "Avenir Next", Helvetica, sans-serif;
  --font-label: var(--font-text);
  --font-mono: var(--font-label);
  --weight-text: 500;
  --weight-medium: 600;
  --weight-bold: 700;
  --weight-display: 800;
  --weight-max: 900;
  --size-hero: 92px;
  --size-display: 68px;
  --size-h1: 48px;
  --size-h2: 36px;
  --size-h3: 28px;
  --size-h4: 24px;
  --size-body-lg: 22px;
  --size-body: 20px;
  --size-meta: 17px;
  --size-hero-m: 46px;
  --size-display-m: 38px;
  --size-h1-m: 32px;
  --size-h2-m: 28px;
  --size-h3-m: 24px;
  --size-h4-m: 22px;
  --leading-tight: 0.94;
  --leading-snug: 1.1;
  --leading-heading: 1.15;
  --leading-body: 1.55;
  --tracking-display: -0.03em;
  --tracking-heading: -0.02em;
  --tracking-mono: 0.04em;
  --tracking-caps: 0.08em;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --radius-button: 12px;
  --radius-input: 10px;
  --radius-card: 16px;
  --radius-image: 12px;
  --shadow-card: 0 1px 2px rgba(13, 13, 12, 0.04), 0 8px 24px rgba(13, 13, 12, 0.05);
  --shadow-raised: 0 2px 4px rgba(13, 13, 12, 0.05), 0 16px 40px rgba(13, 13, 12, 0.08);
  --shadow-focus: 0 0 0 3px var(--white), 0 0 0 6px var(--ink);
  --duration-fast: 160ms;
  --duration-base: 240ms;
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --press-scale: 0.985;
  --page-max: 1523px;
  --page-gutter: 48px;
  --page-gutter-mobile: 20px;
  --section-gap: 112px;
  --section-gap-mobile: 64px;
  --tap-min: 48px;

  /* Legacy aliases keep the approved clone's existing class architecture intact. */
  --pink: var(--sun);
  --soft-pink: var(--shell);
  --pale: var(--white);
  --mint: var(--ink);
  --mint-dark: var(--ink-80);
  --text: var(--ink);
  --muted: var(--ink-60);
  --yellow: var(--sun);
  --line: var(--ink-20);
  --orange: var(--zest);
  --hm-pink: var(--sun);
  --hm-soft-pink: var(--shell);
  --hm-mint: var(--ink);
  --hm-mint-dark: var(--ink-80);
  --hm-cream: var(--sun-tint);
  --hm-black: var(--ink);
  --hm-grey: var(--ink-60);
  --hm-border: var(--ink-20);
  --hm-shadow: var(--shadow-card);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text-primary);
  background: var(--surface-page);
  font-family: var(--font-text);
  font-size: var(--size-body);
  font-weight: var(--weight-text);
  line-height: var(--leading-body);
}
img { display: block; max-width: 100%; }
button, a, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
a:not(.cta):not(.primary-btn):not(.secondary-btn):not(.text-btn):not(.cart-link):hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  letter-spacing: var(--tracking-heading);
  line-height: var(--leading-heading);
}
.container { width: min(1254px, calc(100% - 40px)); margin: auto; }
.narrow { width: min(952px, calc(100% - 40px)); margin: auto; }
.center { text-align: center; }
.pink { color: var(--ink); }

.topbar {
  min-height: 48px;
  padding: 10px var(--page-gutter);
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--size-meta);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-mono);
}
.nav {
  height: 98px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-hairline);
  background: var(--white);
  position: relative;
  z-index: 10;
}
.nav-inner {
  width: min(1720px, calc(100% - 70px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: var(--size-meta);
  font-weight: var(--weight-medium);
}
.nav-right { justify-content: flex-end; }
.nav-logo {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: var(--weight-max);
  letter-spacing: -0.04em;
  text-align: center;
  text-transform: uppercase;
}
.nav-pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  background: var(--sun);
  color: var(--ink);
  border-radius: var(--radius-button);
  font-weight: var(--weight-bold);
}
.icon-link { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; min-height: 40px; }
.nav-icon-svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.nav-icon-svg.bag-icon { width: 27px; height: 27px; stroke-width: 1.7; }
.nav-chevron { display: inline-block; margin-left: 3px; font-size: 18px; line-height: 1; }
.cart-link { min-height: 48px; padding: 0 13px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border-strong); border-radius: var(--radius-button); background: var(--sun); color: var(--ink); font-weight: var(--weight-bold); }
.cart-link:hover { background: var(--sun-press); }
.menu-btn {
  display: none;
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  background: transparent;
  border: 0;
  color: var(--ink);
  border-radius: var(--radius-button);
  cursor: pointer;
}
.menu-btn:hover { background: var(--ink-10); }

.hero { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); background: var(--shell); }
.hero-media {
  position: relative;
  min-height: 600px;
  background: var(--shell) url('../images/sunnycells-hero-4x3-new.jpg') center center / cover no-repeat;
}
.hero-review { position: absolute; left: 18px; bottom: 18px; z-index: 1; width: min(310px, calc(100% - 36px)); padding: 14px 16px; background: rgba(255, 255, 255, .97); border: 1px solid var(--border-hairline); border-radius: var(--radius-lg); box-shadow: var(--shadow-raised); color: var(--ink); text-align: center; }
.hero-review-top { display: flex; align-items: center; justify-content: center; gap: 9px; margin-bottom: 5px; }
.hero-review-stars { color: var(--sun-press); font-size: 20px; letter-spacing: 1px; line-height: 1; }
.hero-review-buyer { padding: 3px 8px; border: 1px solid var(--ink-40); border-radius: var(--radius-pill); font-size: 10px; font-weight: var(--weight-medium); }
.hero-review > strong { display: block; margin-bottom: 5px; font-size: 14px; }
.hero-review p { margin: 0; font-size: 12px; line-height: 1.35; }
.hero-review-author { display: block; margin-top: 5px; font-size: 11px; font-weight: var(--weight-bold); }
.hero-copy {
  width: auto;
  margin: 0;
  padding: 26px clamp(24px, 4vw, 56px) 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 0;
  background: var(--surface-page);
  border-left: 1px solid var(--border-hairline);
}
.hero h1 {
  width: 100%;
  max-width: 640px;
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: var(--tracking-heading);
  text-transform: none;
  overflow-wrap: anywhere;
}
.hero-intro { width: 100%; max-width: 640px; margin: 0 auto 14px; font-family: var(--font-text); font-size: 17px; line-height: 1.55; text-align: left; overflow-wrap: anywhere; }
.hero strong { font-weight: var(--weight-bold); }
.hero-copy > strong { width: 100%; margin: 0 0 10px; font-family: var(--font-text); font-size: 17px; line-height: 1.45; overflow-wrap: anywhere; }
.check-grid {
  width: 100%;
  max-width: 620px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
  text-align: left;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
}
.check-grid div::before, .benefit-list li::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-xs);
  font-size: 16px;
  font-weight: var(--weight-bold);
}
.cta, .primary-btn, .secondary-btn, .text-btn {
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-button);
  font-family: var(--font-text);
  font-size: var(--size-body);
  font-weight: var(--weight-bold);
  line-height: 1;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-standard), transform 90ms var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}
.cta {
  padding: 0 28px;
  background: var(--action-primary-bg);
  color: var(--action-primary-fg);
  border: 2px solid var(--action-primary-bg);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
}
.cta:hover { background: var(--action-primary-bg-press); transform: translateY(-2px); }
.cta:active, .primary-btn:active, .secondary-btn:active { transform: scale(var(--press-scale)); }
.cta:focus-visible, .primary-btn:focus-visible, .secondary-btn:focus-visible, .text-btn:focus-visible, .menu-btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}
.hero .cta { width: min(640px, 100%); }
.hero .cta {
  min-height: 64px;
  background: var(--action-primary-bg);
  border-color: var(--action-primary-bg);
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-card);
  font-size: var(--size-meta);
  letter-spacing: var(--tracking-caps);
}
.hero .cta:hover { background: var(--action-primary-bg-press); border-color: var(--action-primary-bg-press); }
.guarantee { margin-top: 12px; font-size: var(--size-meta); font-weight: var(--weight-medium); }
.guarantee::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-xs);
  font-weight: var(--weight-bold);
}
.hero .check-grid div::before,
.hero .guarantee::before {
  content: '✓';
  width: 16px;
  height: 16px;
  margin-right: 7px;
  background: var(--sun);
  color: var(--ink);
  border-radius: var(--radius-xs);
  font-size: 11px;
  vertical-align: -1px;
}
.hero .guarantee { font-size: 16px; font-style: italic; }

.results-strip { padding: 28px 20px 32px; background: var(--sun); text-align: center; }
.results-strip h2 { margin: 0 0 20px; font-size: var(--size-h2); text-transform: uppercase; }
.stat-row { width: min(930px, 100%); margin: auto; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.stat { flex: 1 1 0; min-width: 0; max-width: 300px; min-height: 84px; display: flex; align-items: stretch; overflow: hidden; background: var(--white); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); text-align: left; }
.stat b { min-width: 100px; padding: 9px 18px; display: grid; place-items: center; background: var(--ink); color: var(--white); font-family: var(--font-display); font-size: 28px; font-weight: var(--weight-max); }
.stat span { flex: 1; padding: 10px 18px; display: flex; align-items: center; font-size: var(--size-body); line-height: 1.35; }

.media { padding: 30px 0 42px; background: var(--white); text-align: center; }
.media h2 { margin: 0 0 20px; font-size: var(--size-h3); text-transform: none; }
.media-grid { max-width: 1200px; margin: auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.media-card { min-width: 0; min-height: 220px; padding: 26px 16px 30px; background: #fafafa; }
.media-card-logo { width: 100%; height: 42px; display: block; margin: 0 auto 14px; object-fit: contain; object-position: center; }
.media-card p { margin: 0; font-size: 16px; font-style: italic; line-height: 1.45; overflow-wrap: anywhere; }

.reviews-intro { padding: 34px 0 28px; background: var(--shell); }
.reviews-intro h2 { max-width: 900px; margin: 0 auto 14px; font-size: 20px; line-height: 1.2; text-align: center; text-transform: none; }
.reviews-intro h2 span { display: block; margin-top: 22px; color: var(--ink); font-size: 36px; line-height: 1.42; text-transform: none; }
.subcopy { max-width: 900px; margin: 0 auto 24px; text-align: center; font-size: 18px; line-height: 1.4; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.review-card { padding: 24px 32px; background: var(--white); border: 1px solid var(--border-hairline); border-radius: var(--radius-xs); box-shadow: none; transition: box-shadow var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard); }
.review-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.review-card.wide { grid-column: 1 / -1; }
.review-meta { display: flex; align-items: center; gap: 8px; font-size: var(--size-meta); }
.buyer { padding: 4px 10px; color: var(--ink); background: var(--white); border: 1px solid var(--ink-40); border-radius: var(--radius-pill); }
.stars { color: var(--sun); font-size: 24px; letter-spacing: 1px; }
.review-card h3 { margin: 3px 0 4px; font-size: 18px; }
.review-card p { margin: 0; font-size: 17px; line-height: 1.55; }

.story { padding: 56px 0 42px; background: var(--white); text-align: center; }
.story h2 { max-width: 800px; margin: 0 auto 6px; color: var(--ink); font-size: var(--size-display); line-height: var(--leading-tight); text-transform: uppercase; }
.story .lead { font-size: var(--size-body-lg); }
.story-chart { width: 520px; max-width: 100%; margin: 26px auto 22px; }
.story-text { max-width: 900px; margin: auto; font-size: var(--size-body); }
.story-text p { margin: 0 0 20px; }
.story-text .underline { font-size: var(--size-body-lg); font-weight: var(--weight-bold); text-decoration: underline; text-underline-offset: 4px; }
.story .cta { width: min(480px, 100%); margin-top: 10px; }
.legacy-story { display: none; }
.story-reference { padding: 34px 0 42px; background: var(--white); }
.story-reference h2 { max-width: 760px; margin: 0 auto 4px; color: var(--ink); font-size: 36px; line-height: 1.2; text-transform: none; }
.story-reference .lead { margin: 0 0 12px; color: var(--ink-60); font-size: 18px; }
.story-reference .story-chart { width: 650px; margin: 12px auto 16px; border-radius: var(--radius-lg); }
.story-reference > .narrow > p:not(.lead), .story-reference .story-text { max-width: 900px; margin: 0 auto; font-size: 18px; line-height: 1.5; }
.story-reference .story-text p { margin: 0 0 26px; }
.story-alert, .story-outline { max-width: 900px; margin: 20px auto; padding: 18px 24px; text-align: center; font-size: 19px; line-height: 1.45; }
.story-alert { background: var(--zest); color: var(--white); }
.story-outline { border: 1px solid var(--zest); background: var(--white); }
.story-symptoms { display: flex; max-width: 700px; margin: 0 auto 28px; align-items: center; justify-content: center; gap: 20px; text-align: left; }
.story-sad { font-size: 58px; }
.story-reassure { margin: 26px auto 30px; color: var(--ink); font-size: 22px; line-height: 1.45; text-align: center; }
.story-reference .underline { font-size: 22px; }
.story-reference .cta { width: min(480px, 100%); margin-top: 8px; }

.good-news { padding: 42px 20px 12px; background: var(--shell); text-align: center; }
.good-news .eyebrow { color: var(--sun-press); font-size: 22px; font-weight: var(--weight-bold); letter-spacing: 0; }
.good-news h2 { max-width: 820px; margin: 18px auto 24px; font-size: 36px; line-height: 1.25; text-transform: none; }
.product-story { padding: 0 20px 46px; background: var(--shell); }
.product-story-inner { max-width: 860px; margin: auto; display: grid; grid-template-columns: 325px 1fr; gap: 36px; align-items: center; }
.product-story img { width: 325px; height: 460px; object-fit: cover; border-radius: var(--radius-lg); }
.product-story p { margin: 0 0 24px; font-size: 18px; line-height: 1.45; }
.product-story .cta { width: 100%; margin-top: 6px; }
.facts-bar { padding: 18px 20px 22px; background: var(--sun); color: var(--ink); text-align: center; }
.facts-bar h3 { margin: 0 0 14px; font-size: var(--size-h4); text-transform: uppercase; }
.facts-pills { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.facts-pills span { padding: 8px 18px; background: var(--white); color: var(--ink); border: 1px solid var(--border-hairline); border-radius: var(--radius-pill); font-size: var(--size-body); }
.breakthroughs { padding: 34px 20px 28px; background: var(--white); border-top: 8px solid var(--ink); }
.breakthroughs-inner { max-width: 960px; margin: auto; text-align: center; }
.breakthroughs h2 { margin: 0 0 18px; font-size: 18px; line-height: 1.25; text-transform: none; }
.breakthroughs h2 span { display: block; color: var(--zest); font-size: 22px; }
.breakthroughs h2 strong { display: block; margin-top: 2px; color: var(--ink); font-size: 18px; }
.breakthrough-list { margin: 0 auto 24px; text-align: left; }
.breakthrough-list article { min-height: 76px; display: grid; grid-template-columns: 98px 1fr; align-items: center; background: var(--shell); }
.breakthrough-list article:nth-child(even) { background: var(--sun-tint); }
.breakthrough-number { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--zest); }
.breakthrough-number small { color: var(--ink); font-size: 10px; line-height: 1.05; text-align: center; }
.breakthrough-number b { font-family: var(--font-display); font-size: 48px; font-weight: var(--weight-medium); line-height: .95; }
.breakthrough-list p { margin: 0; padding: 14px 18px; font-size: 14px; line-height: 1.4; }
.results-callout { max-width: 760px; min-height: 84px; margin: 0 auto 16px; padding: 12px 20px; display: flex; align-items: center; gap: 16px; text-align: left; background: var(--zest); color: var(--white); border-radius: var(--radius-sm); }
.results-callout > b { font-family: var(--font-display); font-size: 54px; line-height: 1; }
.results-callout span { display: grid; gap: 3px; }
.results-callout strong { font-size: 16px; }
.results-callout small { font-size: 11px; line-height: 1.3; }
.breakthroughs .cta { width: min(380px, 100%); }

.ingredients { padding: 42px 0 52px; background: #fff6ea; }
.ingredients h2 { max-width: 900px; margin: 0 auto 10px; font-size: 32px; line-height: 1.15; text-align: center; text-transform: none; }
.ingredients-subtitle { margin: 0 auto 28px; color: var(--ink); font-size: 18px; font-weight: var(--weight-bold); text-align: center; }
.bullets { max-width: 820px; margin: 0 auto 38px; display: grid; gap: 14px; font-size: 15px; line-height: 1.5; }
.bullets b { font-weight: var(--weight-bold); }
.ingredient-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px 50px; }
.ingredient-card { text-align: center; }
.ingredient-card img { width: 230px; height: 230px; margin: 0 auto 18px; object-fit: cover; border-radius: 50%; }
.ingredient-card h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.2; }
.ingredient-card p { max-width: 290px; margin: 0 auto; font-size: 17px; line-height: 1.65; }
.ingredients .cta-wrap { margin-top: 30px; text-align: center; }
.ingredients .cta { width: min(480px, 100%); }

.timeline { padding: 34px 0 42px; background: var(--white); }
.timeline-head { max-width: 760px; margin: 0 auto 28px; display: grid; grid-template-columns: 1fr 260px; gap: 30px; align-items: center; }
.timeline-head h2 { margin: 0; font-size: 28px; line-height: 1.4; text-transform: none; }
.timeline-head h2 .pink { color: var(--zest); }
.timeline-head img { width: 260px; height: 270px; object-fit: cover; border-radius: var(--radius-lg); }
.timeline-list { max-width: 860px; margin: auto; position: relative; padding-left: 50px; }
.timeline-list::before { content: ''; position: absolute; left: 18px; top: 12px; bottom: 24px; width: 2px; background: var(--sun); }
.timeline-step { position: relative; margin: 0 0 14px; padding: 17px 22px; background: var(--sun-tint); border: 0; border-radius: var(--radius-lg); }
.timeline-step::before { content: ''; position: absolute; left: -49px; top: 13px; width: 24px; height: 24px; background: var(--sun); border: 0; border-radius: 50%; }
.timeline-step h3 { margin: 0 0 2px; font-size: 16px; }
.timeline-step p { margin: 0; font-size: 16px; line-height: 1.55; }
.timeline .cta-wrap { margin-top: 32px; text-align: center; }
.timeline .cta { width: min(475px, 100%); }

.benefits { padding: 40px 0 50px; background: var(--shell); }
.benefits h2 { max-width: 900px; margin: 0 auto 36px; font-size: 36px; line-height: 1.2; text-align: center; text-transform: none; }
.benefits h2 span { display: block; color: var(--zest); }
.benefits-grid { max-width: 1050px; margin: auto; display: grid; grid-template-columns: 1fr 520px; gap: 55px; align-items: center; }
.benefits img { width: 520px; border-radius: var(--radius-card); }
.benefit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 28px; }
.benefit-list li { position: relative; padding-left: 32px; font-size: 16px; line-height: 1.5; }
.benefit-list li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; display: grid; place-items: center; background: var(--sun); color: var(--ink); border-radius: 50%; font-size: 14px; font-weight: var(--weight-bold); }
.benefit-list strong { display: block; margin-bottom: 2px; font-size: 16px; }

.friendly { padding: 28px 0 42px; background: var(--white); text-align: center; }
.friendly h2 { margin: 0 0 26px; font-size: 22px; text-transform: none; }
.friendly-grid { max-width: 700px; margin: auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.friendly-icon { font-size: 11px; line-height: 1.15; }
.icon-circle { width: 58px; height: 58px; margin: 0 auto 8px; display: grid; place-items: center; border: 1px solid var(--zest); border-radius: 50%; color: var(--zest); font-size: 25px; font-weight: var(--weight-bold); }
.product-buybox { max-width: 1254px; margin: 28px auto 0; display: grid; grid-template-columns: 1.08fr .92fr; gap: 36px; background: var(--white); border-top: 1px solid var(--border-hairline); text-align: left; }
.product-visual { padding: 0 0 24px; }
.product-visual > img { width: 100%; height: 360px; object-fit: contain; background: var(--shell); }
.product-highlights { display: grid; gap: 5px; padding: 16px 24px 0; font-size: 13px; line-height: 1.3; }
.product-highlights strong { margin-bottom: 4px; font-size: 14px; }
.product-highlights span { color: var(--ink-80); }
.product-highlights span::first-letter { color: var(--sprout-press); }
.trust-badge { width: min(315px, calc(100% - 48px)); margin: 24px 24px 0; padding: 14px; display: grid; grid-template-columns: auto 1fr; gap: 3px 12px; align-items: center; border: 1px solid var(--border-hairline); border-radius: 12px; }
.trust-stars { grid-row: span 2; color: var(--sprout-press); font-size: 20px; letter-spacing: 1px; }
.trust-badge b { font-size: 14px; }
.trust-badge small { color: var(--ink-60); font-size: 10px; }
.product-details { padding: 12px 0 24px; }
.product-details h3 { margin: 0 0 4px; font-size: 28px; }
.product-rating { color: var(--sun-press); font-size: 16px; }
.product-rating small { color: var(--ink-60); font-size: 10px; }
.product-benefits { margin: 14px 0 8px; padding: 0; list-style: none; font-size: 13px; line-height: 1.45; }
.product-benefits li::before { content: '\2713'; margin-right: 12px; color: var(--sprout-press); font-weight: var(--weight-bold); }
.product-details > strong { display: block; margin: 10px 0 6px; font-size: 12px; }
.quantity-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.quantity-card { min-height: 145px; padding: 10px 8px 8px; display: grid; place-items: center; position: relative; background: var(--white); border: 1px solid var(--border-hairline); border-radius: var(--radius-xs); color: var(--ink); cursor: pointer; }
.quantity-card.selected { border: 2px solid var(--ink); background: var(--shell); }
.quantity-card img { width: 76px; height: 78px; object-fit: contain; }
.quantity-card span { font-size: 12px; font-weight: var(--weight-bold); }
.quantity-card small { font-size: 10px; }
.quantity-card em { position: absolute; top: -8px; padding: 3px 8px; background: var(--ink); color: var(--white); border-radius: 9px; font-size: 8px; font-style: normal; font-weight: var(--weight-bold); }
.quantity-card em.value { background: var(--sun); color: var(--ink); }
.purchase-options { display: grid; gap: 8px; }
.purchase-option { min-height: 42px; margin: 0; padding: 10px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; background: var(--sun-tint); border: 1px solid var(--border-hairline); border-radius: var(--radius-xs); color: var(--ink); font: inherit; font-size: 12px; text-align: left; cursor: pointer; }
.purchase-option.selected { border: 2px solid var(--border-strong); }
.purchase-option .purchase-radio { color: var(--ink-60); }
.purchase-option em { margin-left: 6px; padding: 2px 6px; background: var(--sprout); border-radius: 5px; color: var(--ink); font-size: 9px; font-style: normal; font-weight: var(--weight-bold); }
.purchase-option i { flex-basis: 100%; display: block; color: var(--ink-80); font-size: 11px; font-style: normal; line-height: 1.7; }
.purchase-option > strong, .purchase-option > span { color: var(--zest-press); font-size: 16px; }
.purchase-option.muted { background: var(--white); }
.purchase-option.muted span { font-size: 13px; }
.purchase-option small { font-size: 9px; color: var(--ink-60); }
.product-details .cta { width: 100%; margin-top: 10px; font-size: 13px; }
.payment-note { display: block; margin-top: 9px; text-align: center; font-size: 10px; }
.product-promises { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 24px; border-top: 1px solid var(--border-hairline); }
.product-promises span { padding: 12px 6px; display: grid; justify-items: center; gap: 5px; border-right: 1px solid var(--border-hairline); color: var(--ink-60); font-size: 15px; text-align: center; }
.product-promises span:last-child { border-right: 0; }
.product-promises small { font-size: 10px; line-height: 1.25; }
.shipping-banner { padding: 26px; background: var(--ink); color: var(--white); text-align: center; font-size: var(--size-body-lg); font-weight: var(--weight-bold); }

.pricing { padding: 44px 0 40px; background: var(--white); }
.steps { max-width: 900px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); position: relative; text-align: center; font-size: var(--size-meta); }
.steps::after { content: ''; position: absolute; left: 10%; right: 10%; top: 37px; z-index: 0; height: 2px; background: var(--ink-20); }
.step-num { width: 48px; height: 48px; margin: 9px auto; display: grid; place-items: center; position: relative; z-index: 1; background: var(--white); border: 2px solid var(--ink-20); border-radius: 50%; font-weight: var(--weight-bold); }
.step-num.active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.pricing h2 { margin: 28px 0 26px; font-size: var(--size-h2); text-align: center; text-transform: uppercase; }
.price-grid { max-width: 950px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { overflow: hidden; background: var(--white); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); text-align: center; transition: box-shadow var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard); }
.price-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.price-card.popular, .price-card.best { border: 2px solid var(--ink); }
.price-title { padding: 14px 10px; background: var(--shell); color: var(--ink); font-size: var(--size-body); font-weight: var(--weight-bold); letter-spacing: var(--tracking-caps); text-transform: uppercase; }
.popular .price-title { background: var(--sun-tint); color: var(--ink); }
.best .price-title { background: var(--sun); color: var(--ink); }
.bottle-stack { height: 300px; padding: 18px 12px 12px; display: flex; align-items: center; justify-content: center; gap: 0; }
.bottle-stack img { width: min(280px, 100%); height: 252px; object-fit: contain; object-position: center; }
.bottle-stack.multi img { width: min(290px, 100%); height: 228px; margin: 0; }
.best .bottle-stack { position: relative; }
.discount { position: absolute; top: 26px; left: 50%; transform: translateX(-50%); min-width: 86px; min-height: 32px; padding: 7px 12px; display: grid; place-items: center; background: var(--ink); color: var(--white); border-radius: var(--radius-xs); font-size: var(--size-meta); font-weight: var(--weight-bold); line-height: 1.05; }
.price-main { color: var(--ink); font-family: var(--font-display); font-size: 44px; font-weight: var(--weight-max); letter-spacing: var(--tracking-display); }
.per { color: var(--ink-60); font-size: var(--size-meta); }
.price-total { margin: 8px 0; font-size: var(--size-meta); }
.price-card .cta { width: 90%; margin: 4px auto 18px; }
.mini-icons { display: flex; justify-content: center; gap: 35px; padding-bottom: 16px; font-size: var(--size-meta); }
.secure { max-width: 900px; margin: 38px auto 60px; display: flex; align-items: center; justify-content: center; gap: 30px; font-size: var(--size-meta); }
.pay-logos { display: flex; gap: 8px; }
.pay-logos span { padding: 8px 12px; display: grid; place-items: center; background: var(--ink); color: var(--white); border-radius: var(--radius-xs); font-weight: var(--weight-bold); }

.guarantee-section { padding: 0 0 60px; background: var(--white); text-align: center; }
.guarantee-section h2 { margin: 0; font-size: var(--size-h2); line-height: 1.2; text-transform: uppercase; }
.guarantee-section h2 span { display: block; color: var(--ink); }
.guarantee-section > p { max-width: 820px; margin: 12px auto 28px; font-size: var(--size-body); }
.guarantee-grid { max-width: 1000px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g-card { padding: 26px 24px 30px; background: var(--sun-tint); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); }
.g-symbol { font-size: 52px; }
.g-card h3 { font-size: var(--size-h4); }
.g-card p { font-size: var(--size-body); }

.verified { padding: 48px 0 52px; background: var(--shell); }
.verified h2 { margin: 0; font-size: var(--size-h2); line-height: 1.15; text-align: center; text-transform: uppercase; }
.verified-note { margin: 8px 0 24px; font-size: var(--size-meta); text-align: center; }
.rating-box { max-width: 860px; margin: 0 auto 18px; padding: 20px; display: flex; justify-content: space-between; background: var(--white); border: 1px solid var(--border-hairline); font-size: var(--size-meta); }
.rating-box strong { color: var(--ink); font-family: var(--font-display); font-size: var(--size-h4); }
.verified-list { max-width: 860px; margin: auto; display: grid; gap: 16px; }
.verified-review { display: grid; grid-template-columns: 270px 1fr; background: var(--white); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); overflow: hidden; }
.verified-left { padding: 18px; border-right: 1px solid var(--border-hairline); font-size: var(--size-meta); }
.verified-right { padding: 18px 24px; font-size: var(--size-body); }
.verified-right h3 { margin: 3px 0 6px; font-size: var(--size-h4); }
.show-more { margin: 28px 0 20px; font-weight: var(--weight-bold); text-align: center; text-decoration: underline; text-underline-offset: 4px; }
.verified .cta-wrap { text-align: center; }
.verified .cta { width: min(480px, 100%); }

.inside { padding: 38px 0 54px; background: var(--white); text-align: center; }
.inside h2 { margin: 0 0 3px; color: var(--ink); font-size: var(--size-h3); text-transform: uppercase; }
.inside h3 { margin: 0 0 30px; font-size: var(--size-h3); }
.inside-grid { max-width: 850px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.inside-grid img:first-child { width: 430px; border: 1px solid var(--border-input); }
.inside-grid img:last-child { width: 330px; margin: auto; }

.mission { padding: 0 0 48px; background: var(--shell); }
.mission-title { margin: 0 0 32px; padding: 22px; background: var(--sun); color: var(--ink); font-size: var(--size-h2); font-weight: var(--weight-display); text-align: center; text-transform: uppercase; }
.team-grid { max-width: 900px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.team-card { overflow: hidden; background: var(--white); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); }
.team-card img { width: 100%; height: 210px; object-fit: cover; }
.team-copy { padding: 22px 30px 30px; }
.team-copy h3, .team-copy h4 { margin: 0; color: var(--ink); font-size: var(--size-h4); }
.team-copy h4 { margin-bottom: 14px; color: var(--ink-60); font-size: var(--size-body-lg); font-weight: var(--weight-medium); }
.team-copy p { margin: 0; font-size: var(--size-body); line-height: 1.7; }

.faq { padding: 38px 0 20px; background: var(--white); }
.faq h2 { margin: 0 0 25px; font-size: var(--size-h2); line-height: 1.25; text-align: center; text-transform: uppercase; }
.faq h2 span { color: var(--ink); }
.faq-wrap { max-width: 880px; margin: auto; }
.faq-item { border-bottom: 1px solid var(--border-hairline); }
.faq-item summary { min-height: 68px; padding: 18px 6px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--ink); font-size: var(--size-body-lg); font-weight: var(--weight-bold); line-height: 1.3; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span::after { content: '+'; color: var(--ink); font-size: 28px; font-weight: var(--weight-medium); }
.faq-item[open] summary span::after { content: '−'; }
.faq-answer { padding: 0 6px 22px; color: var(--ink-80); font-size: var(--size-body); line-height: var(--leading-body); }
.faq .cta-wrap { margin-top: 22px; text-align: center; }
.faq .cta { width: min(480px, 100%); }

.footer { padding: 80px 0 26px; background: var(--shell); color: var(--ink-80); }
.footer-grid { max-width: 1680px; margin: auto; padding: 0 80px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 70px; }
.footer h3 { margin: 0 0 25px; color: var(--ink); font-size: var(--size-h4); }
.footer p, .footer li { font-size: var(--size-body); line-height: 1.7; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.socials { display: flex; gap: 20px; font-size: 24px; }
.legal { max-width: 1100px; margin: 90px auto 45px; font-size: var(--size-meta); line-height: 1.65; text-align: center; }
.footer-bottom { padding: 0 80px; display: flex; align-items: center; justify-content: space-between; font-size: var(--size-meta); }
.footer-pay { max-width: 100%; display: flex; flex-wrap: wrap; gap: 8px; }
.footer-pay span { padding: 5px 8px; background: var(--white); border: 1px solid var(--border-hairline); border-radius: var(--radius-xs); font-weight: var(--weight-medium); }
.chat { position: fixed; right: 22px; bottom: 22px; z-index: 100; width: 52px; height: 52px; display: grid; place-items: center; background: var(--ink); color: var(--white); border-radius: var(--radius-button); box-shadow: var(--shadow-raised); font-size: 25px; }

/* Storefront pages use the same system with their approved page architecture. */
.store-shell { min-height: 100vh; background: var(--white); }
.store-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.92); border-bottom: 1px solid var(--border-hairline); backdrop-filter: blur(12px); }
.store-topbar { padding: 10px 18px; background: var(--ink); color: var(--white); font-size: var(--size-meta); font-weight: var(--weight-medium); letter-spacing: var(--tracking-mono); text-align: center; }
.store-nav { width: min(var(--page-max), calc(100% - 96px)); height: 84px; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.store-brand { display: flex; align-items: center; gap: 13px; color: var(--ink); font-family: var(--font-display); font-size: var(--size-body-lg); font-weight: var(--weight-max); letter-spacing: -0.02em; }
.store-nav-links { display: flex; align-items: center; gap: 20px; font-size: var(--size-body); }
.cart-link { min-height: 48px; display: inline-flex; align-items: center; gap: 8px; padding: 0 14px; background: var(--sun); color: var(--ink); border: 1px solid var(--ink); border-radius: var(--radius-button); font-weight: var(--weight-bold); }
.cart-count { min-width: 24px; height: 24px; padding: 0 6px; display: inline-grid; place-items: center; background: var(--ink); color: var(--white); border-radius: var(--radius-pill); font-size: var(--size-meta); font-weight: var(--weight-bold); }
.store-main { width: min(var(--page-max), calc(100% - 96px)); margin: 0 auto; padding: 64px 0 112px; }
.store-title { margin: 0 0 38px; font-size: var(--size-h1); line-height: var(--leading-tight); text-align: center; text-transform: uppercase; }
.store-subtitle { max-width: 680px; margin: -22px auto 38px; color: var(--ink-60); font-size: var(--size-body); text-align: center; }
.progress-row { max-width: 660px; margin: 0 auto 48px; display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.progress-row::before { content: ''; position: absolute; left: 15%; right: 15%; top: 23px; z-index: 0; height: 2px; background: var(--ink-20); }
.progress-step { position: relative; z-index: 1; text-align: center; font-size: var(--size-meta); }
.progress-dot { width: 48px; height: 48px; margin: 0 auto 8px; display: grid; place-items: center; background: var(--white); border: 2px solid var(--ink-20); border-radius: 50%; font-weight: var(--weight-bold); }
.progress-step.active .progress-dot { background: var(--ink); border-color: var(--ink); color: var(--white); }
.store-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.8fr); gap: 34px; align-items: start; }
.panel { background: var(--white); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); box-shadow: none; }
.panel-pad { padding: 26px; }
.panel-title { margin: 0 0 20px; font-size: var(--size-h3); text-transform: uppercase; }
.cart-empty { padding: 52px 24px; text-align: center; }
.cart-empty .icon { margin-bottom: 12px; font-size: 44px; }
.cart-empty h3 { font-size: var(--size-h3); }
.cart-empty p { font-size: var(--size-body); }
.primary-btn, .secondary-btn, .text-btn { padding: 0 20px; text-transform: uppercase; letter-spacing: var(--tracking-caps); }
.primary-btn { background: var(--action-primary-bg); color: var(--action-primary-fg); border: 2px solid var(--action-primary-bg); }
.primary-btn:hover { background: var(--action-primary-bg-press); }
.secondary-btn { background: var(--white); color: var(--ink); border: 2px solid var(--ink); }
.secondary-btn:hover { background: var(--ink-10); }
.text-btn { min-height: 48px; padding: 0; background: transparent; color: var(--ink); border: 0; text-transform: none; letter-spacing: 0; font-weight: var(--weight-medium); }
.text-btn:hover { text-decoration: underline; text-underline-offset: 4px; }
.full { width: 100%; }
.cart-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border-hairline); }
.cart-item:first-child { padding-top: 0; }
.cart-item:last-child { padding-bottom: 0; border-bottom: 0; }
.cart-product-img { width: 110px; height: 110px; padding: 8px; object-fit: contain; background: var(--sun-tint); border-radius: var(--radius-image); }
.cart-item h3 { margin: 0 0 6px; font-size: var(--size-h4); }
.cart-meta { color: var(--ink-60); font-size: var(--size-meta); }
.qty-control { display: inline-grid; grid-template-columns: 48px 56px 48px; overflow: hidden; margin-top: 12px; border: 2px solid var(--border-input); border-radius: var(--radius-input); }
.qty-control button { min-height: 48px; border: 0; background: var(--white); color: var(--ink); cursor: pointer; font-size: 24px; }
.qty-control button:hover { background: var(--ink-10); }
.qty-control input { width: 100%; min-height: 48px; border: 0; text-align: center; font: inherit; font-variant-numeric: tabular-nums; }
.cart-line-price { color: var(--ink); font-family: var(--font-display); font-size: var(--size-h4); font-weight: var(--weight-max); white-space: nowrap; }
.summary-line { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; font-size: var(--size-body); }
.summary-line.total { margin-top: 12px; padding-top: 18px; border-top: 1px solid var(--border-hairline); font-family: var(--font-display); font-size: var(--size-h3); font-weight: var(--weight-display); }
.free-shipping-box { margin-bottom: 18px; padding: 14px 16px; background: var(--sun-tint); border: 1px solid var(--border-hairline); border-radius: var(--radius-md); font-size: var(--size-meta); }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.trust-chip { padding: 12px; background: var(--shell); border: 1px solid var(--border-hairline); border-radius: var(--radius-md); font-size: var(--size-meta); text-align: center; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr); gap: 34px; align-items: start; }
.checkout-section { padding: 26px; border-bottom: 1px solid var(--border-hairline); }
.checkout-section:last-child { border-bottom: 0; }
.section-head { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-bottom: 18px; }
.section-head h2 { margin: 0; font-size: var(--size-h3); text-transform: uppercase; }
.section-head > span { color: var(--ink-60) !important; font-size: var(--size-meta) !important; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .span-2 { grid-column: 1 / -1; }
.field { display: grid; gap: 8px; }
.field label { color: var(--ink); font-size: var(--size-body); font-weight: var(--weight-bold); }
.field input, .field select, .field textarea { width: 100%; min-height: 56px; padding: 11px 16px; background: var(--white); border: 2px solid var(--border-input); border-radius: var(--radius-input); color: var(--ink); font-size: var(--size-body); font-weight: var(--weight-text); outline: none; transition: border-color var(--duration-fast) var(--ease-standard); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); box-shadow: var(--shadow-focus); }
.payment-card { overflow: hidden; background: var(--white); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); }
.payment-head { padding: 14px 16px; background: var(--shell); border-bottom: 1px solid var(--border-hairline); font-weight: var(--weight-bold); }
.payment-body { padding: 16px; background: var(--white); }
.demo-notice { margin: 0 0 16px; padding: 12px 14px; background: var(--sun-tint); border: 1px solid var(--border-hairline); border-radius: var(--radius-md); font-size: var(--size-meta); line-height: 1.45; }
.fake-card-grid { display: grid; grid-template-columns: 1fr 100px 90px; gap: 10px; }
.fake-input { height: 56px; padding: 0 12px; display: flex; align-items: center; background: var(--shell); border: 1px dashed var(--border-input); border-radius: var(--radius-input); color: var(--ink-60); font-size: var(--size-meta); }
.order-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 13px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border-hairline); }
.order-line:last-child { border-bottom: 0; }
.order-line img { width: 64px; height: 64px; padding: 5px; object-fit: contain; background: var(--sun-tint); border-radius: var(--radius-image); }
.order-line h4 { margin: 0 0 4px; font-size: var(--size-body-lg); }
.order-line small { color: var(--ink-60); font-size: var(--size-meta); }
.sticky-summary { position: sticky; top: 110px; }
.checkout-actions { display: grid; gap: 10px; margin-top: 20px; }
.secure-note { margin-top: 12px; color: var(--ink-60); font-size: var(--size-meta); line-height: 1.5; text-align: center; }
.confirm-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.confirm-icon { width: 74px; height: 74px; margin: 0 auto 24px; display: grid; place-items: center; background: var(--sun); color: var(--ink); border-radius: var(--radius-card); font-size: 34px; }
.confirm-card { margin-top: 30px; text-align: left; }
.link-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-simple { padding: 26px 18px; background: var(--shell); border-top: 1px solid var(--border-hairline); color: var(--ink-60); font-size: var(--size-meta); text-align: center; }
.mobile-back { display: none; }
.cart-toast { position: fixed; right: 24px; bottom: 90px; z-index: 9999; max-width: 360px; padding: 16px 20px; display: flex; align-items: center; gap: 16px; background: var(--ink); color: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-raised); opacity: 0; transform: translateY(18px); pointer-events: none; transition: opacity var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard); font-size: 16px; line-height: 1.4; }
.cart-toast.show { opacity: 1; transform: translateY(0); }
.cart-toast a { flex: 0 0 auto; padding: 8px 12px; border-radius: 6px; background: var(--sun); color: var(--ink); font-size: 13px; font-weight: var(--weight-bold); pointer-events: auto; }

@media (max-width: 1000px) {
  .nav-left a:not(.nav-pill), .nav-right a:not(.icon-link) { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .nav-left.open { position: absolute; top: 100%; left: 0; right: 0; z-index: 20; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 16px var(--page-gutter-mobile); background: var(--white); border-bottom: 1px solid var(--border-hairline); box-shadow: var(--shadow-raised); }
  .nav-left.open a:not(.nav-pill), .nav-left.open .nav-pill { display: flex; align-items: center; min-height: var(--tap-min); padding: 12px 0; background: transparent; border-radius: 0; }
  .nav-left.open .nav-pill { color: var(--ink); font-weight: var(--weight-medium); }
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: min(82vw, 600px); background-position: center center; }
  .hero-copy { padding: 50px clamp(24px, 7vw, 56px) 42px; }
  .media-grid { grid-template-columns: repeat(3, 1fr); }
  .product-story-inner { grid-template-columns: 1fr; padding: 0 30px; text-align: center; }
  .product-story img { margin: auto; }
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { max-width: 760px; grid-template-columns: 1fr; }
  .benefits img { margin: auto; }
  .friendly-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid { max-width: 520px; grid-template-columns: 1fr; }
  .secure { flex-direction: column; text-align: center; }
  .team-grid { max-width: 760px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 35px; }
  .store-nav, .store-main { width: min(var(--page-max), calc(100% - 48px)); }
  .store-grid, .checkout-layout { grid-template-columns: 1fr; }
  .sticky-summary { position: static; }
}

@media (max-width: 720px) {
  .store-nav-links a:not(.cart-link) { display: none; }
  .store-main { padding-top: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: auto; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-product-img { width: 80px; height: 80px; }
  .cart-line-price { grid-column: 2; }
  .fake-card-grid { grid-template-columns: 1fr; }
  .progress-row { margin-bottom: 36px; }
  .trust-row { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: var(--size-body); }
  .topbar { min-height: 48px; padding: 10px 15px; font-size: var(--size-meta); }
  .nav { height: 72px; }
  .nav-inner { width: calc(100% - 28px); grid-template-columns: 1fr auto 1fr; }
  .nav-logo { font-size: 17px; }
  .nav-pill { display: none !important; }
  .nav-right { gap: 10px; }
  .hero-media { min-height: 420px; }
  .hero-review { left: 12px; bottom: 12px; width: min(285px, calc(100% - 24px)); padding: 11px 12px; }
  .hero-review-stars { font-size: 17px; }
  .hero-review p { font-size: 11px; }
  .hero-copy { padding: 42px 18px 34px; }
  .hero h1, .hero-intro, .hero-copy > strong { width: 100%; max-width: 100%; min-width: 0; }
  .hero h1 { font-size: 28px; line-height: 1.28; overflow-wrap: anywhere; }
  .check-grid { grid-template-columns: 1fr; gap: 8px; font-size: var(--size-body); }
  .results-strip h2 { font-size: var(--size-h3); }
  .stat { min-width: 280px; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .media-card { min-height: 130px; }
  .reviews-intro { padding: 38px 0; }
  .reviews-intro h2 span { font-size: var(--size-h3); }
  .review-grid { grid-template-columns: 1fr; }
  .review-card.wide { grid-column: auto; }
  .story { padding: 38px 0; }
  .story h2 { font-size: var(--size-h3); }
  .good-news h2 { font-size: var(--size-h3); }
  .product-story-inner { padding: 0 20px; }
  .product-story img { width: 310px; }
  .friendly-grid { grid-template-columns: repeat(3, 1fr); gap: 18px 8px; }
  .product-buybox { grid-template-columns: 1fr; margin: 24px 0 0; }
  .product-visual { padding: 0 0 20px; }
  .product-details { padding: 0 18px 20px; }
  .facts-pills span { font-size: var(--size-meta); }
  .ingredients h2 { font-size: var(--size-h3); }
  .ingredient-grid { grid-template-columns: 1fr; }
  .ingredient-card img { width: 220px; height: 220px; }
  .timeline-head { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .timeline-head img { width: 250px; margin: auto; }
  .timeline-head h2 { font-size: var(--size-h3); }
  .timeline-list { padding-left: 40px; }
  .benefits h2 { font-size: var(--size-h3); }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits img { width: 100%; }
  .friendly-grid { grid-template-columns: 1fr 1fr; }
  .shipping-banner { font-size: var(--size-body-lg); }
  .steps { font-size: var(--size-meta); }
  .steps::after { top: 33px; }
  .price-grid { width: calc(100% - 30px); }
  .guarantee-grid { width: calc(100% - 40px); grid-template-columns: 1fr; }
  .rating-box { margin: 0 20px 18px; flex-direction: column; gap: 12px; }
  .verified-review { grid-template-columns: 1fr; }
  .verified-left { border-right: 0; border-bottom: 1px solid var(--border-hairline); }
  .inside-grid { width: calc(100% - 40px); grid-template-columns: 1fr; gap: 30px; }
  .team-grid { width: calc(100% - 40px); grid-template-columns: 1fr; }
  .footer { padding-top: 50px; }
  .footer-grid { grid-template-columns: 1fr; padding: 0 25px; }
  .legal { margin: 55px 25px 35px; }
  .footer-bottom { padding: 0 25px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .chat { right: 14px; bottom: 14px; width: 48px; height: 48px; }
  .store-nav, .store-main { width: calc(100% - 40px); }
  .store-title { font-size: var(--size-h1-m); }
  .store-brand { font-size: var(--size-body); }
  .store-nav { height: 72px; }
  .panel-pad, .checkout-section { padding: 20px; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .section-head > span { align-self: flex-start; }
  .cart-item { gap: 14px; }
  .cart-meta, .free-shipping-box, .trust-chip, .secure-note, .footer-simple { font-size: var(--size-meta); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Screenshot-inspired commerce layout, expressed with the Sunny Cells system. */
.commerce-page {
  background: var(--white);
  color: var(--ink);
}
.commerce-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 48.5% 51.5%;
}
.commerce-content {
  background: var(--white);
}
.commerce-content-inner {
  width: min(560px, calc(100% - 80px));
  min-height: 100vh;
  margin: auto;
  padding: 30px 0 24px;
  display: flex;
  flex-direction: column;
}
.commerce-logo {
  margin: 0 auto 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.commerce-breadcrumbs {
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--ink-40);
  font-size: 12px;
  white-space: nowrap;
}
.commerce-breadcrumbs .active,
.commerce-breadcrumbs a:hover {
  color: var(--ink);
}
.commerce-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.commerce-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: var(--weight-display);
  letter-spacing: -0.02em;
  text-transform: none;
}
.commerce-back,
.sign-in {
  color: var(--ink-60);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.commerce-panel {
  padding: 4px 0 0;
  border-top: 1px solid var(--border-hairline);
}
.commerce-panel-heading {
  padding: 17px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border-hairline);
}
.commerce-panel-heading h2,
.commerce-summary h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--weight-display);
  letter-spacing: -0.01em;
  text-transform: none;
}
.cart-count-label {
  color: var(--ink-60);
  font-size: 12px;
}
.cart-count-label .cart-count {
  min-width: 21px;
  height: 21px;
  margin-right: 4px;
  display: inline-grid;
  vertical-align: -6px;
  background: var(--ink);
  font-size: 11px;
}
.commerce-assurance {
  margin: 20px 0 0;
  color: var(--ink-60);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
.commerce-footer {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--border-hairline);
  color: var(--ink-40);
  font-size: 11px;
}
.commerce-footer a { text-decoration: underline; text-underline-offset: 2px; }
.commerce-summary {
  min-height: 100vh;
  background: #eef9f7;
  border-left: 1px solid #d9ece8;
}
.commerce-summary-inner {
  width: min(420px, calc(100% - 96px));
  margin: 0 auto;
  padding: 56px 0 80px;
}
.commerce-summary h2 { margin-bottom: 22px; }
.commerce-summary .free-shipping-box {
  margin: 0 0 14px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.7);
  border-color: #d9ece8;
  font-size: 12px;
}
.commerce-summary .summary-line {
  padding: 12px 0;
  font-size: 14px;
}
.commerce-summary .summary-line span { display: flex; flex-direction: column; gap: 2px; }
.commerce-summary .summary-line small {
  color: var(--ink-60);
  font-size: 11px;
  font-weight: var(--weight-text);
}
.commerce-summary .summary-line.total {
  margin-top: 8px;
  padding-top: 17px;
  border-top: 1px solid #cde3de;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: var(--weight-display);
}
.commerce-summary .summary-line.total span { display: block; }
.summary-secure {
  margin: 22px 0 0;
  color: var(--ink-60);
  font-size: 11px;
  line-height: 1.5;
}
.commerce-button {
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-standard), transform 90ms var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}
.commerce-button.primary {
  background: #63cdaa;
  border-color: #63cdaa;
  color: var(--white);
  box-shadow: 0 3px 6px rgba(13, 13, 12, 0.12);
}
.commerce-button.primary:hover { background: #58bf9b; border-color: #58bf9b; transform: translateY(-1px); }
.commerce-button.secondary { background: transparent; border-color: var(--ink); color: var(--ink); }
.commerce-button.secondary:hover { background: var(--white); }
.commerce-page .checkout-actions { margin-top: 20px; display: grid; gap: 9px; }
.commerce-page .cart-empty { padding: 46px 0; }
.commerce-page .cart-empty .primary-btn {
  min-height: 50px;
  padding: 0 18px;
  background: #63cdaa;
  border-color: #63cdaa;
  border-radius: 10px;
  color: var(--white);
}
.cart-page .cart-item {
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px 0;
}
.cart-page .cart-item:first-child { padding-top: 18px; }
.cart-page .cart-product-img {
  width: 84px;
  height: 84px;
  padding: 6px;
  background: var(--sun-tint);
  border-radius: 12px;
}
.cart-page .cart-item h3 { margin: 0 0 4px; font-size: 16px; }
.cart-page .cart-meta { font-size: 12px; line-height: 1.45; }
.cart-page .qty-control {
  grid-template-columns: 34px 42px 34px;
  margin-top: 10px;
  border-width: 1px;
  border-radius: 8px;
}
.cart-page .qty-control button,
.cart-page .qty-control input { min-height: 34px; }
.cart-page .qty-control button { font-size: 18px; }
.cart-page .cart-line-price { font-size: 16px; }
.commerce-form { width: 100%; }
.express-checkout { padding-bottom: 2px; }
.express-checkout > p {
  margin: 0 0 9px;
  color: var(--ink-60);
  font-size: 12px;
  text-align: center;
}
.express-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.express-button {
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  color: var(--white);
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: var(--weight-bold);
  cursor: pointer;
}
.express-button.shop, .express-button.gpay { background: var(--ink); }
.express-button.paypal { background: var(--sun); color: var(--ink); }
.express-button.gpay span { color: #4285f4; }
.commerce-divider {
  margin: 20px 0 3px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-60);
  font-size: 11px;
}
.commerce-divider::before, .commerce-divider::after { content: ''; height: 1px; flex: 1; background: var(--border-hairline); }
.commerce-page .checkout-section { padding: 19px 0; border-bottom: 1px solid var(--border-hairline); }
.commerce-page .checkout-section:last-child { border-bottom: 0; }
.commerce-page .section-head { margin-bottom: 11px; }
.commerce-page .section-head h2 { font-size: 16px; font-weight: var(--weight-medium); text-transform: none; }
.commerce-page .section-head > span { font-size: 12px !important; }
.commerce-page .form-grid { gap: 8px; }
.commerce-page .address-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.commerce-page .address-grid .span-2 { grid-column: 1 / -1; }
.commerce-page .address-grid .name-field { grid-column: span 3; }
.commerce-page .address-grid .city-field,
.commerce-page .address-grid .region-field,
.commerce-page .address-grid .postal-field { grid-column: span 2; }
.commerce-page .address-grid .phone-field { grid-column: 1 / -1; }
.commerce-page .field { gap: 0; }
.commerce-page .field input,
.commerce-page .field select,
.commerce-page .field textarea {
  min-height: 41px;
  padding: 8px 12px;
  border: 1px solid var(--ink-20);
  border-radius: 10px;
  font-size: 13px;
  font-weight: var(--weight-text);
}
.commerce-page .field input::placeholder { color: var(--ink-40); opacity: 1; }
.commerce-page .field input:focus,
.commerce-page .field select:focus,
.commerce-page .field textarea:focus { border-color: #63cdaa; box-shadow: 0 0 0 3px rgba(99, 205, 170, 0.18); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.commerce-page .payment-card { border-color: var(--border-hairline); border-radius: 10px; }
.commerce-page .payment-head { padding: 11px 13px; font-size: 13px; }
.commerce-page .payment-body { padding: 12px; }
.commerce-page .demo-notice { margin-bottom: 12px; padding: 10px 12px; font-size: 12px; }
.commerce-page .fake-card-grid { gap: 7px; }
.commerce-page .fake-input { height: 41px; padding: 0 10px; font-size: 11px; }
.commerce-page .order-line { grid-template-columns: 56px minmax(0, 1fr) auto; gap: 11px; padding: 12px 0; }
.commerce-page .order-line img { width: 56px; height: 56px; padding: 4px; background: var(--white); border: 1px solid #d9ece8; border-radius: 11px; }
.commerce-page .order-line h4 { margin-bottom: 3px; font-size: 13px; }
.commerce-page .order-line small { font-size: 11px; }
.discount-row { margin: 10px 0 14px; padding: 14px 0; display: flex; gap: 8px; border-top: 1px solid #cde3de; border-bottom: 1px solid #cde3de; }
.discount-row input { min-width: 0; flex: 1; min-height: 40px; padding: 0 11px; border: 1px solid var(--ink-20); border-radius: 9px; background: var(--white); color: var(--ink); font: inherit; font-size: 12px; }
.discount-row button { min-width: 60px; border: 0; border-radius: 9px; background: #dcefeb; color: var(--ink-60); font: inherit; font-size: 12px; }
.commerce-page .checkout-submit-section { padding-bottom: 0; }
.commerce-page .secure-note { margin: 10px 0 0; font-size: 11px; line-height: 1.45; }
.checkout-lower-section { display: block; }

@media (max-width: 900px) {
  .commerce-layout { grid-template-columns: 1fr; }
  .commerce-content-inner { min-height: auto; }
  .commerce-summary { min-height: auto; border-top: 1px solid #d9ece8; border-left: 0; }
  .commerce-summary-inner { padding: 34px 0 48px; }
}

@media (max-width: 560px) {
  .commerce-content-inner,
  .commerce-summary-inner { width: calc(100% - 36px); }
  .commerce-content-inner { padding-top: 22px; }
  .commerce-breadcrumbs { margin-bottom: 23px; gap: 7px; font-size: 10px; }
  .commerce-heading-row { align-items: flex-start; flex-direction: column; gap: 6px; }
  .commerce-title { font-size: 24px; }
  .commerce-page .address-grid { grid-template-columns: 1fr; }
  .commerce-page .address-grid .name-field,
  .commerce-page .address-grid .city-field,
  .commerce-page .address-grid .region-field,
  .commerce-page .address-grid .postal-field,
  .commerce-page .address-grid .phone-field,
  .commerce-page .address-grid .span-2 { grid-column: auto; }
  .cart-page .cart-item { grid-template-columns: 72px minmax(0, 1fr); gap: 12px; }
  .cart-page .cart-product-img { width: 72px; height: 72px; }
  .cart-page .cart-line-price { grid-column: 2; text-align: right; }
  .express-grid { gap: 6px; }
  .express-button { font-size: 13px; }
  .commerce-footer { gap: 9px; }
}
