/* ============================================================================
   sunweed.de – Design System
   "Apple Product Page"-Look: warm, holzig, cinematisch, dark premium.
   Farbwelt aus dem Logo: Sonnengelb/Gold, warmes Orange, Off-White, dunkles Holz.
   Vanilla CSS – keine Frameworks, kein Build-Step.
   ========================================================================== */

/* ----------------------------------------------------------------- Fonts
   Self-hosted (DSGVO). Variable Font "Fraunces" (elegant/serif Display)
   + System-Sans für Fließtext. Fällt auf System-Fonts zurück, falls die
   Font-Dateien (noch) fehlen. */
@font-face {
  font-family: 'SW Display';
  src: url('../fonts/fraunces-var.woff2') format('woff2');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

:root {
  /* --- Brand-Farben: Gelb (#fbc23a) als Grundfarbe --- */
  --sun:        #7d4604;   /* Akzent: dunkles Bernstein – klar lesbar auf Gelb UND Weiß */
  --sun-soft:   #f6b52c;   /* helles Gold für Verläufe/Füllungen */
  --sun-deep:   #5c3202;   /* dunkler Akzent (Orange-Braun) */
  --gold:       #6d4a0d;   /* dunkles Gold für Sterne/Badges auf Hell */
  --gold-bright:#b6842a;
  --leaf:        #285c14;  /* tiefes Blattgrün (Text/Akzent), AA-lesbar auf Gelb & Weiß */
  --leaf-soft:   #3c8a1f;  /* mittleres Grün */
  --leaf-bright: #6aa84f;  /* helles Grün */
  --leaf-pastel: #e6f0dc;  /* zartes Pastellgrün (Flächen) */
  --leaf-pastel2:#d3e6c4;  /* Pastellgrün etwas kräftiger */

  /* --- Flächen (hell/warm) & Text (dunkel) ---
     Variablennamen aus dem alten Theme beibehalten, Werte auf Light-Yellow gedreht:
     --ink* = Hintergründe/Flächen, --cream* = Textfarben. */
  --ink:        #fbc23a;   /* Seiten-Grundfarbe (Body-Hintergrund) */
  --ink-1:      #fff3d4;   /* warme Creme-Fläche (Footer, Inputs, Stage) */
  --ink-2:      #fffdf8;   /* Karten / Off-White */
  --ink-3:      #f2e2ba;   /* Hover / helle Ränder */
  --line:       rgba(40,28,10,.16);
  --line-soft:  rgba(40,28,10,.10);

  --cream:      #241a0c;   /* Haupttext (dunkel) */
  --cream-dim:  #5c4a2c;   /* gedämpfter Text */
  --cream-faint:#8a7038;   /* Metadaten */

  --wood:       #6B4A2B;

  /* --- Funktionsfarben --- */
  --ok:    #7FB069;
  --danger:#D26A5A;

  /* --- Typo --- */
  --font-display: 'SW Display', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* --- Maße --- */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 44px -22px rgba(60,42,10,.28);
  --shadow-lift: 0 26px 60px -26px rgba(60,42,10,.36);

  --ease: cubic-bezier(.16,.84,.44,1);
  --ease-out: cubic-bezier(.22,1,.36,1);

  --header-h: 116px;
}

/* ------------------------------------------------------------------- Reset */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img, picture, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.04; letter-spacing: -.015em; }
p { margin: 0 0 1em; }

::selection { background: var(--sun); color: var(--ink); }

/* ---------------------------------------------------------------- Utilities */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.wrap-narrow { max-width: var(--wrap-narrow); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sun); margin: 0 0 1rem;
}
.muted { color: var(--cream-dim); }
.center { text-align: center; }
.visually-hidden {
  position:absolute!important; width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

/* Scroll-Reveal (IntersectionObserver toggelt .is-in) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==================================================================== Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--ink) 62%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  border-bottom-color: var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; border-radius: 10px; box-shadow: 0 6px 18px -6px rgba(0,0,0,.6); }
.brand .word { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; letter-spacing: .02em; }
.brand .word span { color: var(--sun); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: .92rem; color: var(--cream-dim); transition: color .25s; }
.nav a:hover { color: var(--cream); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: rgba(244,236,221,.06); border: 1px solid var(--line);
  font-size: .88rem; transition: background .25s, border-color .25s;
}
.cart-btn:hover { background: rgba(246,182,44,.12); border-color: var(--sun); }
.cart-count {
  min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px;
  background: var(--sun); color: var(--ink); font-size: .72rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-count[hidden] { display: none; }

.nav-toggle { display: none; background: none; border: 0; padding: 6px; }
.nav-toggle span { display:block; width:22px; height:2px; background: var(--cream); margin:4px 0; transition: .3s; }

/* ===================================================================== Hero */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(246,182,44,.22), transparent 55%),
    radial-gradient(90% 60% at 50% 120%, rgba(228,144,31,.16), transparent 60%),
    var(--ink);
}
.hero-sun {
  position: absolute; z-index: 0; top: -18vh; left: 50%; transform: translateX(-50%);
  width: min(120vw, 1100px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 55%, rgba(246,182,44,.30), rgba(228,144,31,.06) 45%, transparent 62%);
  filter: blur(6px); pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.9rem, 9vw, 6.6rem);
  font-weight: 500; letter-spacing: -.03em; margin: 0 0 .3em;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--sun-soft), var(--gold-bright) 55%, var(--sun-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem); color: var(--cream-dim);
  max-width: 30ch; margin: 0 auto 2.2em;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; z-index: 2; left: 50%; bottom: 26px; transform: translateX(-50%);
  color: var(--cream-faint); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(var(--sun), transparent);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%,100%{opacity:.3;transform:scaleY(.7)} 50%{opacity:1;transform:scaleY(1)} }

/* ================================================================== Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius-pill);
  font-size: .98rem; font-weight: 600; letter-spacing: .01em;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .3s, background .3s, border-color .3s, color .3s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: linear-gradient(180deg, var(--sun-soft), var(--sun-deep));
  color: #221708; box-shadow: 0 14px 34px -14px rgba(246,182,44,.7);
}
.btn-primary:hover { box-shadow: 0 20px 44px -14px rgba(246,182,44,.85); transform: translateY(-2px); }
.btn-ghost { background: rgba(244,236,221,.05); border-color: var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--sun); background: rgba(246,182,44,.10); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; filter: grayscale(.4); }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

/* ================================================================= Sections */
.section { padding: clamp(70px, 11vw, 140px) 0; position: relative; }
.section-head { max-width: 42ch; margin: 0 0 clamp(40px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 .4em; }
.section-head p { color: var(--cream-dim); font-size: 1.08rem; }

.section-alt { background: linear-gradient(180deg, var(--ink), var(--ink-1)); }

/* --------------------------------------------- Sticky Storytelling (Home) */
.story { position: relative; }
.story-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px);
  align-items: center; padding: clamp(50px, 9vw, 120px) 0;
}
.story-row:nth-child(even) .story-media { order: 2; }
.story-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(120% 120% at 30% 20%, var(--ink-2), var(--ink));
  aspect-ratio: 4/5; display: grid; place-items: center;
  border: 1px solid var(--line-soft);
}
.story-media img { width: 82%; height: 82%; object-fit: contain; filter: drop-shadow(0 40px 60px rgba(0,0,0,.6)); }
.story-copy h3 { font-size: clamp(1.7rem, 4vw, 2.7rem); margin: 0 0 .5em; }
.story-copy p { color: var(--cream-dim); font-size: 1.06rem; max-width: 44ch; }
.story-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.6em; }
.chip {
  font-size: .8rem; padding: 7px 14px; border-radius: var(--radius-pill);
  background: rgba(246,182,44,.08); border: 1px solid var(--line); color: var(--sun-soft);
}

/* ==================================================================== Cards */
.grid-products {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}
.pcard {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .5s var(--ease), border-color .4s, box-shadow .5s;
}
.pcard:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-lift); }
.pcard-media {
  position: relative; aspect-ratio: 1; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 15%, rgba(246,182,44,.08), transparent 60%);
  overflow: hidden;
}
.pcard-media img {
  width: 78%; height: 78%; object-fit: contain;
  transition: transform .7s var(--ease); filter: drop-shadow(0 24px 34px rgba(0,0,0,.5));
}
.pcard:hover .pcard-media img { transform: scale(1.06) rotate(-1deg); }
.pcard-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--radius-pill);
}
.badge-unikat { background: var(--gold); color: #201400; }
.badge-sale { background: var(--danger); color: #fff; }
.badge-soldout { background: rgba(20,16,11,.8); color: var(--cream-dim); border: 1px solid var(--line); }
.pcard-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.pcard-body h3 { font-size: 1.28rem; margin: 0 0 .2em; }
.pcard-sub { color: var(--cream-faint); font-size: .88rem; margin: 0 0 1.1em; }
.pcard-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { display: flex; align-items: baseline; gap: 9px; font-family: var(--font-display); }
.price .now { font-size: 1.4rem; font-weight: 600; }
.price .was { font-size: .95rem; color: var(--cream-faint); text-decoration: line-through; }
.price-from { font-size: .72rem; color: var(--cream-faint); margin-right: 2px; }
.stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; }
.card-link::after { content: ""; position: absolute; inset: 0; }

/* ============================================================ Product Page */
.pdp-hero {
  min-height: 100svh; display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: clamp(30px, 5vw, 70px);
  padding: calc(var(--header-h) + 40px) 0 60px; position: relative;
}
.pdp-stage {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-lg);
  display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 20%, rgba(246,182,44,.14), transparent 55%), var(--ink-1);
  border: 1px solid var(--line-soft);
}
.pdp-stage img { width: 84%; height: 84%; object-fit: contain; filter: drop-shadow(0 50px 70px rgba(0,0,0,.65)); }
.pdp-info .eyebrow { margin-bottom: .8rem; }
.pdp-info h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin: 0 0 .25em; }
.pdp-info .subtitle { color: var(--cream-dim); font-size: 1.15rem; margin: 0 0 1.4em; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin: 0 0 1.6em; font-family: var(--font-display); }
.pdp-price .now { font-size: 2.1rem; font-weight: 600; }
.pdp-price .was { font-size: 1.1rem; color: var(--cream-faint); text-decoration: line-through; }
.pdp-buy { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 1.4em; }
.qty {
  display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill);
  overflow: hidden; background: rgba(244,236,221,.04);
}
.qty button { width: 44px; height: 50px; background: none; border: 0; font-size: 1.2rem; color: var(--cream); }
.qty button:hover { background: rgba(246,182,44,.14); }
.qty input { width: 44px; height: 50px; text-align: center; background: none; border: 0; color: var(--cream); font-size: 1rem; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 1.4em; color: var(--cream-dim); font-size: .88rem; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { width: 18px; height: 18px; color: var(--sun); }

.pdp-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; margin: 0 0 2em; }
.pdp-facts div { background: var(--ink-1); padding: 18px 20px; }
.pdp-facts dt { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 5px; }
.pdp-facts dd { margin: 0; font-size: 1rem; }

.prose { max-width: 62ch; }
.prose p { color: var(--cream-dim); font-size: 1.06rem; margin: 0 0 1.2em; }
.prose strong { color: var(--cream); }
.prose em { color: var(--cream-faint); }

/* ============================================================= Testimonials */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.quote {
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1)); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 32px 30px; position: relative;
}
.quote::before { content: "\201C"; font-family: var(--font-display); font-size: 4rem; line-height: .6; color: var(--sun); opacity: .5; }
.quote p { font-size: 1.08rem; color: var(--cream); margin: .3em 0 0; }
.quote .stars { margin-top: 1em; }

/* ==================================================================== Footer */
.site-footer { background: var(--ink-1); border-top: 1px solid var(--line); padding: clamp(50px,8vw,90px) 0 40px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-brand p { color: var(--cream-faint); font-size: .92rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sun); margin: 0 0 1.1em; }
.footer-col a { display: block; color: var(--cream-dim); font-size: .92rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--cream-faint); font-size: .82rem; }
.footer-bottom .pay { display: flex; gap: 10px; align-items: center; }

/* ================================================================= Age Gate */
.agegate {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  background: rgba(10,8,5,.86); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 24px;
}
.agegate-card {
  max-width: 440px; text-align: center; background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px 34px;
  box-shadow: var(--shadow-lift);
}
.agegate-card img { width: 68px; height: 68px; border-radius: 14px; margin: 0 auto 20px; }
.agegate-card h2 { font-size: 1.7rem; margin: 0 0 .5em; }
.agegate-card p { color: var(--cream-dim); font-size: .96rem; margin: 0 0 1.6em; }
.agegate-actions { display: flex; gap: 12px; justify-content: center; }
.agegate .small { font-size: .78rem; color: var(--cream-faint); margin-top: 1.4em; }

/* =================================================================== Notice */
.notice { padding: 14px 18px; border-radius: var(--radius); font-size: .92rem; margin: 0 0 20px; border: 1px solid; }
.notice-ok { background: rgba(127,176,105,.12); border-color: rgba(127,176,105,.4); color: #bfe0ac; }
.notice-err { background: rgba(210,106,90,.12); border-color: rgba(210,106,90,.4); color: #eab3a8; }
.notice-info { background: rgba(246,182,44,.10); border-color: var(--line); color: var(--sun-soft); }

/* KCanG / Alters-Hinweis – schlanke, dezente Trennzeile unter Header/Hero */
#main { position: relative; }
.age-note { text-align:center; font-size:.72rem; letter-spacing:.03em; color:var(--cream-faint); padding:11px 14px; border-bottom:1px solid var(--line-soft); }
/* Unterseiten: im leeren Band direkt unter dem Fixed-Header, ohne Layout-Sprung */
.age-note--top { position:absolute; top:var(--header-h); left:0; right:0; z-index:1; border-bottom:0; padding:8px 14px; }

/* ============================================================== Breadcrumbs */
.crumbs { display: flex; gap: 8px; font-size: .84rem; color: var(--cream-faint); padding-top: calc(var(--header-h) + 26px); }
.crumbs a:hover { color: var(--sun); }

/* ================================================================ Responsive */
@media (max-width: 900px) {
  .pdp-hero { grid-template-columns: 1fr; }
  .story-row { grid-template-columns: 1fr; }
  .story-row:nth-child(even) .story-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav, .header-actions .cart-label { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column;
    background: var(--ink-1); padding: 20px 24px; gap: 4px; border-bottom: 1px solid var(--line);
  }
  .nav.open a { padding: 12px 0; font-size: 1.05rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ================================================ Startseite: rahmenlose, große Bilder
   Nur auf der Startseite (body.page-home): Produkt- und Story-Bilder ohne Karten-Rahmen,
   freigestellt auf dem dunklen Hintergrund, deutlich größer. */

/* --- Storytelling-Bilder --- */
.page-home .story-media {
  background: none;
  border: 0;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: auto;
}
.page-home .story-media img {
  width: 116%;
  max-width: 116%;
  height: auto;
  margin-inline: -8%;
  filter: drop-shadow(0 50px 70px rgba(0, 0, 0, .6));
}

/* --- Produkt-Grid: rahmenlose Karten, große Bilder --- */
.page-home #produkte .grid-products {
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: clamp(28px, 3.4vw, 56px);
}
.page-home #produkte .pcard {
  background: none;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.page-home #produkte .pcard:hover {
  box-shadow: none;
  transform: translateY(-8px);
}
.page-home #produkte .pcard-media {
  background: none;
  aspect-ratio: 1;
  overflow: visible;
}
.page-home #produkte .pcard-media img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, .55));
}
.page-home #produkte .pcard:hover .pcard-media img {
  transform: scale(1.06) rotate(-1deg);
}
.page-home #produkte .pcard-body {
  padding: 20px 6px 8px;
  text-align: center;
}
.page-home #produkte .pcard-foot {
  justify-content: center;
  gap: 14px;
}

@media (max-width: 900px) {
  .page-home .story-media img { width: 100%; max-width: 100%; margin-inline: 0; }
}
@media (max-width: 720px) {
  .page-home #produkte .grid-products { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ============================================================ Gelb-Theme Feinschliff
   Grundfarbe: Gelb (#fbc23a). Dunkle Typo, helle Karten, Gold-Akzente. */

::selection { background: var(--cream); color: var(--sun-soft); }

/* Hero: warmes Gelb mit sanfter Tiefe */
.hero::before {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(255,255,255,.55), transparent 55%),
    radial-gradient(90% 65% at 50% 120%, rgba(154,84,6,.16), transparent 60%),
    var(--ink);
}
.hero-sun {
  background: radial-gradient(circle at 50% 55%, rgba(255,255,255,.55), rgba(255,213,110,.18) 45%, transparent 62%);
}
.hero h1 { color: var(--cream); }
.hero h1 .grad {
  background: linear-gradient(100deg, #c2410c, #8a2d05 60%, #b5730a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.scroll-hint::after { background: linear-gradient(var(--sun-deep), transparent); }

/* Primär-Button dunkel = starker CTA auf Gelb */
.btn-primary {
  background: linear-gradient(180deg, #2a1e0c, #191204);
  color: #ffe6ab;
  box-shadow: 0 14px 30px -14px rgba(40,28,10,.55);
}
.btn-primary:hover {
  box-shadow: 0 20px 40px -14px rgba(40,28,10,.72);
  transform: translateY(-2px);
}
.btn-ghost { background: rgba(40,28,10,.04); border-color: var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--sun); background: rgba(181,115,10,.10); }

/* Wechselsektionen: ruhige Creme-Fläche für Rhythmus */
.section-alt { background: var(--ink-1); }

/* Header-Buttons & Zähler */
.cart-btn { background: rgba(40,28,10,.05); }
.cart-btn:hover { background: rgba(181,115,10,.12); border-color: var(--sun); }
.cart-count { background: var(--cream); color: var(--sun-soft); }

/* Hinweise auf hellem Grund */
.notice-info { background: rgba(181,115,10,.10); border-color: rgba(181,115,10,.34); color: #7a4d06; }

/* Karten-Medienfläche: dezent warm statt dunkel */
.pcard-media { background: radial-gradient(120% 120% at 50% 15%, rgba(181,115,10,.06), transparent 60%); }
.pdp-stage { background: radial-gradient(120% 120% at 50% 20%, rgba(181,115,10,.10), transparent 55%), var(--ink-1); }

/* Alters-Gate: heller Karten-Look, dunkler Backdrop bleibt */
.agegate-card { background: var(--ink-2); }

/* ---- Header: optisch NICHT abgegrenzt (transparent, kein Rand/kein Blur) ---- */
.site-header,
.site-header.scrolled {
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* ---- Großes Logo im Header (ohne Wortmarke) ---- */
.site-header .brand-logo {
  height: 100px; width: auto; border-radius: 18px;
  box-shadow: 0 10px 26px -12px rgba(60,42,10,.45);
  transition: transform .3s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.04) rotate(-1deg); }
.site-header .brand .word { display: none; } /* Wortmarke im Header entfällt */

/* Sterne/Badges: dunkleres Gold für Lesbarkeit auf Gelb */
.stars { color: var(--gold); }
.price-from, .pcard-sub { color: var(--cream-dim); }

@media (max-width: 720px) {
  :root { --header-h: 84px; }
  .site-header .brand-logo { height: 64px; border-radius: 13px; }
}

/* Testmodus-Banner */
.test-strip {
  background: #1d1710; color: #ffd469; text-align: center;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em; padding: 8px 12px;
}

/* ================================================================= MATT statt Hochglanz
   Weniger Verläufe, keine Glows, dezente warme Schatten – ruhiger, handwerklicher Look. */
:root {
  --shadow-soft: 0 10px 24px -16px rgba(60,42,10,.20);
  --shadow-lift: 0 14px 30px -18px rgba(60,42,10,.24);
}

/* Hero: flaches Gelb ohne Glow, Headline ohne Farbverlauf */
.hero::before { background: var(--ink); }
.hero-sun { display: none; }
.hero h1 .grad {
  background: none;
  -webkit-background-clip: border-box; background-clip: border-box;
  -webkit-text-fill-color: var(--leaf); color: var(--leaf);
}
.scroll-hint::after { background: var(--sun-deep); opacity: .5; }

/* Buttons: flache Volltonfläche statt glänzendem Verlauf */
.btn-primary {
  background: #241a0c; color: #ffe6ab; box-shadow: none;
}
.btn-primary:hover { background: #33260f; box-shadow: none; transform: translateY(-1px); }

/* Produktbilder: dezenter, warmer Schatten statt Hochglanz-Schlagschatten */
.pcard-media img,
.page-home #produkte .pcard-media img { filter: drop-shadow(0 8px 14px rgba(60,42,10,.15)); }
.story-media img,
.page-home .story-media img { filter: drop-shadow(0 12px 20px rgba(60,42,10,.16)); }
.pdp-stage img { filter: drop-shadow(0 12px 22px rgba(60,42,10,.16)); }

/* Karten: ruhiger Hover, kein Kippen/Aufblitzen */
.pcard { transition: transform .4s var(--ease), border-color .4s; }
.pcard:hover { box-shadow: 0 12px 26px -18px rgba(60,42,10,.26); transform: translateY(-4px); }
.pcard:hover .pcard-media img,
.page-home #produkte .pcard:hover .pcard-media img { transform: scale(1.02); }
.pdp-stage { background: var(--ink-1); }

/* Stage/Karten-Medien: keine schimmernden Radial-Verläufe */
.pcard-media { background: var(--ink-2); }
.page-home #produkte .pcard-media { background: transparent; }

/* Logo & Admin: flacher */
.site-header .brand-logo { box-shadow: 0 3px 10px -7px rgba(60,42,10,.35); }
.brand:hover .brand-logo { transform: scale(1.02); }
.funnel-fill { background: var(--sun); }

/* Grüner Akzent (Cannabis-Thema) statt Rot – Rot bleibt nur für Fehler/Löschen */
.badge-sale { background: var(--leaf); color: #fff; }
.scroll-hint::after { background: var(--leaf); opacity: .55; }
::selection { background: var(--leaf); color: #fff; }

/* ---- Mehr Grün: verschiedene Töne, teils pastell ---- */
/* Kleine Überzeilen (Eyebrows) grün statt gold */
.eyebrow { color: var(--leaf); }
/* Primär-CTA: tiefes, mattes Grün */
.btn-primary { background: #234f16; color: #eef6e6; }
.btn-primary:hover { background: #2c6118; }
/* Chips (Story-Fakten): pastellgrün */
.chip { background: var(--leaf-pastel); border-color: rgba(40,92,20,.22); color: #234f16; }
/* Trust-Häkchen & Footer-Überschriften grün */
.trust-row svg { color: var(--leaf); }
.footer-col h4 { color: var(--leaf); }
/* Wechselsektionen: zartes Pastellgrün statt Creme (mehr „grüngelb"-Gefühl) */
.section-alt { background: var(--leaf-pastel); }
/* Formular-Fokus & Preis-Akzent grünlich */
.ck-input:focus, .adm-input:focus, .adm-select:focus, .adm-textarea:focus { border-color: var(--leaf-soft); }
/* Admin-Diagramme grün */
.funnel-fill { background: linear-gradient(90deg, var(--leaf-bright), var(--leaf)); }
.live-badge { background: rgba(40,92,20,.10); border-color: rgba(40,92,20,.30); }

/* Startseite: Produkt-/Story-Bilder OHNE Schatten, kräftige flüssige Parallaxe */
.page-home .story-media img,
.page-home #produkte .pcard-media img { filter: none !important; }
[data-parallax] { will-change: transform; }

/* ---- WYSIWYG-Editor (Admin, Seitenbearbeitung) ---- */
.rte { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--ink-2); }
.rte-toolbar { display: flex; flex-wrap: wrap; gap: 3px; align-items: center; padding: 8px 10px; background: var(--ink-1); border-bottom: 1px solid var(--line-soft); position: sticky; top: 0; z-index: 2; }
.rte-btn { min-width: 34px; height: 32px; padding: 0 9px; border: 1px solid transparent; border-radius: 8px; background: transparent; color: var(--cream); font-size: .85rem; line-height: 1; cursor: pointer; transition: background .15s, border-color .15s; }
.rte-btn:hover { background: rgba(40,92,20,.10); }
.rte-btn.is-active { background: var(--leaf); color: #fff; }
.rte-sep { width: 1px; height: 20px; background: var(--line); margin: 0 4px; }
.rte-area { min-height: 340px; max-height: 620px; overflow-y: auto; padding: 18px 20px; color: var(--cream); font-family: var(--font-sans); font-size: 1rem; line-height: 1.7; outline: none; }
.rte-area:focus { box-shadow: inset 0 0 0 2px rgba(60,138,31,.25); }
.rte-area h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 1.1em 0 .4em; }
.rte-area h3 { font-family: var(--font-display); font-size: 1.2rem; margin: 1em 0 .3em; }
.rte-area p { margin: 0 0 .8em; }
.rte-area ul, .rte-area ol { margin: 0 0 .9em; padding-left: 1.4em; }
.rte-area li { margin: .2em 0; }
.rte-area a { color: var(--leaf); text-decoration: underline; }
.rte-area blockquote { margin: 0 0 .9em; padding: .4em 0 .4em 1em; border-left: 3px solid var(--leaf); color: var(--cream-dim); }

/* Badges: Unikat = gelb/schwarz, Ausverkauft = schwarz/gelb */
.badge-unikat  { background: #fbc23a; color: #17120b; border: 1px solid #17120b; }
.badge-soldout { background: #17120b; color: #fbc23a; border: 1px solid #17120b; }

/* ---- Cookie-/Consent-Banner (schlanke Leiste) ---- */
.cc-banner{position:fixed;left:12px;right:12px;bottom:12px;z-index:1200;background:var(--ink-2);border:1px solid var(--line);border-radius:12px;box-shadow:0 8px 30px -10px rgba(60,42,10,.35)}
.cc-inner{max-width:1080px;margin:0 auto;padding:12px 16px;display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.cc-text{flex:1;min-width:220px;margin:0;color:var(--cream-dim);font-size:.86rem;line-height:1.45}
.cc-text a{color:var(--leaf,#285c14);text-decoration:underline}
.cc-actions{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.cc-actions .btn{padding:9px 18px;font-size:.9rem}
.cc-link{color:var(--cream-faint);font-size:.82rem;text-decoration:underline;padding:6px 4px;white-space:nowrap}
.cc-options{flex-basis:100%;margin-top:4px;padding-top:12px;border-top:1px solid var(--line-soft);display:flex;flex-direction:column;gap:9px}
.cc-opt{display:flex;gap:9px;align-items:flex-start;font-size:.84rem;color:var(--cream-dim);line-height:1.35}
.cc-opt input{margin-top:2px;flex:none}
.cc-opt strong{color:var(--cream);font-size:.86rem}
#cc-save-btn{align-self:flex-start;margin-top:2px}
@media(max-width:560px){.cc-inner{padding:12px 14px}.cc-actions{width:100%}.cc-actions .btn{flex:1}}

/* ---- Vollflächiger Bild-Hero (Startseite, ganz oben) ---- */
.hero-cover{
  position:relative; width:100%; height:100svh; min-height:520px;
  background-position:center center; background-size:cover; background-repeat:no-repeat;
}
/* dezenter Verlauf oben für Lesbarkeit von Logo/Navigation */
.hero-cover::before{
  content:""; position:absolute; inset:0 0 auto 0; height:var(--header-h);
  background:linear-gradient(rgba(20,16,8,.28), transparent);
  pointer-events:none;
}
.hero-cover-scroll{
  position:absolute; left:50%; bottom:26px; transform:translateX(-50%);
  width:30px; height:48px; border:2px solid rgba(255,255,255,.85); border-radius:16px;
  display:flex; justify-content:center; box-shadow:0 2px 10px rgba(0,0,0,.25);
}
.hero-cover-scroll span{
  width:4px; height:9px; margin-top:8px; border-radius:2px; background:#fff;
  animation:hcScroll 1.8s var(--ease) infinite;
}
@keyframes hcScroll{0%{opacity:0;transform:translateY(-4px)}40%{opacity:1}100%{opacity:0;transform:translateY(12px)}}
@media (prefers-reduced-motion: reduce){ .hero-cover-scroll span{animation:none} }
@media (max-width:720px){ .hero-cover{min-height:480px} }

/* ---- Widerruf-Modal (Pop-up) ---- */
.wf-modal{position:fixed;inset:0;z-index:1300;display:flex;align-items:center;justify-content:center;padding:20px}
.wf-modal[hidden]{display:none}
.wf-modal-bg{position:absolute;inset:0;background:rgba(20,16,8,.6);backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px)}
.wf-modal-panel{position:relative;width:600px;max-width:100%;max-height:90vh;background:var(--ink-2);border-radius:var(--radius-lg);box-shadow:0 30px 80px -20px rgba(0,0,0,.5);overflow:hidden;display:flex;flex-direction:column}
.wf-modal-x{position:absolute;top:10px;right:12px;z-index:2;width:38px;height:38px;border:0;border-radius:50%;background:rgba(40,28,10,.08);color:var(--cream);font-size:1.6rem;line-height:1;cursor:pointer}
.wf-modal-x:hover{background:rgba(40,28,10,.16)}
.wf-content{flex:1 1 auto;min-height:0;overflow-y:auto;-webkit-overflow-scrolling:touch;padding:36px 30px 28px;transition:opacity .15s}
.wf-content .section{padding:2px 0 0}
.wf-content .wrap{padding-inline:0}
.wf-content .section-head{margin-bottom:14px}
@media(max-width:560px){.wf-content{padding:34px 20px 22px}}

/* ---- Hero mit Bild im Hintergrund + Textblock darüber (Startseite) ---- */
.hero-photo{background-size:cover;background-position:center center;background-repeat:no-repeat}
.hero-photo::before{
  background:linear-gradient(rgba(24,17,7,.30), rgba(24,17,7,.62)) !important;
}
.hero-photo h1{color:#fff}
.hero-photo h1 .grad{-webkit-text-fill-color:#8ad16a !important;color:#8ad16a !important;background:none !important}
.hero-photo .eyebrow{color:#ffdf8a}
.hero-photo .lead{color:rgba(255,255,255,.92)}
.hero-photo .btn-ghost{color:#fff;border-color:rgba(255,255,255,.55);background:rgba(255,255,255,.10)}
.hero-photo .btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.20)}
.hero-photo .scroll-hint{color:rgba(255,255,255,.85)}
.hero-photo .scroll-hint::after{background:linear-gradient(rgba(255,255,255,.9), transparent)}
/* Navigation hell über dem Bild – bis zum Runterscrollen (dann wieder Standard) */
.page-home .site-header:not(.scrolled) .nav a{color:rgba(255,255,255,.92)}
.page-home .site-header:not(.scrolled) .nav a:hover{color:#fff}
.page-home .site-header:not(.scrolled) .cart-btn{color:#fff;border-color:rgba(255,255,255,.4);background:rgba(255,255,255,.10)}
.page-home .site-header:not(.scrolled) .nav-toggle span{background:#fff}

/* ---- Produkt-Varianten-Auswahl (PDP) ---- */
.pdp-variants{margin:2px 0 4px}
.pdp-var-lbl{display:block;font-size:.8rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--cream-dim);margin-bottom:7px}
.pdp-var{width:100%;padding:13px 15px;background:var(--ink-2);border:1px solid var(--line);border-radius:12px;color:var(--cream);font-size:16px;font-family:var(--font-sans);cursor:pointer}
.pdp-var:focus{outline:none;border-color:var(--sun)}
