/* ============================================================
   style.css — MAX AUTO Complete Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0d0d0f;
  --paper: #f4f1eb;
  --gold: #e8c84a;
  --gold-deep: #c8a830;
  --neon: #c8ff00;
  --red: #e63329;
  --muted: rgba(244,241,235,0.38);
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(232,200,74,0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* ── TICKER ────────────────────────────────────────────────── */
.ticker {
  background: var(--neon);
  color: var(--ink);
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 26s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── NAV ───────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13,13,15,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6vw;
  transition: background 0.3s;
}
nav.nav-scrolled { background: rgba(13,13,15,0.97); }

/* Nav Logo als Link */
.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--neon); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  background: var(--neon);
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.nav-cta:hover { background: #b8ef00; transform: translateY(-1px); }

.nav-cart-link {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--paper);
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.nav-cart-link:hover { color: var(--gold); }

.nav-cart-icon { font-size: 1.1rem; }
.nav-cart-label { opacity: 0.6; }

.nav-cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes badgePulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  100% { transform: scale(1); }
}
.badge-pulse { animation: badgePulse 0.5s cubic-bezier(0.36,0.07,0.19,0.97); }

.nav-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(244,241,235,0.55);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-back-btn:hover { color: var(--gold); }
.nav-back-arrow { font-size: 1rem; }

.nav-cart-icon-static { font-size: 1.1rem; }
.nav-cart-badge-static {
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 20px; height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* ── REVEAL ANIMATIONS ─────────────────────────────────────── */
.reveal, .reveal-right, .reveal-blur {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.reveal          { transform: translateY(32px); }
.reveal-right    { transform: translateX(-32px); }
.reveal-blur     { filter: blur(6px); transform: translateY(20px); }

.reveal.visible, .reveal-right.visible, .reveal-blur.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: var(--border-gold);
}

.hero-left {
  padding: 80px 6vw 80px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text-wrapper { display: flex; flex-direction: column; gap: 0; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s ease infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.eyebrow-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero title row: Text links, Bild rechts davon — Bild max so groß wie das Textfeld */
.hero-title-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.4rem, 6.5vw, 6.2rem);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.hero-h1 .accent  { color: var(--gold); }
.hero-h1 .accent2 { color: var(--neon); }

/* Produktbild: mittig zwischen Trennlinie und "Erledigt.", max Breite/Höhe = Textfeld */
.hero-inline-product {
  flex: 1;
  max-width: 180px;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  align-self: center;
  filter: drop-shadow(0 8px 28px rgba(232,200,74,0.22)) drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  /* Bild nie größer als der h1-Block */
}

.hero-sub {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: rgba(244,241,235,0.52);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 28px;
  font-weight: 300;
}

.hero-price-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 24px;
}
.price-main {
  font-family: 'Oswald', sans-serif;
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.price-stack { display: flex; flex-direction: column; gap: 3px; padding-bottom: 6px; }
.price-old {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: rgba(244,241,235,0.28);
  text-decoration: line-through;
}
.price-save {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--neon);
  letter-spacing: 0.08em;
}

/* CTA-Gruppe: primär + sekundär */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: fit-content;
  margin-bottom: 4px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 38px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(232,200,74,0.28); background: #f0d256; }

/* Sekundärer CTA — Ghost-Style */
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--neon);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 38px;
  text-decoration: none;
  border: 1px solid rgba(200,255,0,0.35);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  width: 100%;
  text-align: center;
}
.hero-btn-secondary:hover {
  background: rgba(200,255,0,0.07);
  border-color: var(--neon);
  transform: translateY(-1px);
}

.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-icon { font-size: 0.85rem; }

/* Hero right */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(232,200,74,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.product-stage-hero {
  position: relative;
  z-index: 2;
  text-align: center;
}
.jar-svg-wrap-hero { position: relative; display: inline-block; margin-bottom: 16px; }

.jar-visual-hero {
  width: clamp(180px, 20vw, 280px);
  height: clamp(180px, 20vw, 280px);
  background: conic-gradient(from 200deg, #1a1a1a 0%, #2a2a2a 25%, #1a1a1a 50%, #232323 75%, #1a1a1a 100%);
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 8px rgba(232,200,74,0.05), 0 0 0 16px rgba(232,200,74,0.02), 0 28px 72px rgba(0,0,0,0.55);
}
.jar-visual-hero::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(232,200,74,0.18);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.jar-brand-text-hero {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.jar-product-text-hero {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.38rem, 0.7vw, 0.52rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.45);
  text-align: center;
  line-height: 1.4;
  padding: 0 14%;
  margin-bottom: 5px;
}
.jar-weight-text-hero {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 2px;
}
.jar-incl-hero {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.32rem, 0.6vw, 0.46rem);
  color: rgba(244,241,235,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jar-badge-hero {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  animation: badgePulseRed 2.2s ease infinite;
}
@keyframes badgePulseRed {
  0%,100%{ box-shadow: 0 0 0 0 rgba(230,51,41,0.4); }
  50%{ box-shadow: 0 0 0 10px rgba(230,51,41,0); }
}
.product-caption-hero {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.18);
}

/* ── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.stat-cell {
  padding: 30px 22px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat-cell:hover { background: rgba(232,200,74,0.03); }
.stat-cell::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.45s ease;
}
.stat-cell:hover::before { width: 100%; }
.stat-cell:last-child { border-right: none; }
.stat-n {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SECTION LABEL ─────────────────────────────────────────── */
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,200,74,0.45);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(232,200,74,0.1);
}

/* Neon-gelb Variante für alle Haupt-Section-Labels */
.section-label-neon {
  color: var(--neon);
}
.section-label-neon::after {
  background: rgba(200,255,0,0.15);
}

/* ── REVIEWS ───────────────────────────────────────────────── */
.reviews-section {
  padding: 56px 8vw;
  background: #09090b;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.review-card {
  background: #0d0d0f;
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: var(--border-gold); }
.review-header { display: flex; align-items: center; gap: 14px; }
.review-avatar { font-size: 2rem; }
.review-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--paper);
}
.review-stars { color: var(--gold); font-size: 0.88rem; letter-spacing: 0.06em; }
.review-text {
  font-size: 0.86rem;
  color: rgba(244,241,235,0.52);
  line-height: 1.68;
  font-style: italic;
}

/* ── BEFORE / AFTER — NEU: Moderne Side-by-Side Reveal ──────── */
.ba-section { padding: 56px 8vw; }

/* Desktop: Bild ca. halbiert (max-height statt voller Breite) */
.ba-image-wrapper {
  margin-bottom: 40px;
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.ba-comparison-img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 280px;
}

/* Modernes BA-Layout: Side by Side */
.ba-modern-wrapper {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}

/* Dirty Panel — startet ausgeblendet, fährt von links rein */
.ba-modern-dirty {
  background: linear-gradient(135deg, #1f1f15, #14140e);
  border: 1px solid rgba(255,100,50,0.12);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.ba-modern-dirty.ba-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Clean Panel — startet ausgeblendet, fährt von rechts rein */
.ba-modern-clean {
  background: linear-gradient(135deg, #12140e, #0e1108);
  border: 1px solid rgba(200,255,0,0.14);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s 0.15s ease, transform 0.7s 0.15s cubic-bezier(0.23,1,0.32,1);
}
.ba-modern-clean.ba-visible {
  opacity: 1;
  transform: translateX(0);
}

/* VS Divider */
.ba-modern-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 2;
}
.ba-vs-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(232,200,74,0.3), transparent);
}
.ba-vs-pill {
  background: var(--gold);
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 8px 10px;
  writing-mode: horizontal-tb;
  flex-shrink: 0;
}

/* Scan-line Glitch auf den Panels beim Erscheinen */
.ba-modern-dirty.ba-visible::before,
.ba-modern-clean.ba-visible::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--neon);
  animation: scanline 1.2s ease forwards;
  pointer-events: none;
}
.ba-modern-dirty { position: relative; }
.ba-modern-clean { position: relative; }

@keyframes scanline {
  0%   { top: 0; opacity: 1; }
  80%  { top: 100%; opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

.ba-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  width: fit-content;
}
.before-tag { background: rgba(255,100,50,0.12); color: #c8793a; }
.after-tag  { background: rgba(200,255,0,0.1); color: var(--neon); }

.ba-visual {
  font-size: 2.8rem;
  display: block;
}
.dirty-visual { filter: saturate(0) brightness(0.5); }
.clean-visual { filter: drop-shadow(0 0 12px rgba(200,255,0,0.4)); }

.ba-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.dirty-title  { color: rgba(244,241,235,0.3); }
.clean-title  { color: var(--neon); }

.ba-points { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ba-points li {
  font-size: 0.86rem;
  color: rgba(244,241,235,0.42);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.ba-points li::before { content: '—'; color: rgba(244,241,235,0.15); flex-shrink: 0; }
.clean-points li { color: rgba(244,241,235,0.65); }
.clean-points li::before { content: '✓'; color: var(--neon); }

/* ── FEATURES ──────────────────────────────────────────────── */
.features-section { padding: 56px 8vw; background: #09090b; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feat {
  background: #111113;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.feat:hover { background: #161618; }
.feat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(232,200,74,0.04);
  position: absolute;
  right: 18px; top: 8px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.feat-icon { font-size: 1.7rem; margin-bottom: 16px; display: block; }
.feat-line {
  width: 30px; height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
  transition: width 0.35s ease;
}
.feat:hover .feat-line { width: 60px; }
.feat-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.feat-desc {
  font-size: 0.84rem;
  color: rgba(244,241,235,0.42);
  line-height: 1.65;
}

/* ── BUNDLES ───────────────────────────────────────────────── */
.bundles-section {
  padding: 64px 8vw;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.bundles-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,200,74,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,200,74,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.bundles-intro { max-width: 580px; margin-bottom: 40px; position: relative; z-index: 1; }
.bundles-intro h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 10px 0 16px;
}
.bundles-intro h2 em { font-style: normal; color: var(--gold); }
.bundles-intro p { font-size: 0.88rem; color: rgba(244,241,235,0.42); line-height: 1.6; }

.bundles-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  position: relative; z-index: 1;
}
.bundles-image-side img {
  width: 100%;
  display: block;
  object-fit: cover;
  border: 1px solid var(--border);
}
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.bundle-card {
  background: #0e0e10;
  border: 1px solid var(--border);
  padding: 36px 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform;
}
.bundle-card:hover {
  border-color: rgba(232,200,74,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.bundle-card.featured {
  background: #12110e;
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,200,74,0.3);
}

.bundle-featured-tag {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 16px;
  white-space: nowrap;
}
.bundle-emoji { font-size: 2rem; margin-bottom: 10px; }
.bundle-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin-bottom: 4px;
}
.bundle-card.featured .bundle-name { color: var(--gold); }
.bundle-tagline { font-size: 0.78rem; color: rgba(244,241,235,0.35); margin-bottom: 20px; font-style: italic; }
.bundle-items { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 7px; }
.bundle-items li {
  font-size: 0.82rem;
  color: rgba(244,241,235,0.55);
  display: flex;
  align-items: center;
  gap: 9px;
}
.bundle-items li::before {
  content: '×';
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
}

.bundle-pricing {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.bundle-card.featured .bundle-pricing { border-color: rgba(232,200,74,0.15); }
.bundle-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.bundle-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--paper);
  line-height: 1;
}
.bundle-card.featured .bundle-price { color: var(--gold); }
.bundle-price-old {
  font-family: 'Space Mono', monospace;
  font-size: 0.74rem;
  color: rgba(244,241,235,0.22);
  text-decoration: line-through;
}

.bundle-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.bundle-card:not(.featured) .bundle-btn {
  background: rgba(232,200,74,0.08);
  color: var(--gold);
  border: 1px solid rgba(232,200,74,0.22);
}
.bundle-card:not(.featured) .bundle-btn:hover { background: rgba(232,200,74,0.16); border-color: var(--gold); }
.bundle-card.featured .bundle-btn { background: var(--gold); color: var(--ink); }
.bundle-card.featured .bundle-btn:hover { background: var(--neon); }

/* Button success state */
.bundle-btn.btn-success,
.hero-btn.btn-success {
  background: #1a8a1a !important;
  color: #fff !important;
  border-color: transparent !important;
}
.btn-check-anim { animation: checkPop 0.3s cubic-bezier(0.36,0.07,0.19,0.97); }
@keyframes checkPop {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

/* Ripple */
.btn-ripple {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  animation: rippleOut 0.5s ease forwards;
}
@keyframes rippleOut {
  from { opacity: 1; transform: scale(0.5); }
  to   { opacity: 0; transform: scale(2); }
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: 56px 8vw; background: var(--ink); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.faq-item {
  background: #0d0d0f;
  border: 1px solid var(--border);
  padding: 0;
  transition: border-color 0.25s;
}
.faq-item:hover { border-color: var(--border-gold); }
.faq-item.faq-open { border-color: rgba(232,200,74,0.25); }
.faq-question {
  padding: 24px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: color 0.2s;
}
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-q-open { color: var(--gold); }
.faq-q-open::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.86rem;
  color: rgba(244,241,235,0.48);
  line-height: 1.7;
}
.faq-more-link { margin-top: 28px; text-align: center; }
.faq-all-btn {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,200,74,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.faq-all-btn:hover { color: var(--neon); border-color: var(--neon); }

/* ── FINAL CTA ─────────────────────────────────────────────── */
.final-cta {
  background: var(--gold);
  padding: 60px 8vw;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.final-cta-left h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 0.92;
  margin-bottom: 14px;
}
.final-cta-left p { font-size: 0.88rem; color: rgba(13,13,15,0.58); line-height: 1.55; max-width: 440px; }
.final-cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.final-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.final-price span { font-size: 0.95rem; opacity: 0.45; font-weight: 400; }
.final-btn {
  display: inline-block;
  background: var(--ink);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 44px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.final-btn:hover { background: #1a1a1e; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer-bar {
  background: #06060a;
  border-top: 1px solid var(--border);
  padding: 16px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-note {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.16);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s ease infinite;
}

/* ── COOKIE BANNER — fixed, funktioniert immer ──────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #16161a;
  border: 1px solid var(--neon);
  padding: 20px 28px;
  max-width: 560px;
  width: calc(100% - 32px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 20px rgba(200,255,0,0.08);
  animation: slideUpIn 0.5s cubic-bezier(0.23,1,0.32,1) both;
}
@keyframes slideUpIn {
  from { opacity: 0; transform: translateX(-50%) translateY(30px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner.cookie-hide {
  animation: slideDown 0.45s ease forwards;
  pointer-events: none;
}
@keyframes slideDown {
  to { opacity: 0; transform: translateX(-50%) translateY(30px); }
}
.cookie-content p { font-size: 0.82rem; color: rgba(244,241,235,0.5); line-height: 1.6; margin-bottom: 16px; }
.cookie-content p a { color: var(--neon); text-decoration: none; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btn {
  padding: 9px 22px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn.accept { background: var(--neon); color: var(--ink); }
.cookie-btn.accept:hover { background: #b8ef00; }
.cookie-btn.decline { background: rgba(255,255,255,0.06); color: rgba(244,241,235,0.45); border: 1px solid var(--border); }
.cookie-btn.decline:hover { border-color: rgba(200,255,0,0.3); }

/* ── TOAST ─────────────────────────────────────────────────── */
.cart-toast {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.35s cubic-bezier(0.23,1,0.32,1), transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.cart-toast.toast-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.cart-toast-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #16161a;
  border: 1px solid rgba(232,200,74,0.3);
  padding: 16px 20px;
  min-width: 300px;
  max-width: 380px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.cart-toast-check {
  width: 36px; height: 36px;
  background: #1a8a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  animation: checkPop 0.4s cubic-bezier(0.36,0.07,0.19,0.97);
}
.cart-toast-text { flex: 1; min-width: 0; }
.cart-toast-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 2px;
}
.cart-toast-sub {
  font-size: 0.78rem;
  color: rgba(244,241,235,0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-toast-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  padding: 7px 14px;
  white-space: nowrap;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.cart-toast-btn:hover { background: var(--neon); }
.cart-toast-btn-close {
  background: transparent;
  color: rgba(244,241,235,0.35);
  padding: 4px 8px;
}
.cart-toast-btn-close:hover { background: rgba(255,255,255,0.06); color: var(--paper); }

/* ── BACK TO TOP DOT ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 100px;
  z-index: 999;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(13,13,15,0.92);
  border: 1px solid rgba(200,255,0,0.4);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s, border-color 0.2s;
  pointer-events: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 0 rgba(200,255,0,0.3);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--neon);
  color: var(--ink);
  border-color: var(--neon);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}
.back-to-top:hover svg path { stroke: var(--ink); }

/* ── CART PAGE ─────────────────────────────────────────────── */
.cart-main {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2px;
  min-height: calc(100vh - 200px);
  padding: 48px 6vw;
  align-items: start;
}

.cart-items-col { display: flex; flex-direction: column; gap: 32px; }

.cart-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paper);
}
.cart-continue-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.cart-continue-link:hover { color: var(--gold); }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  gap: 16px;
  text-align: center;
  border: 1px dashed var(--border);
}
.cart-empty-icon { font-size: 3rem; opacity: 0.3; }
.cart-empty-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(244,241,235,0.35);
}
.cart-empty-sub { font-size: 0.84rem; color: rgba(244,241,235,0.25); }
.cart-empty-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.2s;
}
.cart-empty-btn:hover { background: var(--neon); }

.cart-items-list { display: flex; flex-direction: column; gap: 2px; }

.cart-item {
  background: #0d0d0f;
  border: 1px solid var(--border);
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 72px 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  transition: border-color 0.25s, transform 0.3s ease, opacity 0.3s ease;
}
.cart-item:hover { border-color: var(--border-gold); }

.cart-item.item-bump {
  animation: itemBump 0.3s cubic-bezier(0.36,0.07,0.19,0.97);
}
@keyframes itemBump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.015); }
  100% { transform: scale(1); }
}
.cart-item.item-remove-anim {
  transform: translateX(40px);
  opacity: 0;
}

.cart-item-jar {
  width: 72px; height: 72px;
  background: #1a1a1e;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-jar-emoji { font-size: 1.8rem; }
.cart-item-info { display: flex; flex-direction: column; }

.cart-item-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 4px;
}
.cart-item-desc {
  font-size: 0.76rem;
  color: rgba(244,241,235,0.32);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.06em;
}
.cart-item-price-mobile { display: none; }

.cart-item-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
}
.qty-btn {
  width: 32px; height: 32px;
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: rgba(232,200,74,0.1); }
.qty-val {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--paper);
  width: 32px;
  text-align: center;
}

.cart-item-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  min-width: 70px;
  text-align: right;
}
.cart-item-remove {
  background: none;
  border: none;
  color: rgba(244,241,235,0.2);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--red); }

.cart-summary-col { position: sticky; top: 96px; }

.cart-summary-box {
  background: #0d0d0f;
  border: 1px solid var(--border-gold);
  padding: 32px 28px;
  margin-bottom: 2px;
}
.cart-summary-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 22px;
}
.cart-summary-lines { display: flex; flex-direction: column; gap: 10px; margin-bottom: 2px; min-height: 24px; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(244,241,235,0.48);
}
.cart-summary-row.total-row { color: rgba(244,241,235,0.65); }
.cart-summary-row.big {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}
.cart-shipping-label { color: var(--neon); font-family: 'Space Mono', monospace; font-size: 0.72rem; }
.cart-summary-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }

.cart-trust-mini {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.cart-trust-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.28);
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 17px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background: var(--gold);
  color: var(--ink);
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
  margin-bottom: 16px;
}
.cart-checkout-btn:hover:not(:disabled) { background: var(--neon); transform: translateY(-1px); }
.cart-checkout-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.cart-payment-icons {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.pay-icon {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: rgba(244,241,235,0.35);
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  text-transform: uppercase;
}

.cart-guarantee-box {
  background: #0a0a0c;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-guarantee-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-guarantee-icon { font-size: 1.4rem; flex-shrink: 0; }
.cart-guarantee-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1px;
}
.cart-guarantee-item span {
  font-size: 0.74rem;
  color: rgba(244,241,235,0.3);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.05em;
}

/* ── LEGAL PAGES ───────────────────────────────────────────── */
.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 6vw 100px;
}
.legal-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.legal-updated {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.22);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-updated::after { content: ''; flex: 1; max-width: 120px; height: 1px; background: var(--border-gold); }

.legal-section { margin-bottom: 48px; }
.legal-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-gold);
}
.legal-section p, .legal-section li {
  font-size: 0.88rem;
  color: rgba(244,241,235,0.5);
  line-height: 1.78;
  margin-bottom: 10px;
}
.legal-section a { color: var(--gold); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-section ul { list-style: none; padding: 0; }
.legal-section ul li { padding-left: 16px; position: relative; }
.legal-section ul li::before { content: '—'; position: absolute; left: 0; color: rgba(232,200,74,0.3); }

/* FAQ full page */
.faq-page-grid { display: flex; flex-direction: column; gap: 2px; margin-top: 40px; }
.faq-page-grid .faq-item { border: 1px solid var(--border); }
.faq-page-cat {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,200,74,0.45);
  margin: 40px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-page-cat::after { content: ''; flex: 1; max-width: 200px; height: 1px; background: rgba(232,200,74,0.1); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bundles-wrapper { grid-template-columns: 1fr; }
  .bundles-image-side { display: none; }
  .bundles-grid { grid-template-columns: 1fr; }
  .cart-main { grid-template-columns: 1fr; }
  .cart-summary-col { position: static; }
  .ba-modern-wrapper { grid-template-columns: 1fr; }
  .ba-modern-vs { flex-direction: row; height: 48px; }
  .ba-vs-line { flex: 1; width: auto; height: 1px; }
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::after { display: none; }
  .hero-left { padding: 60px 6vw 32px; }
  .hero-right { padding: 32px 6vw 60px; }
  .hero-inline-product { max-width: 120px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta-right { align-items: flex-start; }
  .cart-item {
    grid-template-columns: 56px 1fr auto auto;
    gap: 12px;
  }
  .cart-item-price { display: none; }
  .cart-item-price-mobile { display: block; font-size: 0.82rem; color: var(--gold); font-family: 'Oswald', sans-serif; margin-top: 4px; }
  .cart-toast { bottom: 16px; right: 16px; left: 16px; }
  .cart-toast-inner { min-width: unset; }
  .nav-cart-label { display: none; }
  .ba-comparison-img { max-height: 200px; }
  .back-to-top { right: 16px; bottom: 80px; }
}

@media (max-width: 560px) {
  nav { padding: 12px 4vw; }
  .nav-cta { padding: 8px 16px; font-size: 0.76rem; }
  .legal-title { font-size: 2rem; }
  .cart-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
    gap: 12px;
    padding: 16px;
  }
  .cart-item-visual { flex-shrink: 0; }
  .cart-item-info { flex: 1; padding-right: 24px; }
  .cart-item-qty-control {
    display: flex !important;
    margin-left: 60px;
    width: fit-content;
  }
  .cart-item-remove {
    position: absolute;
    top: 16px;
    right: 12px;
  }
  .hero-cta-group { width: 100%; }
  .hero-btn, .hero-btn-secondary { width: 100%; }
}

/* Desktop: Bild explizit limitiert */
@media (min-width: 861px) {
  .ba-image-wrapper {
    max-width: 520px;
  }
  .ba-comparison-img {
    max-height: 260px;
  }
}
