/* ============================================================
   dodoa.ch — Storefront Styles
   Brand: Inter + Life Savers · Coral / Sage / Ink / Cream
   ============================================================ */

:root {
  /* Colors */
  --coral: #EB5D48;
  --coral-dark: #D2492F;
  --coral-soft: #F7C9BF;
  --sage: #A7B9A0;
  --sage-dark: #7E9575;
  --sage-soft: #DCE4D6;
  --ink: #2F2F2F;
  --ink-soft: #5B5B58;
  --cream: #F4F3F1;
  --paper: #FBFAF9;
  --white: #FFFFFF;
  --line: #E7E4DF;

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Life Savers', Georgia, serif;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 32px;
  --shadow-sm: 0 2px 10px rgba(47,47,47,.06);
  --shadow: 0 18px 50px -20px rgba(47,47,47,.28);
  --nav-h: 74px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; line-height: 1.08; font-weight: 600; letter-spacing: -.01em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: clamp(56px, 8vw, 110px); }

.eyebrow {
  font-family: var(--font-serif);
  color: var(--sage-dark);
  font-size: 1.05rem;
  letter-spacing: .02em;
  margin: 0 0 14px;
}

.serif { font-family: var(--font-serif); }
.coral-text { color: var(--coral); }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--coral);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--_bg);
  color: var(--_fg);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 10px 24px -10px rgba(235,93,72,.7);
}
.btn:hover { transform: translateY(-2px); background: var(--coral-dark); box-shadow: 0 16px 30px -12px rgba(235,93,72,.8); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  --_bg: transparent;
  --_fg: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn .price { opacity: .85; font-weight: 500; }
.btn--lg { padding: 18px 38px; font-size: 1.08rem; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251,250,249,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.is-stuck { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__word {
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: .42em;
  padding-left: .42em;
  color: var(--ink);
}
.brand__claim {
  font-family: var(--font-serif);
  color: var(--sage-dark);
  font-size: .72rem;
  letter-spacing: .16em;
  margin-top: 3px;
}
.nav__menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .96rem;
  font-weight: 500;
}
.nav__menu a { position: relative; padding: 6px 0; color: var(--ink-soft); transition: color .2s; }
.nav__menu a:hover { color: var(--ink); }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--coral); transition: width .22s ease;
}
.nav__menu a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: none; background: transparent; cursor: pointer;
  color: var(--ink);
  transition: background .2s;
  position: relative;
}
.icon-btn:hover { background: var(--cream); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 6px; right: 4px;
  background: var(--coral); color: #fff;
  font-size: .68rem; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 999px; display: grid; place-items: center;
}
.nav__burger { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(167,185,160,.22), transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(235,93,72,.08), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding-block: clamp(40px, 6vw, 80px);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: -.02em;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 30ch;
  margin: 22px 0 30px;
}
.hero__buy { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__price { display: flex; flex-direction: column; line-height: 1.1; }
.hero__price b { font-size: 1.5rem; font-weight: 700; }
.hero__price span { font-size: .82rem; color: var(--sage-dark); }
.hero__media { position: relative; }

/* ============================================================
   Trust bar
   ============================================================ */
.trust {
  background: var(--ink);
  color: #fff;
  padding-block: 0;
}
.trust ul {
  list-style: none; margin: 0; padding: 18px 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 30px; font-size: .92rem;
}
.trust li { display: flex; align-items: center; gap: 12px; color: #EDEBE8; }
.trust li:not(:last-child)::after { content: "·"; color: var(--sage); margin-left: 30px; }
.trust svg { width: 18px; height: 18px; color: var(--sage); }

/* ============================================================
   Generic split section (image + text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.split p { color: var(--ink-soft); font-size: 1.08rem; max-width: 46ch; }

.section-head { max-width: 640px; margin: 0 auto clamp(34px, 5vw, 56px); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 16px; }

/* ---------- "Aus 1 mach 3" trio ---------- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 34px); }
.trio__card { text-align: center; }
.trio__card h3 { font-size: 1.25rem; margin-top: 20px; }
.trio__card p { color: var(--ink-soft); font-size: .98rem; margin-top: 8px; }

/* ---------- Anwendungen (alternating) ---------- */
.uses { background: var(--cream); }
.use { padding-block: clamp(28px, 4vw, 44px); }
.use + .use { border-top: 1px solid var(--line); }
.use .badge {
  display: inline-block;
  background: var(--sage-soft); color: var(--sage-dark);
  font-family: var(--font-serif); font-size: .95rem;
  padding: 5px 16px; border-radius: 999px; margin-bottom: 16px;
}
.use h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 14px; }
.use p { color: var(--ink-soft); font-size: 1.12rem; max-width: 48ch; }

/* ---------- Story ---------- */
.story {
  background:
    radial-gradient(80% 120% at 90% 10%, rgba(235,93,72,.10), transparent 60%),
    var(--sage-soft);
}
.story .split p { font-size: 1.22rem; color: var(--ink); font-family: var(--font-serif); line-height: 1.7; max-width: 40ch; }

/* ---------- Reviews ---------- */
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
}
.review .stars { color: var(--coral); letter-spacing: 2px; font-size: 1rem; }
.review blockquote { margin: 0; font-size: 1.15rem; line-height: 1.5; }
.review cite {
  font-style: normal; color: var(--sage-dark);
  font-family: var(--font-serif); font-size: .98rem;
}

/* ---------- Stats / Trust band ---------- */
.stats {
  background:
    radial-gradient(80% 130% at 15% 0%, rgba(235,93,72,.10), transparent 60%),
    var(--sage-soft);
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}
.stat { text-align: center; }
.stat + .stat { position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: calc(-1 * clamp(14px, 3vw, 45px)); top: 6%;
  height: 88%; width: 1px; background: rgba(126,149,117,.4);
}
.stat__num {
  display: block;
  font-size: clamp(3.4rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--coral);
  letter-spacing: -.02em;
}
.stat__num span { font-size: .45em; color: var(--sage-dark); font-weight: 600; }
.stat__label {
  margin: 16px auto 0;
  max-width: 26ch;
  color: var(--ink);
  font-size: 1.08rem;
}

@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr; gap: 40px; }
  .stat + .stat::before { display: none; }
  .stat + .stat { padding-top: 40px; border-top: 1px solid rgba(126,149,117,.4); }
}

/* ---------- 6 Gründe ---------- */
.reasons { background: var(--cream); }
.reasons__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reason {
  background: var(--white);
  border-radius: var(--r);
  padding: 30px 28px;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.reason:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reason__ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--coral-soft); color: var(--coral-dark);
  display: grid; place-items: center; margin-bottom: 18px;
}
.reason__ico svg { width: 26px; height: 26px; }
.reason h3 { font-size: 1.18rem; }
.reason p { color: var(--ink-soft); margin: 8px 0 0; font-size: .96rem; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 1.15rem; font-weight: 600; color: var(--ink);
  padding: 24px 40px 24px 0; position: relative;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq__q .plus { flex: none; width: 24px; height: 24px; position: relative; transition: transform .3s ease; }
.faq__q .plus::before, .faq__q .plus::after {
  content: ""; position: absolute; background: var(--coral); border-radius: 2px;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
}
.faq__q .plus::before { width: 16px; height: 2.5px; }
.faq__q .plus::after { width: 2.5px; height: 16px; transition: transform .3s ease; }
.faq__item.open .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { color: var(--ink-soft); margin: 0 0 24px; font-size: 1.02rem; max-width: 64ch; }

/* ---------- Closing CTA ---------- */
.closing {
  background:
    radial-gradient(90% 120% at 20% 0%, rgba(167,185,160,.35), transparent 60%),
    var(--ink);
  color: #fff;
  text-align: center;
}
.closing h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); color: #fff; }
.closing p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin: 18px auto 32px; max-width: 44ch; }
.closing .btn--ghost { border-color: #fff; color: #fff; }
.closing .btn--ghost:hover { background: #fff; color: var(--ink); }
.newsletter {
  margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.14);
  max-width: 480px; margin-inline: auto;
}
.newsletter form { display: flex; gap: 10px; margin-top: 16px; }
.newsletter input {
  flex: 1; padding: 14px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06); color: #fff; font-size: 1rem; font-family: var(--font-sans);
}
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter input:focus { outline: none; border-color: var(--sage); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: 46px; border-top: 1px solid rgba(255,255,255,.1); }
.footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; align-items: center; }
.footer a:hover { color: #fff; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; font-size: .92rem; }
.footer__pay { display: flex; align-items: center; gap: 10px; font-size: .85rem; }
.twint { background:#000; color:#fff; font-weight:700; font-size:.75rem; padding:5px 10px; border-radius:6px; letter-spacing:.02em; }

/* ============================================================
   Image placeholders
   ============================================================ */
.ph {
  position: relative;
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,.6), rgba(255,255,255,0)),
    var(--sage-soft);
  border: 1px dashed rgba(126,149,117,.5);
  display: grid; place-items: center;
  overflow: hidden;
  color: var(--sage-dark);
}
.ph::after {
  content: attr(data-label);
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-serif); font-size: .82rem; letter-spacing: .04em;
  color: var(--sage-dark); opacity: .8; white-space: nowrap;
}
.ph .egg { width: 46%; max-width: 150px; opacity: .55; }
.ph--coral { background: linear-gradient(135deg, rgba(255,255,255,.5), rgba(255,255,255,0)), var(--coral-soft); border-color: rgba(210,73,47,.4); color: var(--coral-dark); }
.ph--coral::after, .ph--coral .egg { color: var(--coral-dark); }
.ph--4x5 { aspect-ratio: 4 / 5; }
.ph--1x1 { aspect-ratio: 1 / 1; }
.ph--3x2 { aspect-ratio: 3 / 2; }
.ph--16x10 { aspect-ratio: 16 / 10; }
.ph--hero { aspect-ratio: 5 / 5.4; border-radius: 40px 40px 46% 46% / 40px 40px 40% 40%; }

/* ============================================================
   PRODUCT PAGE (PDP)
   ============================================================ */
.breadcrumb { padding: 18px 0 0; font-size: .85rem; color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

.pdp { padding-top: 26px; }
.pdp__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }

/* Gallery */
.gallery { position: sticky; top: calc(var(--nav-h) + 20px); }
.gallery__main { border-radius: var(--r-lg); aspect-ratio: 1 / 1; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 14px; }
.gallery__thumb {
  aspect-ratio: 1 / 1; border-radius: var(--r-sm); cursor: pointer;
  border: 2px solid transparent; padding: 0; overflow: hidden; background: transparent;
}
.gallery__thumb .ph { border-radius: calc(var(--r-sm) - 2px); border-style: solid; border-width: 1px; width: 100%; height: 100%; }
.gallery__thumb.is-active { border-color: var(--coral); }
.gallery__thumb .ph::after { display: none; }
.gallery__thumb .egg { width: 40%; }

/* Info column */
.pdp__info h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.pdp__tagline { color: var(--ink-soft); font-size: 1.12rem; margin: 0 0 18px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.rating-row .stars { color: var(--coral); letter-spacing: 2px; }
.rating-row a { font-size: .92rem; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.rating-row .badge-inline { background: var(--sage-soft); color: var(--sage-dark); font-size: .8rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; }

.price-row { display: flex; align-items: baseline; gap: 12px; margin: 6px 0 4px; }
.price-row .now { font-size: 2rem; font-weight: 700; }
.price-row .vat { color: var(--ink-soft); font-size: .9rem; }
.price-note { color: var(--sage-dark); font-size: .9rem; margin: 0 0 22px; }

.stock { display: inline-flex; align-items: center; gap: 9px; font-size: .95rem; font-weight: 500; margin-bottom: 22px; }
.stock .dot { width: 9px; height: 9px; border-radius: 50%; background: #46A75B; box-shadow: 0 0 0 4px rgba(70,167,91,.18); }
.stock.low .dot { background: #E0912A; box-shadow: 0 0 0 4px rgba(224,145,42,.18); }

/* Variant swatches */
.variants { margin-bottom: 22px; }
.variants__label { font-size: .9rem; font-weight: 600; margin-bottom: 10px; }
.variants__label b { font-weight: 700; }
.swatches { display: flex; gap: 12px; flex-wrap: wrap; }
.swatch {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer; position: relative;
  border: 2px solid var(--line); background: var(--sw, #ccc);
  transition: transform .15s ease;
}
.swatch:hover { transform: scale(1.06); }
.swatch.is-active { border-color: var(--ink); }
.swatch.is-active::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px solid var(--coral);
}

/* Buy row */
.buy-row { display: flex; gap: 14px; align-items: stretch; margin-bottom: 16px; flex-wrap: wrap; }
.qty-lg { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; padding: 4px; }
.qty-lg button { width: 40px; height: 40px; border: none; background: none; cursor: pointer; font-size: 1.3rem; border-radius: 50%; color: var(--ink); }
.qty-lg button:hover { background: var(--cream); }
.qty-lg span { min-width: 34px; text-align: center; font-weight: 600; }
.buy-row .btn { flex: 1; justify-content: center; }
.pay-hint { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--ink-soft); margin-bottom: 26px; flex-wrap: wrap; }
.pay-hint .twint { transform: scale(.9); }

/* USP list in buy box */
.usp-list { list-style: none; margin: 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 14px; }
.usp-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.usp-list svg { width: 22px; height: 22px; color: var(--coral); flex: none; margin-top: 1px; }
.usp-list b { font-weight: 600; }
.usp-list span { color: var(--ink-soft); }

/* Für wen — audience */
.audience { background: var(--cream); }
.audience__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.aud-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; }
.aud-card__ico { width: 50px; height: 50px; border-radius: 14px; background: var(--sage-soft); color: var(--sage-dark); display: grid; place-items: center; margin-bottom: 16px; }
.aud-card__ico svg { width: 26px; height: 26px; }
.aud-card h3 { font-size: 1.15rem; }
.aud-card p { color: var(--ink-soft); font-size: .96rem; margin: 8px 0 0; }

/* Specs / details */
.specs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .98rem; vertical-align: top; }
.spec-table th { width: 42%; font-weight: 600; color: var(--ink); }
.spec-table td { color: var(--ink-soft); }

/* Rating summary block */
.review-summary { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 5vw, 60px); align-items: center; background: var(--cream); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); margin-bottom: 40px; }
.review-summary__score { text-align: center; }
.review-summary__score b { font-size: 3.6rem; font-weight: 700; line-height: 1; display: block; }
.review-summary__score .stars { color: var(--coral); letter-spacing: 2px; font-size: 1.1rem; }
.review-summary__score span { display: block; color: var(--ink-soft); font-size: .9rem; margin-top: 6px; }
.bars { display: grid; gap: 8px; }
.bar-row { display: flex; align-items: center; gap: 12px; font-size: .88rem; color: var(--ink-soft); }
.bar-row .lbl { width: 42px; }
.bar-track { flex: 1; height: 8px; background: var(--sage-soft); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--coral); border-radius: 99px; }
.review .verified { display: inline-flex; align-items: center; gap: 6px; color: var(--sage-dark); font-size: .82rem; font-weight: 600; }
.review .verified svg { width: 15px; height: 15px; }
.review__head { display: flex; justify-content: space-between; align-items: center; }

/* Sticky mobile buy bar */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(251,250,249,.95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: 12px var(--gutter);
  display: none; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%); transition: transform .3s ease;
}
.buybar.show { transform: translateY(0); }
.buybar b { font-size: 1.1rem; }
.buybar .btn { padding: 12px 24px; }

@media (max-width: 900px) {
  .pdp__grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .audience__grid { grid-template-columns: 1fr; }
  .specs__grid { grid-template-columns: 1fr; }
  .review-summary { grid-template-columns: 1fr; text-align: center; }
  .buybar { display: flex; }
}

/* ============================================================
   COMMUNITY PAGE
   ============================================================ */
:root { --forest: #21382C; --forest-soft: #2C4A3A; }

.subhero {
  background:
    radial-gradient(110% 90% at 80% 0%, rgba(167,185,160,.25), transparent 55%),
    var(--cream);
  text-align: center;
}
.subhero .container { max-width: 780px; }
.subhero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
.subhero p { color: var(--ink-soft); font-size: 1.2rem; margin: 20px auto 0; max-width: 52ch; }
.subhero .eyebrow { text-align: center; }

/* ---------- Behind the scenes (dark forest) ---------- */
.bts { background: var(--forest); color: #fff; }
.bts .split { align-items: center; }
.bts h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.bts .eyebrow { color: var(--sage); }
.bts p { color: rgba(255,255,255,.82); font-size: 1.12rem; max-width: 46ch; }
.bts p + p { margin-top: 16px; }
.bts .signature { font-family: var(--font-serif); color: var(--sage); font-size: 1.3rem; margin-top: 24px; }
.bts__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: var(--forest-soft);
}
.bts__photo img { width: 100%; height: 100%; object-fit: cover; }
.bts__photo.is-empty { display: grid; place-items: center; border: 1px dashed rgba(255,255,255,.3); }
.bts__photo.is-empty span { font-family: var(--font-serif); color: rgba(255,255,255,.6); font-size: .9rem; }

/* ---------- Development feed ---------- */
.feed-wrap { max-width: 760px; margin-inline: auto; }
.feed { display: flex; flex-direction: column; gap: 22px; position: relative; }
.feed-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.feed-item__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--sage); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 1.05rem; overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.feed-item__meta { display: flex; flex-direction: column; line-height: 1.2; }
.feed-item__meta b { font-size: 1rem; }
.feed-item__meta span { color: var(--ink-soft); font-size: .85rem; }
.status-pill {
  margin-left: auto;
  font-size: .78rem; font-weight: 600; padding: 5px 13px; border-radius: 999px;
  white-space: nowrap;
}
.status-pill.idea    { background: var(--sage-soft); color: var(--sage-dark); }
.status-pill.testing { background: #FDEBD0; color: #B9770E; }
.status-pill.building { background: var(--coral-soft); color: var(--coral-dark); }
.status-pill.done    { background: #D6EAD9; color: #3E7A4C; }
.feed-item h3 { font-size: 1.25rem; margin-bottom: 8px; }
.feed-item p { color: var(--ink-soft); margin: 0; font-size: 1.02rem; }
.feed-item__foot {
  display: flex; align-items: center; gap: 8px; margin-top: 18px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.react {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--line); background: var(--paper);
  border-radius: 999px; padding: 7px 15px; cursor: pointer;
  font-family: var(--font-sans); font-size: .9rem; color: var(--ink-soft);
  transition: border-color .2s, color .2s, background .2s;
}
.react:hover { border-color: var(--coral); color: var(--coral); }
.react.is-active { background: var(--coral-soft); border-color: var(--coral); color: var(--coral-dark); }
.react svg { width: 16px; height: 16px; }
.react .cnt { font-weight: 600; }
.feed-item__foot .spacer { flex: 1; }

/* ---------- Community input / idea box ---------- */
.idea { background: var(--cream); }
.idea__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.idea-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm);
}
.idea-form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.idea-form > p { color: var(--ink-soft); margin: 0 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: 1rem; background: var(--paper); color: var(--ink);
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sage-dark); background: #fff; }
.idea-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.idea-form__note { font-size: .82rem; color: var(--ink-soft); text-align: center; margin-top: 14px; }

.idea-list { display: flex; flex-direction: column; gap: 16px; }
.idea-list > h3 { font-size: 1.4rem; margin-bottom: 4px; }
.idea-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 20px; display: flex; gap: 16px; align-items: center;
}
.vote {
  flex: none; width: 60px; text-align: center; cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: 8px 0;
  background: var(--paper); transition: border-color .2s, background .2s;
}
.vote:hover { border-color: var(--coral); }
.vote.is-active { background: var(--coral-soft); border-color: var(--coral); }
.vote svg { width: 18px; height: 18px; color: var(--coral); margin: 0 auto 2px; display: block; }
.vote b { font-size: 1.05rem; }
.idea-card__body h4 { font-size: 1.05rem; }
.idea-card__body p { color: var(--ink-soft); font-size: .92rem; margin: 4px 0 0; }

@media (max-width: 860px) {
  .idea__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Cart drawer + overlay
   ============================================================ */
.overlay {
  position: fixed; inset: 0; background: rgba(47,47,47,.5);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
  z-index: 90;
}
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(420px, 100%);
  background: var(--paper); z-index: 100; box-shadow: var(--shadow);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 1.2rem; }
.drawer__body { padding: 24px; flex: 1; overflow-y: auto; }
.cart-item { display: flex; gap: 16px; }
.cart-item .ph { width: 80px; height: 90px; flex: none; border-radius: 14px; }
.cart-item .egg { width: 40px; }
.cart-item h4 { font-size: 1rem; }
.cart-item .muted { color: var(--ink-soft); font-size: .88rem; }
.qty { display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 4px 6px; }
.qty button { border: none; background: none; cursor: pointer; font-size: 1.1rem; width: 26px; height: 26px; border-radius: 50%; color: var(--ink); }
.qty button:hover { background: var(--cream); }
.drawer__foot { padding: 24px; border-top: 1px solid var(--line); }
.drawer__row { display: flex; justify-content: space-between; margin-bottom: 6px; }
.drawer__row.total { font-weight: 700; font-size: 1.15rem; }
.drawer__foot .btn { width: 100%; justify-content: center; margin-top: 16px; }
.drawer__note { text-align: center; color: var(--sage-dark); font-size: .82rem; margin-top: 12px; }

/* ============================================================
   Mobile menu
   ============================================================ */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; background: var(--paper);
  z-index: 55; padding: 30px var(--gutter); transform: translateY(-8px);
  opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s, visibility .25s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu a { display: block; font-size: 1.4rem; font-weight: 600; padding: 16px 0; border-bottom: 1px solid var(--line); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-grid; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__buy { justify-content: center; }
  .hero__media { max-width: 420px; margin-inline: auto; order: -1; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split p { max-width: none; }
  .trio { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .reasons__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .reasons__grid { grid-template-columns: 1fr; }
  .newsletter form { flex-direction: column; }
  .newsletter .btn { width: 100%; justify-content: center; }
  .trust li:not(:last-child)::after { display: none; }
}
