/* ============================================================
   SPHINX — Bio Schwarzkümmelöl · Premium Design System
   Palette: Ivory / Deep Green / Muted Gold
   ============================================================ */

:root {
  --bg: #F7F3EA;
  --bg-2: #EFE7D8;
  --bg-3: #E7DEC9;
  --ivory: #FBF8F1;
  --ink: #211D15;
  --ink-2: #57503F;
  --ink-3: #8A8271;
  --green: #1E3D2F;
  --green-2: #142A20;
  --green-3: #2C5343;
  --gold: #B08A3C;
  --gold-2: #C9A860;
  --gold-3: #8C6D2C;
  --line: rgba(33, 29, 21, 0.14);
  --line-soft: rgba(33, 29, 21, 0.08);
  --white: #FFFFFF;
  --red: #A23E2C;
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow-1: 0 2px 10px rgba(30, 25, 10, 0.06);
  --shadow-2: 0 12px 40px rgba(30, 25, 10, 0.12);
  --shadow-3: 0 24px 70px rgba(20, 25, 15, 0.18);
  --r: 14px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
::selection { background: var(--gold-2); color: var(--green-2); }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--green-3); border-radius: 8px; border: 3px solid var(--bg-2); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 3000;
  background: var(--green); color: var(--ivory); padding: 12px 22px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.container { width: min(1200px, 92vw); margin: 0 auto; }
.container-wide { width: min(1360px, 94vw); margin: 0 auto; }
.section { padding: 110px 0; }
.section--tight { padding: 80px 0; }
.section--green { background: var(--green); color: var(--ivory); }
.section--green .eyebrow { color: var(--gold-2); }
.section--cream { background: var(--bg-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-3); font-weight: 600; margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold); }
h1, h2, h3, .serif { font-family: var(--font-display); font-weight: 500; line-height: 1.12; color: var(--ink); }
h2 { font-size: clamp(34px, 4.6vw, 54px); letter-spacing: 0.01em; }
h3 { font-size: clamp(24px, 2.6vw, 32px); }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head p.lead { margin-top: 20px; color: var(--ink-2); font-size: 18px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::after { content: ""; width: 42px; height: 1px; background: var(--gold); }

.legal-note { font-size: 13px; color: var(--ink-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 34px; border-radius: 999px; border: 1px solid transparent;
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; transition: all 0.35s var(--ease); position: relative; white-space: nowrap;
}
.btn--solid { background: var(--green); color: var(--ivory); box-shadow: 0 10px 26px rgba(20, 42, 32, 0.28); }
.btn--solid:hover { background: var(--green-2); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(20, 42, 32, 0.34); }
.btn--gold { background: var(--gold); color: var(--ivory); }
.btn--gold:hover { background: var(--gold-3); transform: translateY(-2px); }
.btn--ghost { border-color: var(--green); color: var(--green); background: transparent; }
.btn--ghost:hover { background: var(--green); color: var(--ivory); transform: translateY(-2px); }
.btn--ghost-light { border-color: rgba(251, 248, 241, 0.5); color: var(--ivory); background: transparent; }
.btn--ghost-light:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn--light { background: var(--ivory); color: var(--green); }
.btn--light:hover { background: var(--gold-2); color: var(--green-2); }
.btn svg { width: 16px; height: 16px; }
.btn--block { width: 100%; }

/* link underline animation */
.tlink { text-decoration: none; position: relative; }
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--green-2); color: var(--bg-2);
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; text-align: center;
  padding: 10px 16px; font-weight: 500;
}
.announce strong { color: var(--gold-2); font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.has-announce { top: 0; }
.header-inner {
  width: min(1360px, 94vw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); transition: height 0.4s var(--ease);
}
.site-header.scrolled { background: rgba(247, 243, 234, 0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: var(--shadow-1); }
.site-header.scrolled .header-inner { height: 68px; }

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo__emblem { width: 46px; height: 46px; flex: none; }
.logo__text { line-height: 1.05; }
.logo__name {
  font-family: var(--font-display); font-size: 26px; letter-spacing: 0.34em; font-weight: 600; color: var(--green-2);
}
.logo__tag { font-size: 9.5px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold-3); font-weight: 600; }

.main-nav { display: flex; gap: 40px; }
.main-nav a {
  text-decoration: none; font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-2); padding: 6px 0; position: relative; transition: color 0.3s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease);
}
.main-nav a:hover { color: var(--green-2); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.main-nav a.active { color: var(--green-2); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.cart-btn {
  position: relative; background: none; border: none; padding: 8px; color: var(--green-2);
  display: flex; align-items: center; justify-content: center;
}
.cart-btn svg { width: 24px; height: 24px; }
.cart-count {
  position: absolute; top: 0; right: -2px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--gold); color: var(--ivory); font-size: 10.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform 0.3s var(--ease);
}
.cart-count.show { transform: scale(1); }

.menu-toggle { display: none; background: none; border: none; padding: 8px; color: var(--green-2); }
.menu-toggle svg { width: 26px; height: 26px; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 2000; background: var(--green-2); color: var(--ivory);
  display: flex; flex-direction: column; justify-content: center; padding: 8vh 8vw;
  transform: translateX(100%); transition: transform 0.5s var(--ease); visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav a {
  font-family: var(--font-display); font-size: clamp(30px, 7vw, 44px); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid rgba(251, 248, 241, 0.12); display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a span { color: var(--gold-2); font-size: 14px; font-family: var(--font-body); }
.mobile-nav__close { position: absolute; top: 26px; right: 26px; background: none; border: none; color: var(--ivory); padding: 8px; }
.mobile-nav__close svg { width: 30px; height: 30px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--header-h); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(247,243,234,0.98) 0%, rgba(247,243,234,0.92) 34%, rgba(247,243,234,0.55) 55%, rgba(20,42,32,0.12) 78%);
}
.hero__content { position: relative; z-index: 2; width: min(1360px, 94vw); margin: 0 auto; }
.hero__inner { max-width: 640px; }
.hero h1 { font-size: clamp(46px, 6.2vw, 84px); margin: 6px 0 26px; }
.hero h1 em { font-style: italic; color: var(--gold-3); }
.hero .lead { font-size: 19px; color: var(--ink-2); max-width: 520px; margin-bottom: 42px; }
.hero__ctas { display: flex; gap: 18px; flex-wrap: wrap; }
.hero__meta {
  display: flex; gap: 38px; margin-top: 64px; flex-wrap: wrap;
}
.hero__meta div { border-left: 1px solid var(--line); padding-left: 18px; }
.hero__meta strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--green-2); line-height: 1; }
.hero__meta span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--ink-3);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; text-decoration: none;
}
.hero__scroll::after { content: ""; width: 1px; height: 44px; background: var(--gold); animation: drop 2.2s infinite var(--ease); }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Page hero (inner pages) */
.page-hero { padding: calc(var(--header-h) + 90px) 0 70px; background: var(--bg-2); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; right: -140px; top: -140px; width: 460px; height: 460px;
  border: 1px solid var(--gold-2); border-radius: 50%; opacity: 0.35;
}
.page-hero h1 { font-size: clamp(40px, 5.4vw, 68px); margin-bottom: 14px; }
.page-hero p { max-width: 640px; color: var(--ink-2); font-size: 18px; }
.crumbs { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 26px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--gold-3); }
.crumbs span { color: var(--gold-3); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--green); color: var(--ivory); padding: 0; }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trustbar__item {
  padding: 44px 34px; display: flex; gap: 18px; align-items: flex-start;
  border-left: 1px solid rgba(251, 248, 241, 0.12);
}
.trustbar__item:first-child { border-left: none; }
.trustbar__item svg { width: 30px; height: 30px; color: var(--gold-2); flex: none; margin-top: 3px; }
.trustbar__item strong { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: 0.02em; }
.trustbar__item span { font-size: 13.5px; color: rgba(251, 248, 241, 0.72); line-height: 1.55; }

/* ---------- Product cards ---------- */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px; }
.pcard {
  background: var(--ivory); border-radius: var(--r); overflow: hidden; position: relative;
  box-shadow: var(--shadow-1); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column; text-decoration: none;
}
.pcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-3); }
.pcard__media { position: relative; aspect-ratio: 4/4.4; overflow: hidden; background: var(--bg-2); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__badge {
  position: absolute; top: 18px; left: 18px; background: var(--green); color: var(--gold-2);
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600; padding: 8px 14px; border-radius: 999px;
}
.pcard__body { padding: 30px 32px 34px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pcard__title { font-family: var(--font-display); font-size: 27px; }
.pcard__sub { color: var(--ink-3); font-size: 14px; }
.pcard__row { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; padding-top: 18px; }
.price { font-family: var(--font-display); font-size: 30px; color: var(--green-2); line-height: 1; }
.price small { font-family: var(--font-body); font-size: 12px; color: var(--ink-3); display: block; margin-top: 6px; letter-spacing: 0.06em; }
.pcard__cta {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--gold-3);
}
.pcard__cta svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.pcard:hover .pcard__cta svg { transform: translateX(6px); }

/* ---------- Split / story ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--r); box-shadow: var(--shadow-2); width: 100%; object-fit: cover; }
.split__media .frame {
  position: absolute; inset: 22px -22px -22px 22px; border: 1px solid var(--gold-2); border-radius: var(--r); z-index: -1;
}
.split__media .stamp {
  position: absolute; right: -26px; top: -26px; width: 128px; height: 128px; border-radius: 50%;
  background: var(--green); color: var(--gold-2); display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; text-align: center; font-weight: 600;
  box-shadow: var(--shadow-2); transform: rotate(8deg); padding: 10px;
}
.steps { margin-top: 44px; display: grid; gap: 0; }
.step { display: flex; gap: 26px; padding: 26px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num { font-family: var(--font-display); font-size: 34px; color: var(--gold); line-height: 1; min-width: 52px; }
.step h3 { font-size: 23px; margin-bottom: 6px; }
.step p { color: var(--ink-2); font-size: 15.5px; }

/* ---------- Benefits ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.benefit {
  background: rgba(251, 248, 241, 0.05); border: 1px solid rgba(251, 248, 241, 0.14);
  border-radius: var(--r); padding: 40px 30px; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.benefit:hover { background: rgba(251, 248, 241, 0.09); transform: translateY(-6px); border-color: var(--gold); }
.benefit svg { width: 34px; height: 34px; color: var(--gold-2); margin-bottom: 24px; }
.benefit h3 { color: var(--ivory); font-size: 24px; margin-bottom: 12px; }
.benefit p { font-size: 14.5px; color: rgba(251, 248, 241, 0.72); }

/* ---------- Anwendung ---------- */
.use-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.use-cards { display: grid; gap: 18px; }
.use-card {
  background: var(--ivory); border-radius: var(--r); padding: 26px 28px; display: flex; gap: 20px;
  box-shadow: var(--shadow-1); border: 1px solid var(--line-soft); transition: transform 0.35s var(--ease);
}
.use-card:hover { transform: translateX(8px); }
.use-card .n {
  font-family: var(--font-display); font-size: 22px; color: var(--gold-3); border: 1px solid var(--gold-2);
  width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none;
}
.use-card h3 { font-size: 21px; margin-bottom: 6px; }
.use-card p { font-size: 14.5px; color: var(--ink-2); }

/* ---------- Quote band ---------- */
.quote-band { padding: 120px 0; text-align: center; position: relative; }
.quote-band .q {
  font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 44px); font-style: italic; max-width: 900px; margin: 0 auto;
  line-height: 1.35;
}
.quote-band .q b { color: var(--gold-3); font-weight: 500; }
.quote-band .who { margin-top: 30px; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi {
  background: var(--ivory); border-radius: var(--r); padding: 40px 34px; box-shadow: var(--shadow-1);
  border: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 18px; position: relative;
}
.testi::before {
  content: "\201C"; font-family: var(--font-display); font-size: 90px; line-height: 0.6; color: var(--gold-2);
  position: absolute; top: 34px; right: 30px; opacity: 0.5;
}
.stars { display: flex; gap: 4px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.testi p { font-size: 15.5px; color: var(--ink-2); font-style: italic; }
.testi .who { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.testi .ava {
  width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 19px;
}
.testi .who strong { display: block; font-size: 15px; }
.testi .who span { font-size: 12.5px; color: var(--ink-3); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.acc { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 26px 4px; text-align: left;
}
.acc__btn h3 { font-size: 21px; transition: color 0.3s; }
.acc__btn:hover h3 { color: var(--gold-3); }
.acc__icon { flex: none; width: 34px; height: 34px; border: 1px solid var(--gold); border-radius: 50%; position: relative; transition: transform 0.4s var(--ease), background 0.3s; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--gold-3); top: 50%; left: 50%; }
.acc__icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.acc__icon::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.acc.open .acc__icon { transform: rotate(45deg); background: var(--gold-2); }
.acc.open .acc__icon::before, .acc.open .acc__icon::after { background: var(--ivory); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.acc__panel-inner { padding: 0 4px 30px; color: var(--ink-2); font-size: 15.5px; max-width: 720px; }
.acc__panel-inner ul { margin: 10px 0 0 18px; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--green-2); color: var(--ivory); padding: 90px 0; position: relative; overflow: hidden; }
.newsletter::before, .newsletter::after {
  content: ""; position: absolute; border: 1px solid rgba(201, 168, 96, 0.25); border-radius: 50%;
}
.newsletter::before { width: 520px; height: 520px; right: -160px; top: -220px; }
.newsletter::after { width: 340px; height: 340px; left: -120px; bottom: -160px; }
.newsletter .inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.newsletter h2 { color: var(--ivory); }
.newsletter p { color: rgba(251, 248, 241, 0.7); margin-top: 14px; }
.nl-form { display: flex; gap: 0; background: rgba(251, 248, 241, 0.07); border: 1px solid rgba(201, 168, 96, 0.4); border-radius: 999px; padding: 7px; }
.nl-form input {
  flex: 1; background: none; border: none; outline: none; color: var(--ivory); padding: 12px 24px; font-size: 15px; font-family: inherit; min-width: 0;
}
.nl-form input::placeholder { color: rgba(251, 248, 241, 0.45); }
.nl-form .btn { padding: 14px 28px; }
.nl-note { font-size: 12px; color: rgba(251, 248, 241, 0.5); margin-top: 14px; }
.nl-success { display: none; padding: 22px 8px; color: var(--gold-2); font-size: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--green-2); color: rgba(251, 248, 241, 0.78); padding: 90px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 70px; }
.footer h4 { color: var(--ivory); font-size: 13px; letter-spacing: 0.26em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; margin-bottom: 24px; }
.footer a { color: rgba(251, 248, 241, 0.78); text-decoration: none; transition: color 0.3s; }
.footer a:hover { color: var(--gold-2); }
.footer ul { list-style: none; display: grid; gap: 12px; font-size: 14.5px; }
.footer__brand p { font-size: 14.5px; margin: 18px 0 26px; max-width: 300px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold-2); flex: none; margin-top: 4px; }
.pay-badges { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.pay-badges span {
  border: 1px solid rgba(251, 248, 241, 0.22); border-radius: 6px; padding: 6px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: rgba(251, 248, 241, 0.85); background: rgba(251, 248, 241, 0.05);
}
.footer__bottom {
  border-top: 1px solid rgba(251, 248, 241, 0.12); padding: 26px 0; font-size: 13px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer__bottom .links { display: flex; gap: 26px; flex-wrap: wrap; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 2500; display: none;
  background: var(--green-2); color: var(--ivory); box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
}
.cookie.show { display: block; animation: up 0.6s var(--ease); }
@keyframes up { from { transform: translateY(100%); } }
.cookie .inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 22px 0; flex-wrap: wrap; }
.cookie p { font-size: 14px; color: rgba(251, 248, 241, 0.85); max-width: 760px; }
.cookie a { color: var(--gold-2); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 2100; width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); color: var(--gold-2); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-2); text-decoration: none; transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: translateY(-4px) scale(1.04); }
.wa-float svg { width: 27px; height: 27px; }

/* ---------- Cart drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(20, 25, 15, 0.5); z-index: 2200; opacity: 0; pointer-events: none; transition: opacity 0.4s;
  backdrop-filter: blur(3px);
}
.drawer-backdrop.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(460px, 94vw); background: var(--ivory); z-index: 2300;
  transform: translateX(102%); transition: transform 0.5s var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-3);
}
.drawer.open { transform: translateX(0); }
.drawer__head { padding: 26px 30px; border-bottom: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; }
.drawer__head h3 { font-size: 26px; }
.drawer__close { background: none; border: none; padding: 6px; color: var(--ink-2); }
.drawer__close svg { width: 22px; height: 22px; }
.drawer__items { flex: 1; overflow-y: auto; padding: 12px 30px; }
.drawer__empty { text-align: center; color: var(--ink-3); padding: 60px 20px; }
.drawer__empty svg { width: 44px; height: 44px; margin: 0 auto 16px; color: var(--gold); }
.cart-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.cart-item img { width: 74px; height: 86px; object-fit: cover; border-radius: 8px; }
.cart-item__info { flex: 1; }
.cart-item__info strong { font-family: var(--font-display); font-size: 18px; font-weight: 600; display: block; }
.cart-item__info .u { font-size: 12.5px; color: var(--ink-3); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; margin-top: 10px; }
.qty button { background: none; border: none; width: 30px; height: 30px; font-size: 15px; color: var(--green-2); }
.qty span { min-width: 26px; text-align: center; font-size: 14px; font-weight: 600; }
.cart-item__right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item__right .p { font-family: var(--font-display); font-size: 19px; color: var(--green-2); }
.cart-item__rm { background: none; border: none; color: var(--ink-3); font-size: 12px; text-decoration: underline; }
.cart-item__rm:hover { color: var(--red); }
.drawer__foot { border-top: 1px solid var(--line-soft); padding: 24px 30px 30px; background: var(--bg); }
.drawer__sum { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 6px; }
.drawer__sum.total { font-family: var(--font-display); font-size: 24px; color: var(--green-2); margin-bottom: 16px; }
.drawer__foot .note { font-size: 12px; color: var(--ink-3); margin-top: 12px; text-align: center; }
.ship-hint { font-size: 12.5px; color: var(--gold-3); margin-bottom: 14px; text-align: center; min-height: 18px; }

/* ---------- Modal (demo / payment) ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 2600; background: rgba(20, 25, 15, 0.55); display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.show { display: flex; }
.modal {
  background: var(--ivory); border-radius: 18px; max-width: 520px; width: 100%; padding: 46px 44px; position: relative;
  box-shadow: var(--shadow-3); animation: up 0.4s var(--ease); text-align: center;
}
.modal .emblem { width: 62px; height: 62px; margin: 0 auto 20px; }
.modal h3 { font-size: 28px; margin-bottom: 12px; }
.modal p { color: var(--ink-2); font-size: 15px; }
.modal .btn { margin-top: 26px; }
.modal__close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--ink-3); padding: 6px; }

/* ---------- Product page ---------- */
.pdp { padding: calc(var(--header-h) + 60px) 0 90px; }
.pdp__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.gallery__main { border-radius: var(--r); overflow: hidden; background: var(--bg-2); aspect-ratio: 1/1.06; box-shadow: var(--shadow-2); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.gallery__thumbs button { border: 2px solid transparent; border-radius: 10px; overflow: hidden; padding: 0; background: var(--bg-2); transition: border-color 0.3s; }
.gallery__thumbs button.active { border-color: var(--gold); }
.gallery__thumbs img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }

.pdp__title { font-size: clamp(34px, 3.6vw, 50px); margin: 10px 0 8px; }
.pdp__price-row { display: flex; align-items: baseline; gap: 18px; margin: 22px 0 4px; }
.pdp__price { font-family: var(--font-display); font-size: 42px; color: var(--green-2); }
.pdp__grund { font-size: 13px; color: var(--ink-3); }
.pdp__tax { font-size: 13px; color: var(--ink-3); margin-bottom: 26px; }
.pdp__tax a { color: var(--gold-3); }
.pdp__desc { color: var(--ink-2); margin-bottom: 30px; }
.pdp__buy { display: flex; gap: 16px; align-items: stretch; margin-bottom: 16px; }
.pdp__buy .qty { margin: 0; border-color: var(--line); height: 56px; }
.pdp__buy .qty button { width: 44px; height: 100%; }
.pdp__buy .btn { flex: 1; }
.pdp__usps { list-style: none; display: grid; gap: 12px; margin: 28px 0; }
.pdp__usps li { display: flex; gap: 12px; font-size: 14.5px; color: var(--ink-2); align-items: flex-start; }
.pdp__usps svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.pdp__shipbox {
  border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; font-size: 13.5px; color: var(--ink-2);
  display: flex; gap: 14px; align-items: center; background: var(--ivory);
}
.pdp__shipbox svg { width: 22px; height: 22px; color: var(--green-3); flex: none; }
.pdp__shipbox a { color: var(--gold-3); }

/* nutrition table */
.nutri { width: 100%; border-collapse: collapse; font-size: 14.5px; margin-top: 6px; }
.nutri caption { text-align: left; font-size: 12.5px; color: var(--ink-3); padding-bottom: 10px; }
.nutri td { padding: 10px 4px; border-bottom: 1px solid var(--line-soft); }
.nutri td:last-child { text-align: right; color: var(--ink-2); }

/* ---------- Knowledge / content pages ---------- */
.content { max-width: 800px; margin: 0 auto; }
.content h2 { font-size: clamp(28px, 3.2vw, 38px); margin: 56px 0 18px; }
.content h3 { margin: 34px 0 12px; font-size: 24px; }
.content p { color: var(--ink-2); margin-bottom: 16px; }
.content ul, .content ol { margin: 0 0 18px 22px; color: var(--ink-2); }
.content li { margin-bottom: 8px; }
.content .callout {
  border-left: 3px solid var(--gold); background: var(--ivory); border-radius: 0 12px 12px 0;
  padding: 22px 28px; margin: 30px 0; font-size: 15px; color: var(--ink-2);
}
.toc { background: var(--ivory); border: 1px solid var(--line-soft); border-radius: var(--r); padding: 28px 34px; margin: 36px 0 10px; }
.toc strong { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-3); }
.toc ol { margin: 14px 0 0 20px; }
.toc a { color: var(--green-3); font-size: 15px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.ccard { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line-soft); align-items: flex-start; }
.ccard .ic {
  width: 52px; height: 52px; border-radius: 50%; background: var(--green); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.ccard .ic svg { width: 22px; height: 22px; }
.ccard strong { font-family: var(--font-display); font-size: 21px; display: block; }
.ccard a { color: var(--gold-3); text-decoration: none; }
.form { background: var(--ivory); border-radius: var(--r); padding: 44px 42px; box-shadow: var(--shadow-1); border: 1px solid var(--line-soft); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); background: var(--bg); border-radius: 10px; padding: 14px 16px;
  font-family: inherit; font-size: 15px; color: var(--ink); outline: none; transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176, 138, 60, 0.15); }
.map-box { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-1); margin-top: 50px; border: 1px solid var(--line-soft); }
.map-box iframe { width: 100%; height: 380px; border: 0; display: block; filter: saturate(0.7) contrast(0.95); }

/* ---------- Legal pages ---------- */
.legal { padding: 40px 0 100px; }
.legal h2 { font-size: 30px; margin: 44px 0 12px; }
.legal h3 { font-size: 21px; margin: 30px 0 10px; }
.legal p, .legal li { color: var(--ink-2); font-size: 15px; }
.legal ul { margin: 0 0 16px 20px; }
mark.todo { background: rgba(176, 138, 60, 0.18); color: var(--gold-3); padding: 1px 6px; border-radius: 4px; font-weight: 600; }

/* ---------- Danke ---------- */
.danke-hero { text-align: center; padding: calc(var(--header-h) + 100px) 0 90px; }
.danke-hero .check {
  width: 92px; height: 92px; border-radius: 50%; background: var(--green); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; box-shadow: var(--shadow-2);
}
.danke-hero .check svg { width: 44px; height: 44px; }
.next-pay { max-width: 560px; margin: 34px auto 0; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; box-shadow: var(--shadow-1); display: none; }
.next-pay.show { display: block; }

/* ---------- 404 ---------- */
.err { text-align: center; padding: calc(var(--header-h) + 120px) 0 140px; }
.err .code { font-family: var(--font-display); font-size: clamp(90px, 16vw, 200px); color: var(--green); line-height: 1; }
.err .code em { color: var(--gold); font-style: normal; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.12s; }
.reveal[data-d="2"] { transition-delay: 0.24s; }
.reveal[data-d="3"] { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Noise overlay ---------- */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__item:nth-child(3) { border-left: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .split, .use-grid, .pdp__grid, .contact-grid, .newsletter .inner { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .testi-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .hero__bg::after { background: linear-gradient(180deg, rgba(247,243,234,0.94) 30%, rgba(247,243,234,0.55) 60%, rgba(20,42,32,0.25) 100%); }
}
@media (max-width: 620px) {
  .trustbar__grid, .benefit-grid { grid-template-columns: 1fr; }
  .trustbar__item { border-left: none; border-top: 1px solid rgba(251,248,241,0.12); }
  .footer__grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .pdp__buy { flex-wrap: wrap; }
  .announce { font-size: 10px; letter-spacing: 0.14em; }
  .hero__meta { gap: 22px; }
}
