﻿/* ─────────────────────────────────────────────────────────
   F & K Peptides V2 — Design System
   Premium glassmorphism + neon accent + serious typography
   ───────────────────────────────────────────────────────── */
:root {
  /* Palette: deep space + bio-luminescent accents + amber-gold premium */
  --bg-base:      #050514;
  --bg-elev-1:    #0a0a1f;
  --bg-elev-2:    #11112e;
  --surface:      rgba(255,255,255,0.035);
  --surface-hi:   rgba(255,255,255,0.075);
  --border:       rgba(255,255,255,0.07);
  --border-hi:    rgba(255,255,255,0.16);

  --text:         #f5f7ff;
  --text-mute:    rgba(245,247,255,0.65);
  --text-dim:     rgba(245,247,255,0.42);

  /* PLASMA Palette — Magenta + Cyan + Violet + Mint */
  --c-violet:     #a855f7;  /* purple/violet, brighter */
  --c-violet-hi:  #c084fc;
  --c-cyan:       #22d3ee;  /* electric cyan */
  --c-cyan-hi:    #67e8f9;
  --c-magenta:    #ec4899;  /* hot pink */
  --c-magenta-hi: #f472b6;
  --c-mint:       #2dd4bf;  /* teal-mint */
  --c-rose:       #fb7185;
  --c-gold:       #fde047;
  --c-amber:      #fbbf24;

  /* Multi-stop gradients — Plasma look */
  --grad-brand:   linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #22d3ee 100%);
  --grad-neon:    linear-gradient(135deg, #f472b6 0%, #c084fc 40%, #67e8f9 100%);
  --grad-premium: linear-gradient(135deg, #fde047 0%, #ec4899 50%, #a855f7 100%);
  --grad-shimmer: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  --grad-text-anim: linear-gradient(120deg, #67e8f9 0%, #c084fc 25%, #f472b6 50%, #c084fc 75%, #67e8f9 100%);
  --grad-deep:    radial-gradient(circle at 18% 0%, rgba(168,85,247,0.22), transparent 55%),
                  radial-gradient(circle at 82% 70%, rgba(34,211,238,0.18), transparent 50%),
                  radial-gradient(circle at 50% 100%, rgba(236,72,153,0.12), transparent 50%);

  --shadow-sm:    0 4px 12px rgba(0,0,0,0.35);
  --shadow-md:    0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
  --shadow-lg:    0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06) inset;
  --shadow-glow:  0 0 40px rgba(139,92,246,0.35);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*:focus-visible { outline: 2px solid var(--c-cyan); outline-offset: 2px; border-radius: 4px; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Site-wide ambient background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--grad-deep);
  pointer-events: none;
  z-index: 0;
}

/* Subtle noise overlay (perceptually richer than flat color) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

main, header, footer, section { position: relative; z-index: 1; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { color: var(--text-mute); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--text-mute); line-height: 1.7; max-width: 60ch; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--c-violet);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--c-violet);
}

/* Gradient text */
.grad-text {
  background: var(--grad-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animated gradient text (slow shift) */
.grad-text-anim {
  background: var(--grad-text-anim);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s linear infinite;
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Premium gold gradient text (rare use) */
.grad-text-premium {
  background: var(--grad-premium);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── SPOTLIGHT CURSOR (folgt Maus, lokale Beleuchtung) ── */
.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
              rgba(139,92,246,0.10),
              transparent 40%);
  transition: opacity 0.3s;
}
@media (hover: none) { .spotlight { display: none; } }

/* ── SCROLL PROGRESS BAR (top) ── */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 1000;
  background: transparent;
  pointer-events: none;
}
.scroll-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--p, 0%);
  background: var(--grad-brand);
  box-shadow: 0 0 14px rgba(139,92,246,0.6);
  transition: width 0.05s linear;
}

/* ── Layout ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
section { padding: clamp(60px, 9vw, 120px) 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s var(--ease-spring), box-shadow 0.3s var(--ease-out), background 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-brand);
  background-size: 200% 100%;
  color: #fff;
  box-shadow: 0 8px 24px rgba(139,92,246,0.4), 0 0 0 1px rgba(255,255,255,0.1) inset;
  animation: btnGradBreath 6s ease-in-out infinite;
}
@keyframes btnGradBreath {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.btn-primary:hover { box-shadow: 0 14px 38px rgba(139,92,246,0.6), 0 0 60px rgba(6,182,212,0.25), 0 0 0 1px rgba(255,255,255,0.18) inset; }
/* Shimmer-Sweep beim Hover */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-shimmer);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: var(--surface-hi); border-color: rgba(255,255,255,0.25); }

.btn-lg { padding: 18px 34px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ── Glass card ── */
.glass {
  background: rgba(12,12,32,0.75);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,6,20,0.95);
  border-color: var(--border);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 700; font-size: 1.05rem; }
.nav-logo img { height: 32px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-link {
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--text-mute);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-link.active { color: var(--text); background: var(--surface-hi); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cart { position: relative; }
.nav-cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--c-rose);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  border: 2px solid var(--bg-base);
  min-width: 18px;
  text-align: center;
}
.nav-burger { display: none; background: transparent; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; padding: 8px; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
}
/* Canvas can be fullscreen (data-fullscreen="true") for whole page bg */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
/* Fallback wenn Canvas auf Low-End/reduced-motion ausgeschaltet ist:
   statisches Gradient hinter allem, sieht aehnlich aus, kostet nichts. */
html.no-canvas body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 20% 15%, rgba(168,85,247,0.20), transparent 70%),
    radial-gradient(50% 40% at 80% 85%, rgba(34,211,238,0.14), transparent 70%),
    radial-gradient(40% 30% at 60% 50%, rgba(236,72,153,0.10), transparent 70%);
}

/* ── PERFORMANCE-MODUS fuer Low-End-Geraete (Snapdragon ARM, alte Mobiles) ──
   Wird per JS aktiviert (html.fk-low-end). Schaltet ALLE blur/filter/backdrop-filter
   und alle dekorativen blobs/glows ab. Site bleibt voll lesbar + funktional,
   nur die teuren GPU-Effekte entfallen. */
html.fk-low-end *,
html.fk-low-end *::before,
html.fk-low-end *::after {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}
html.fk-low-end .blob-layer,
html.fk-low-end .spotlight,
html.fk-low-end .blob {
  display: none !important;
}
/* Transitions stark vereinfachen (kein blur-Transition mehr) */
html.fk-low-end .word-reveal .word {
  filter: none !important;
  transition: opacity 0.4s ease, transform 0.4s ease !important;
}
/* Box-shadows auf Cards beibehalten aber simpler */
html.fk-low-end .glass {
  box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
}
.hero-canvas[data-fullscreen="true"] {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

/* When fullscreen canvas is on, content goes on top */
body.has-canvas-bg main,
body.has-canvas-bg header,
body.has-canvas-bg footer,
body.has-canvas-bg section { position: relative; z-index: 2; }
body.has-canvas-bg::before { opacity: 0.5; } /* dimmer ambient when canvas is full */
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { margin: 18px 0 24px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat-val { font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; }
.stat-lbl { color: var(--text-dim); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; margin-top: 8px; }

/* ── Featured grid ── */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
  isolation: isolate;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(139,92,246,0.4), transparent 50%, rgba(6,182,212,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(139,92,246,0.18),
    0 0 0 1px rgba(255,255,255,0.06) inset;
}

/* Premium-Badge auf der Karte */
.product-card .premium-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad-premium);
  color: #1a0e00;
  box-shadow: 0 4px 14px rgba(251,191,36,0.4);
}
.product-img-wrap {
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(6,182,212,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.6s var(--ease-out), filter 0.3s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); filter: saturate(120%); }
.product-img-fallback { font-size: 4.5rem; opacity: 0.7; }

.product-body { padding: 22px 24px 26px; }
.product-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-violet);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-name { font-size: 1.05rem; font-weight: 600; line-height: 1.3; margin-bottom: 16px; min-height: 2.6em; }
.product-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-purity { font-size: 0.72rem; color: var(--c-mint); border: 1px solid rgba(52,211,153,0.3); background: rgba(52,211,153,0.08); padding: 3px 9px; border-radius: 999px; }
.add-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-hi);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s;
}
.add-btn:hover { background: var(--grad-brand); border-color: transparent; transform: translateY(-1px); }
.add-btn.added { background: var(--c-mint); color: #04111a; border-color: transparent; }
.sold-out {
  background: rgba(244,63,94,0.08);
  color: #fb7185;
  border: 1px solid rgba(244,63,94,0.2);
  text-align: center;
  padding: 12px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ── Categories ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}
.cat-tile {
  position: relative;
  padding: 28px 22px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  text-align: center;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  overflow: hidden;
}
.cat-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.cat-tile:hover::before { transform: scaleX(1); }
.cat-tile:hover { background: var(--surface-hi); border-color: var(--border-hi); transform: translateY(-3px); }
.cat-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}
.cat-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 10px rgba(168,85,247,0.45));
  transition: filter 0.35s var(--ease-out), transform 0.45s var(--ease-spring);
}
.cat-tile:hover .cat-icon svg {
  filter: drop-shadow(0 0 18px rgba(236,72,153,0.65));
  transform: scale(1.08) rotate(-4deg);
}
.cat-icon-sm {
  display: inline-flex;
  width: 18px;
  height: 18px;
  vertical-align: -4px;
  margin-right: 8px;
  flex-shrink: 0;
}
.cat-icon-sm svg {
  width: 100%;
  height: 100%;
  opacity: 0.85;
  transition: opacity 0.2s, filter 0.2s;
}
button:hover .cat-icon-sm svg,
button.active .cat-icon-sm svg {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(236,72,153,0.6));
}
.cat-name { font-weight: 600; font-size: 0.95rem; }
.cat-count { font-size: 0.78rem; color: var(--text-dim); margin-top: 4px; }

/* ── Trust bar ── */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.trust-item {
  padding: 26px 20px;
  text-align: center;
  background: var(--bg-base);
  transition: background 0.3s;
}
.trust-item:hover { background: var(--bg-elev-1); }
.trust-ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-ico svg {
  width: 100%;
  height: 100%;
  stroke: var(--c-violet);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-item:hover .trust-ico svg { stroke: var(--c-cyan); }
.trust-lbl { font-size: 0.84rem; color: var(--text-mute); font-weight: 600; }

/* Mikroskop: Lens rotiert, Beam pulse */
.ti-microscope .lens   { transform-origin: 24px 28px; animation: tiSpin 8s linear infinite; }
.ti-microscope .beam   { animation: tiBeam 2s ease-in-out infinite; }
@keyframes tiSpin { to { transform: rotate(360deg); } }
@keyframes tiBeam { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* CoA Document: Häkchen draw-in loop */
.ti-doc .check {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: tiDrawIn 2.4s ease-in-out infinite;
}
@keyframes tiDrawIn {
  0%, 20%  { stroke-dashoffset: 24; }
  50%, 80% { stroke-dashoffset: 0; }
  100%     { stroke-dashoffset: -24; }
}

/* Paket: Flap öffnet */
.ti-pack .flap {
  transform-origin: 8px 16px;
  animation: tiFlap 3s ease-in-out infinite;
}
@keyframes tiFlap {
  0%, 100% { transform: rotate(0); }
  40%, 60% { transform: rotate(-50deg); }
}

/* AT-Flag: Wave-Punkte pulse */
.ti-at .ping {
  transform-origin: 24px 24px;
  animation: tiPing 2.2s ease-out infinite;
}
@keyframes tiPing {
  0%   { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ── Feature blocks ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feat-card {
  padding: 32px 28px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.feat-card:hover { border-color: var(--border-hi); background: var(--surface-hi); }
.feat-card h3 { margin-bottom: 12px; }
.feat-ico {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-brand);
  border-radius: var(--r-md);
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(139,92,246,0.35);
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim); margin-bottom: 16px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.14em; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-mute); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--c-violet); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.82rem; flex-wrap: wrap; gap: 12px; }

/* ── Reveal-on-scroll utility (IntersectionObserver) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }

/* ── TOAST (Notification) ── */
.toast-stack {
  position: fixed;
  top: 80px; right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(20,20,38,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--c-mint);
  border-radius: var(--r-md);
  backdrop-filter: blur(6px) ;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 280px;
  max-width: 380px;
  animation: toastIn 0.4s var(--ease-spring), toastOut 0.4s var(--ease-out) 2.6s forwards;
  pointer-events: auto;
}
.toast .toast-ico { font-size: 1.2rem; }
.toast-img {
  width: 36px; height: 36px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  flex-shrink: 0;
}
.toast-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
@keyframes toastIn {
  from { transform: translateX(380px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes toastOut {
  to { transform: translateX(380px); opacity: 0; }
}

/* ── SKELETON LOADER (Produkt-Cards beim Laden) ── */
.skel-card {
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.skel-img { height: 280px; background: var(--surface); }
.skel-body { padding: 22px 24px 26px; }
.skel-line { height: 12px; background: var(--surface); border-radius: 4px; margin-bottom: 12px; }
.skel-line.short { width: 40%; }
.skel-line.tall  { height: 24px; width: 70%; }
.skel-card, .skel-line, .skel-img {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 100%);
  background-size: 200% 100%;
  animation: skelPulse 1.6s ease-in-out infinite;
}
@keyframes skelPulse {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── SVG SECTION DIVIDER (Peptid-Kette) ── */
.divider-mol {
  display: block;
  width: 100%;
  height: 80px;
  margin: -40px 0;
  pointer-events: none;
  opacity: 0.5;
}
.divider-mol .node { fill: var(--c-violet); filter: drop-shadow(0 0 8px rgba(139,92,246,0.6)); }
.divider-mol .node.cyan { fill: var(--c-cyan); filter: drop-shadow(0 0 8px rgba(6,182,212,0.6)); }
.divider-mol .bond { stroke: rgba(196,181,253,0.3); stroke-width: 1.2; }

/* ── STAT COUNTER ── */
.stat-val {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ── HERO PARALLAX (Inhalt verblasst beim Scrollen) ── */
.hero-content {
  will-change: transform, opacity;
}

/* ── MAGNETIC CURSOR-FOLLOW (für Cards/Buttons via JS) ── */
.magnetic { transition: transform 0.18s var(--ease-out); }

/* ── ADD-TO-CART Success Animation ── */
@keyframes checkPop {
  0%   { transform: scale(0); opacity: 0; }
  50%  { transform: scale(1.3); }
  100% { transform: scale(1); opacity: 1; }
}
.add-btn.added::before {
  content: '✓';
  display: inline-block;
  margin-right: 6px;
  animation: checkPop 0.4s var(--ease-spring);
}

/* ── MARQUEE (scrolling banner) ── */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeRoll 36s linear infinite;
  gap: 48px;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--text);
}
.marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-violet); box-shadow: 0 0 12px var(--c-violet); }
.marquee-item .dot.cyan { background: var(--c-cyan); box-shadow: 0 0 12px var(--c-cyan); }
.marquee-item .dot.gold { background: var(--c-gold); box-shadow: 0 0 12px var(--c-gold); }
.marquee-item .dot.mint { background: var(--c-mint); box-shadow: 0 0 12px var(--c-mint); }
@keyframes marqueeRoll {
  to { transform: translateX(-50%); }
}

/* ── WORD REVEAL (Headlines fliegen Wort für Wort rein, kein Word-Wrap-Bruch) ── */
.word-reveal { display: block; }
.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50%);
  filter: blur(6px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), filter 0.6s var(--ease-out);
  white-space: nowrap; /* nie mitten im Wort umbrechen */
}
.word-reveal.in .word { opacity: 1; transform: translateY(0); filter: blur(0); }
/* Gradient-Word: muss inline bleiben damit Background-Clip korrekt rendert */
.word-reveal .word.grad-text-anim,
.word-reveal .word.grad-text,
.word-reveal .word.grad-text-premium {
  background-clip: text;
  -webkit-background-clip: text;
}

/* ── FLOATING BLOBS (drift behind content for vibrance) ── */
.blob-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  mix-blend-mode: screen;
  animation: blobDrift 18s ease-in-out infinite alternate;
}
.blob.v { width: 380px; height: 380px; background: radial-gradient(circle, rgba(139,92,246,0.55), transparent 70%); top: -100px; left: -80px; }
.blob.c { width: 460px; height: 460px; background: radial-gradient(circle, rgba(6,182,212,0.45), transparent 70%); bottom: -120px; right: -60px; animation-delay: -6s; animation-duration: 22s; }
.blob.g { width: 320px; height: 320px; background: radial-gradient(circle, rgba(251,191,36,0.3), transparent 70%); top: 40%; left: 50%; animation-delay: -3s; animation-duration: 26s; }
@keyframes blobDrift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(60px,-50px) scale(1.12); }
  100% { transform: translate(-50px,40px) scale(0.94); }
}

/* ── SECTION HEAD ENTRANCE (slide alt L/R) ── */
.reveal-l, .reveal-r {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-l { transform: translateX(-40px); }
.reveal-r { transform: translateX(40px); }
.reveal-l.in, .reveal-r.in { opacity: 1; transform: translateX(0); }

/* ── GLOW HALO behind buttons ── */
.btn-primary { position: relative; }
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--grad-brand);
  filter: blur(6px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}
.btn-primary:hover::after { opacity: 0.7; }

/* ── MAGNETIC CARD GLOW: follows cursor via JS-set CSS vars ── */
.product-card { position: relative; cursor: pointer; }
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(220px circle at var(--gx, 50%) var(--gy, 50%),
              rgba(139,92,246,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.product-card:hover::after { opacity: 1; }

/* ── HEADLINE SHIMMER on hover ── */
h1 .grad-text-anim, h2 .grad-text-anim {
  background-size: 200% 100%;
  animation-duration: 6s;
}

/* ── PULSE ring on nav-logo ── */
.nav-logo img {
  position: relative;
  transition: filter 0.3s;
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 12px rgba(139,92,246,0.7));
}

/* ── STICKY scroll-snap (subtle, only home sections) ── */
.snap-y { scroll-snap-type: y proximity; }
.snap-y > section { scroll-snap-align: start; }

/* ── HERO content extra layers ── */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(800px circle at 30% 40%, rgba(168,85,247,0.28), transparent 60%);
  z-index: 1;
}

/* ── SMOOTH CURSOR (lagging dot) ── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-magenta);
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transform: translate3d(-50px,-50px,0);
  box-shadow: 0 0 14px var(--c-magenta);
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(168,85,247,0.6);
  pointer-events: none;
  z-index: 9997;
  transform: translate3d(-50px,-50px,0);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}
.cursor-ring.hover { width: 60px; height: 60px; border-color: var(--c-cyan); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── PRODUCT image Ken Burns (subtle continuous zoom) ── */
.product-img-wrap img {
  animation: kenBurns 22s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.product-card:hover .product-img-wrap img {
  animation-play-state: paused;
  transform: scale(1.1);
  filter: saturate(135%) brightness(108%);
}

/* ── HERO HEADLINE: scale + blur out on scroll (via JS sets --hs) ── */
.hero-content {
  transform-origin: top left;
  opacity: 0;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content.hero-enter {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── SECTION-HEAD Underline Animation ── */
.section-head h2 { position: relative; display: inline-block; }
.section-head h2::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -10px;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease-out) 0.3s;
  border-radius: 2px;
}
.section-head:has(.in) h2::after,
.section-head .reveal-l.in ~ a + h2::after,
.in h2::after { transform: scaleX(0.5); }

/* ── NUM SCRAMBLE EFFECT (counter has shimmer during count) ── */
.stat-val { transition: filter 0.3s; }
.stat-val.counting {
  background: var(--grad-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(168,85,247,0.6));
}

/* ── FOOTER galaxy bg ── */
.footer { position: relative; overflow: hidden; }
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 60%, rgba(168,85,247,0.12), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(34,211,238,0.10), transparent 50%);
  pointer-events: none;
}
.footer > .container { position: relative; z-index: 1; }

/* ── CAT-TILE pulse on hover ── */
.cat-tile::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--grad-brand);
  filter: blur(6px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}
.cat-tile { position: relative; }
.cat-tile:hover::after { opacity: 0.35; }
.cat-tile:hover .cat-icon { animation: catBob 0.6s var(--ease-spring); }
@keyframes catBob {
  0% { transform: scale(1) rotate(0); }
  50% { transform: scale(1.2) rotate(-8deg); }
  100% { transform: scale(1) rotate(0); }
}

/* ── ANIMATED Section-Bottom Glow line ── */
section { position: relative; }
.section-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-violet) 30%, var(--c-cyan) 50%, var(--c-magenta) 70%, transparent);
  opacity: 0.4;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   ASYMMETRIC HERO (Text links, SVG-Helix rechts)
   ═══════════════════════════════════════════════════════════ */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
/* Solo-Modus: zentriert, max-Width 760px */
.hero-grid--solo {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
}

.hero-visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at 50% 50%, rgba(168,85,247,0.32), rgba(34,211,238,0.18) 40%, transparent 70%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
  animation: vialGlow 5s ease-in-out infinite alternate;
}
@keyframes vialGlow {
  0%   { opacity: 0.55; transform: scale(0.92); }
  100% { opacity: 1;    transform: scale(1.12); }
}
.vial-svg {
  width: 100%;
  height: 100%;
  max-width: 380px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(168,85,247,0.25));
  animation: vialFloat 6s ease-in-out infinite;
  transition: transform 0.5s var(--ease-out);
}
@keyframes vialFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1.5deg); }
}
.hero-visual:hover .vial-svg {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.04) rotate(0deg);
  filter: drop-shadow(0 36px 70px rgba(0,0,0,0.7)) drop-shadow(0 0 55px rgba(168,85,247,0.5));
}
.hero-visual svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 60px rgba(168,85,247,0.4));
  animation: helixFloat 8s ease-in-out infinite;
}
@keyframes helixFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}

/* Bonds zeichnen sich rein */
.helix-bond {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: bondDraw 2.4s var(--ease-out) forwards;
}
.helix-bond:nth-child(odd)  { animation-delay: 0.2s; }
.helix-bond:nth-child(even) { animation-delay: 0.5s; }
@keyframes bondDraw { to { stroke-dashoffset: 0; } }

.helix-node {
  opacity: 0;
  transform-origin: center;
  animation: nodePop 0.6s var(--ease-spring) forwards;
}
@keyframes nodePop {
  0%   { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   BENTO GRID (1 großer + 3 kleine Bestseller)
   ═══════════════════════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 22px;
  min-height: 700px;
}
.bento-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-card .product-img-wrap { height: 100%; }
.bento-card:nth-child(1) .product-img-wrap { height: 480px; }
.bento-card:nth-child(1) .product-name { font-size: 1.4rem; }
.bento-card:nth-child(1) .product-price { font-size: 2rem; }
.bento-card { display: flex; flex-direction: column; }
.bento-card .product-body { flex: 1; display: flex; flex-direction: column; }
.bento-card .add-btn { margin-top: auto; }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: 0; }
  .bento-card:nth-child(1) { grid-column: span 2; grid-row: auto; }
  .bento-card:nth-child(1) .product-img-wrap { height: 320px; }
}
@media (max-width: 540px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card:nth-child(1) { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════════════════
   BIG-NUMBERS SECTION (Stripe-Stil massiv)
   ═══════════════════════════════════════════════════════════ */
.bignum-section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.bignum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 880px) { .bignum-grid { grid-template-columns: 1fr 1fr; } }
.bignum {
  padding: clamp(36px, 5vw, 60px) clamp(24px, 3vw, 40px);
  background: var(--bg-base);
  transition: background 0.3s;
  position: relative;
}
.bignum:hover { background: var(--bg-elev-1); }
.bignum-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  background: var(--grad-text-anim);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 10s linear infinite;
  display: inline-block;
}
.bignum-lbl {
  font-size: 0.84rem;
  color: var(--text-mute);
  margin-top: 14px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 26ch;
}
.bignum-sup { font-size: 0.5em; vertical-align: super; opacity: 0.7; margin-left: 4px; }

/* ═══════════════════════════════════════════════════════════
   SECTION NUMBER (01 / Bestseller)
   ═══════════════════════════════════════════════════════════ */
.eyebrow-num {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--c-violet);
}
.eyebrow-num .num {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.eyebrow-num .num::after {
  content: '/';
  margin: 0 8px;
  color: var(--text-dim);
  opacity: 0.5;
}
.eyebrow-num::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c-violet);
}

/* ═══════════════════════════════════════════════════════════
   DROP CAP (erster Buchstabe XXL)
   ═══════════════════════════════════════════════════════════ */
.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 800;
  float: left;
  line-height: 0.85;
  padding-right: 14px;
  padding-top: 6px;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════════════
   LIVE ACTIVITY TICKER (floating bottom-left)
   ═══════════════════════════════════════════════════════════ */
.activity-ticker {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  padding: 12px 16px 12px 14px;
  background: rgba(20,20,38,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--c-mint);
  border-radius: var(--r-md);
  backdrop-filter: blur(6px) ;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  font-size: 0.84rem;
  color: var(--text);
  opacity: 0;
  transform: translateX(-340px);
  transition: opacity 0.4s, transform 0.5s var(--ease-spring);
  pointer-events: none;
}
.activity-ticker.show { opacity: 1; transform: translateX(0); }
.activity-ticker .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-mint);
  box-shadow: 0 0 0 0 rgba(45,212,191,0.7);
  animation: pulseDot 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(45,212,191,0.7); }
  100% { box-shadow: 0 0 0 12px rgba(45,212,191,0); }
}
.activity-ticker .meta { color: var(--text-dim); font-size: 0.74rem; margin-top: 2px; }

@media (max-width: 640px) {
  .activity-ticker { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* ═══════════════════════════════════════════════════════════
   QUICK-VIEW MODAL
   ═══════════════════════════════════════════════════════════ */
.qv-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5,5,20,0.78);
  backdrop-filter: blur(6px) ;
  -webkit-backdrop-filter: blur(6px) ;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.qv-overlay.open { opacity: 1; pointer-events: auto; }
.qv-modal {
  position: fixed;
  top: 50%; left: 50%;
  z-index: 9001;
  width: min(960px, 94vw);
  max-height: 92vh;
  overflow: auto;
  background: var(--bg-elev-1);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-xl);
  box-shadow: 0 50px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05) inset;
  transform: translate(-50%, -45%) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.45s var(--ease-spring);
}
.qv-modal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.qv-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.qv-imgwrap {
  background: linear-gradient(135deg, rgba(168,85,247,0.14), rgba(34,211,238,0.1));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.qv-imgwrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.qv-imgwrap .qv-fallback { font-size: 8rem; opacity: 0.6; }
.qv-info { padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 18px; }
.qv-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(20,20,38,0.7);
  border: 1px solid var(--border-hi);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.qv-close:hover { background: var(--c-magenta); transform: rotate(90deg); }
.qv-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--c-violet); font-weight: 600; }
.qv-name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.2; }
.qv-price-row { display: flex; align-items: baseline; gap: 14px; }
.qv-price {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800;
  background: var(--grad-neon);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.qv-purity { font-size: 0.78rem; color: var(--c-mint); border: 1px solid rgba(45,212,191,0.3); background: rgba(45,212,191,0.08); padding: 4px 10px; border-radius: 999px; }
.qv-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.qv-spec { padding: 14px; background: var(--bg-base); }
.qv-spec-lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 4px; }
.qv-spec-val { font-family: var(--font-mono); font-size: 0.86rem; color: var(--text); }
.qv-stars { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--text-mute); }
.qv-stars .stars { color: var(--c-gold); font-size: 1rem; letter-spacing: 1px; }
.qv-actions { margin-top: auto; display: flex; gap: 10px; }
.qv-actions .btn { flex: 1; justify-content: center; }
@media (max-width: 720px) {
  .qv-grid { grid-template-columns: 1fr; min-height: 0; }
  .qv-imgwrap { height: 280px; }
  .qv-modal { max-height: 96vh; }
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS auf Product-Cards (Sterne)
   ═══════════════════════════════════════════════════════════ */
.product-rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--text-mute);
  margin-top: -10px; margin-bottom: 12px;
}
.product-rating .stars { color: var(--c-gold); letter-spacing: 1px; font-size: 0.84rem; }
.product-rating .count { opacity: 0.7; }

/* ═══════════════════════════════════════════════════════════
   STOCK URGENCY Badge
   ═══════════════════════════════════════════════════════════ */
.stock-urgency {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(244,63,94,0.15);
  border: 1px solid rgba(244,63,94,0.4);
  color: #fb7185;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.stock-urgency .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-rose);
  box-shadow: 0 0 0 0 rgba(251,113,133,0.7);
  animation: pulseDot 1.6s ease-out infinite;
}

/* Quick-View Button auf Card (overlay) */
.product-card .qv-btn {
  position: absolute;
  bottom: 92px; right: 14px;
  z-index: 4;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(5,5,20,0.85);
  border: 1px solid var(--border-hi);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.product-card:hover .qv-btn { opacity: 1; transform: translateY(0); }
.product-card .qv-btn:hover { background: var(--c-violet); }

/* ═══════════════════════════════════════════════════════════
   STICKY FLOATING CTA
   ═══════════════════════════════════════════════════════════ */
.float-cta {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--grad-brand);
  background-size: 200% 100%;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(168,85,247,0.5), 0 0 0 1px rgba(255,255,255,0.12) inset;
  opacity: 0;
  transform: translateY(80px) scale(0.9);
  transition: opacity 0.4s, transform 0.5s var(--ease-spring);
  pointer-events: none;
  animation: btnGradBreath 6s ease-in-out infinite;
}
.float-cta.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.float-cta:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 24px 56px rgba(168,85,247,0.65); }
.float-cta::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: var(--grad-brand);
  filter: blur(6px);
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 640px) {
  .float-cta { right: 12px; bottom: 12px; padding: 12px 18px; font-size: 0.82rem; }
}

/* ═══════════════════════════════════════════════════════════
   SIDE SECTION NAV (Apple-Stil Dots)
   ═══════════════════════════════════════════════════════════ */
.side-nav {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.side-nav a {
  display: block;
  position: relative;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease-out);
}
.side-nav a:hover { background: var(--c-violet); transform: scale(1.5); }
.side-nav a.active {
  background: var(--c-magenta);
  box-shadow: 0 0 14px var(--c-magenta);
  transform: scale(1.6);
}
.side-nav a::after {
  content: attr(data-label);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: rgba(20,20,38,0.95);
  border: 1px solid var(--border-hi);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
}
.side-nav a:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 900px) { .side-nav { display: none; } }

/* ═══════════════════════════════════════════════════════════
   FREE SHIPPING PROGRESS
   ═══════════════════════════════════════════════════════════ */
.ship-progress {
  margin: 18px 0 8px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.ship-progress .label {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 600;
}
.ship-progress .label .free-tag {
  color: var(--c-mint);
  display: none;
}
.ship-progress.unlocked .label .free-tag { display: inline; }
.ship-progress.unlocked .label .pending  { display: none; }
.ship-progress .bar {
  height: 8px;
  border-radius: 999px;
  background: var(--surface-hi);
  overflow: hidden;
  position: relative;
}
.ship-progress .fill {
  height: 100%;
  background: var(--grad-brand);
  background-size: 200% 100%;
  width: 0%;
  border-radius: 999px;
  transition: width 0.8s var(--ease-out);
  position: relative;
  box-shadow: 0 0 14px rgba(168,85,247,0.6);
  animation: btnGradBreath 4s ease-in-out infinite;
}
.ship-progress.unlocked .fill {
  background: linear-gradient(90deg, var(--c-mint), var(--c-cyan));
  box-shadow: 0 0 18px rgba(45,212,191,0.6);
}
.ship-progress .fill::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 20px;
  background: var(--grad-shimmer);
  animation: shipShimmer 2.4s linear infinite;
}
@keyframes shipShimmer {
  0%   { transform: translateX(0); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(40px); opacity: 0; }
}
.ship-progress.unlocked .fill::after { display: none; }
.ship-progress .icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.ship-progress.unlocked .icon-row { color: var(--c-mint); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   AGB / RESEARCH DISCLAIMER MODAL (erstes Mal)
   ═══════════════════════════════════════════════════════════ */
.disc-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(5,5,20,0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.4s var(--ease-out);
}
.disc-overlay.show { display: flex; }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
.disc-card {
  max-width: 540px;
  width: 100%;
  padding: 40px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(20,15,40,0.98), rgba(10,5,30,0.98));
  border: 1px solid rgba(168,85,247,0.3);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 80px rgba(168,85,247,0.2);
  position: relative;
}
.disc-card::before {
  content: '⚠';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--grad-brand);
  font-size: 1.8rem;
  box-shadow: 0 8px 30px rgba(168,85,247,0.5);
}
.disc-card h2 { font-size: 1.4rem; margin-bottom: 14px; text-align: center; }
.disc-card .lead { font-size: 0.95rem; line-height: 1.65; text-align: center; margin-bottom: 24px; }
.disc-list {
  list-style: none;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.disc-list li { padding: 6px 0; font-size: 0.88rem; color: var(--text-mute); display: flex; gap: 10px; }
.disc-list li::before { content: '✓'; color: var(--c-mint); font-weight: 700; flex-shrink: 0; }
.disc-actions { display: flex; gap: 12px; }
.disc-actions .btn { flex: 1; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER (granular, per-Kategorie)
   ═══════════════════════════════════════════════════════════ */
.cookie-bar {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9999;
  padding: 22px 24px;
  background: rgba(10,10,30,0.96);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  max-width: 920px;
  margin: 0 auto;
  display: none;
  animation: cookieIn 0.5s var(--ease-spring);
}
.cookie-bar.show { display: block; }
@keyframes cookieIn { from{transform:translateY(40px);opacity:0;} to{transform:translateY(0);opacity:1;} }
.cookie-top { display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text strong { display:block; margin-bottom: 4px; font-size: 0.95rem; }
.cookie-text p { font-size: 0.82rem; line-height: 1.55; color: var(--text-mute); }
.cookie-text a { color: var(--c-violet-hi); }
.cookie-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.cookie-actions .btn { padding: 9px 16px; font-size: 0.84rem; }
.cookie-detail {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.cookie-detail.show { display: block; }
.cookie-cat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat-info strong { display: block; font-size: 0.88rem; margin-bottom: 3px; }
.cookie-cat-info span { font-size: 0.78rem; color: var(--text-mute); }
.cookie-toggle {
  position: relative;
  width: 44px; height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle .slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  transition: 0.2s;
}
.cookie-toggle .slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: 0.2s;
}
.cookie-toggle input:checked + .slider { background: var(--c-violet); }
.cookie-toggle input:checked + .slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .slider { opacity: 0.6; cursor: not-allowed; }


/* ═══════════════════════════════════════════════════════════
   WISHLIST (Herz auf Card)
   ═══════════════════════════════════════════════════════════ */
.wish-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(10,10,30,0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-spring);
}
.wish-btn:hover { transform: scale(1.1); color: var(--c-magenta); border-color: rgba(236,72,153,0.4); }
.wish-btn.active { color: var(--c-magenta); border-color: var(--c-magenta); background: rgba(236,72,153,0.15); animation: wishPop 0.4s var(--ease-spring); }
@keyframes wishPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   RECENTLY VIEWED Strip
   ═══════════════════════════════════════════════════════════ */
.recent-strip {
  margin-top: 40px;
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}
.recent-strip h3 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-weight: 600;
}
.recent-list {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 8px;
}
.recent-item {
  flex-shrink: 0;
  width: 130px;
  text-decoration: none;
  color: inherit;
}
.recent-item .img {
  width: 100%;
  height: 120px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(34,211,238,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 8px;
}
.recent-item .img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.recent-item .name { font-size: 0.82rem; font-weight: 600; line-height: 1.3; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.recent-item .price { font-size: 0.84rem; color: var(--c-violet-hi); font-weight: 700; margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════
   FREE-SHIPPING KONFETTI
   ═══════════════════════════════════════════════════════════ */
.confetti-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}
.confetti {
  position: absolute;
  width: 10px; height: 14px;
  top: -20px;
  animation: confettiFall 1.6s ease-in forwards;
}
@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   ANIMATED LOGO (Helix-Stroke in Nav)
   ═══════════════════════════════════════════════════════════ */
.nav-logo {
  position: relative;
}
.nav-logo::before {
  content: '';
  position: absolute;
  left: -4px; top: 50%;
  width: 28px; height: 28px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(168,85,247,0.5), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.nav-logo:hover::before { opacity: 1; animation: logoPulse 1.5s ease-in-out infinite; }
@keyframes logoPulse {
  0%, 100% { transform: translateY(-50%) scale(0.9); opacity: 0.4; }
  50%      { transform: translateY(-50%) scale(1.3); opacity: 0.8; }
}

/* ═══════════════════════════════════════════════════════════
   FAQ LIVE-SEARCH
   ═══════════════════════════════════════════════════════════ */
.faq-search {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  color: var(--text);
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 24px;
  transition: border-color 0.2s;
}
.faq-search:focus { border-color: var(--c-violet); }
.faq-item.hidden { display: none; }
.faq-no-results {
  padding: 30px 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
  display: none;
}
.faq-no-results.show { display: block; }

/* ═══════════════════════════════════════════════════════════
   BOTTOM-NAV MOBILE (App-Style)
   ═══════════════════════════════════════════════════════════ */
.bottom-nav {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(5,5,20,0.98);
  border-top: 1px solid var(--border);
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
}
.bottom-nav .row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px;
  color: var(--text-mute);
  text-decoration: none;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}
.bottom-nav a.active { color: var(--c-violet-hi); }
.bottom-nav a.active::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 3px;
  background: var(--grad-brand);
  border-radius: 999px;
}
.bottom-nav .ico { font-size: 1.3rem; line-height: 1; }
.bottom-nav .bn-cart-count {
  position: absolute;
  top: 0; right: 22%;
  background: var(--c-magenta);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 999px;
  min-width: 14px;
  text-align: center;
  display: none;
}
@media (max-width: 760px) {
  .bottom-nav { display: block; }
  body { padding-bottom: 76px; }
  .float-cta { bottom: 90px !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; transition-delay: 0ms !important; animation-iteration-count: 1 !important; }
  .spotlight, .scroll-bar { display: none; }
  .word-reveal .word, .reveal, .reveal-l, .reveal-r { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   PRINT (Rechnungen / CoA-Druck)
   ═══════════════════════════════════════════════════════════ */
@media print {
  body { background: #fff !important; color: #000 !important; padding: 0 !important; }
  body::before, body::after { display: none !important; }
  .nav, .footer, .bottom-nav, .float-cta, .scroll-bar, .spotlight,
  .cookie-bar, .disc-overlay, .activity-ticker, .toast-stack,
  .marquee, .blob-layer, .hero-canvas, .side-nav, .cursor-dot, .cursor-ring,
  .add-btn, .wish-btn, .qv-btn, .btn { display: none !important; }
  main, section { padding: 0 !important; }
  .container { max-width: 100% !important; padding: 0 !important; }
  h1, h2, h3, p, td, th, li { color: #000 !important; }
  table { width: 100% !important; border-collapse: collapse; }
  table th, table td { border: 1px solid #999 !important; padding: 8px !important; text-align: left; }
  .grad-text, .grad-text-anim, .grad-text-premium {
    background: none !important; -webkit-text-fill-color: #000 !important; color: #000 !important;
  }
  a { color: #000 !important; text-decoration: none !important; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #555; }
  .glass, .product-card, .feat-card {
    background: #fff !important; border: 1px solid #999 !important; box-shadow: none !important;
    backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
  }
  @page { margin: 1.5cm; }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-visual { height: 380px; }
  .bignum-grid { grid-template-columns: 1fr 1fr; }
  .bignum-val { font-size: clamp(2.6rem, 14vw, 5rem); }
  .bento-grid { gap: 16px; }
}

@media (max-width: 760px) {
  .nav { padding: 10px 0; }
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    background: rgba(5,5,20,0.99);
    border-top: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  }
  .nav-link { width: 100%; padding: 12px 18px; font-size: 0.95rem; }

  /* Hero: vertikal stacked, kleinere headline */
  .hero { padding: 90px 0 50px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.05; }
  .hero .lead { font-size: 0.95rem; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { padding: 13px 22px; font-size: 0.9rem; }
  .hero-visual { display: none; }

  /* Sections kompakter */
  section { padding: 60px 0; }
  .bignum-section { padding: 60px 0 40px; }
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  h2.headline-anim { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Section heads: nicht in row, sondern stack */
  .section-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .section-head .btn { width: 100%; justify-content: center; }

  /* Eyebrow num kleiner */
  .eyebrow-num { font-size: 0.7rem; }

  /* Drop-cap auf Mobile aus (frisst Platz) */
  .drop-cap::first-letter { font-size: 2.2em; padding-right: 8px; padding-top: 2px; }

  /* Big-Numbers single row */
  .bignum-grid { grid-template-columns: 1fr; }
  .bignum { padding: 28px 22px; }
  .bignum-val { font-size: clamp(2.8rem, 16vw, 4.5rem); }
  .bignum-lbl { font-size: 0.82rem; margin-top: 10px; }

  /* Bento: 1-col, kein span 2 */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card:nth-child(1) { grid-column: span 1; }
  .bento-card:nth-child(1) .product-img-wrap { height: 220px; }
  .bento-card:nth-child(1) .product-name { font-size: 1.1rem; }
  .bento-card:nth-child(1) .product-price { font-size: 1.5rem; }

  /* Product-Card-Standard */
  .product-img-wrap { height: 220px; }
  .product-name { font-size: 0.95rem; min-height: 2.4em; }
  .product-price { font-size: 1.2rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Marquee schneller + kompakter */
  .marquee { padding: 12px 0; }
  .marquee-item { font-size: 0.82rem; gap: 10px; }
  .marquee-track { gap: 32px; }

  /* Trust row */
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 16px 12px; }

  /* Cat-Tile compact */
  .cat-tile { padding: 22px 16px; }
  .cat-icon { font-size: 1.8rem; margin-bottom: 8px; }
  .cat-name { font-size: 0.86rem; }

  /* Feat-Card */
  .feat-card { padding: 24px 22px; }
  .feat-card h3 { font-size: 1.1rem; }

  /* Activity-Ticker: kompakter */
  .activity-ticker { padding: 10px 14px; font-size: 0.78rem; }
  .activity-ticker .meta { font-size: 0.7rem; }

  /* Cursor weg auf touch (war eh deaktiviert, sicherheitshalber) */
  .cursor-dot, .cursor-ring, .spotlight { display: none !important; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .trust-row { grid-template-columns: 1fr; }
}
