/* ============================================================
   KinaSaen – Design System
   Natural Botanical · Health & Wellness
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=DM+Sans:wght@400;500;600&family=Parisienne&display=swap');

/* ── CSS Variables ── */
:root {
  --bg:         #F8FAFA;
  --surface:    #FFFFFF;
  --surface2:   #FDF0F2;
  --border:     rgba(131,14,37,0.15);
  --neon:       #830e25;
  --neon-cyan:  #830e25;
  --neon-glow:  0 2px 16px rgba(131,14,37,0.22), 0 4px 32px rgba(131,14,37,0.10);
  --cyan-glow:  0 2px 16px rgba(131,14,37,0.22), 0 4px 32px rgba(131,14,37,0.10);
  --text:       #1a1a1a;
  --muted:      #5F6877;
  --muted2:     #9BA4B0;
  --font-head:  'Barlow Condensed', sans-serif;
  --font-logo:  'Parisienne', cursive;
  --font-body:  'DM Sans', sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --max-width:  1280px;
}

/* ── Kein horizontales Scrollen, volle Breite ── */
html, body { overflow-x: hidden; width: 100%; }
html { background: var(--bg); }

/* ── Bilder responsive ── */
img { max-width: 100%; height: auto; }

/* ── Inputs: 16px verhindert iOS Auto-Zoom ── */
input, select, textarea { font-size: 16px !important; }

/* ── Dark Mode Transition ── */
html { transition: background-color 0.3s, color 0.3s; }
body, .nav, .footer, .product-card, .feature-item, section, .cart-sidebar, .modal-box,
input, select, textarea { transition: background-color 0.3s, color 0.3s, border-color 0.3s; }

/* ── Dark Mode ── */
html.dark-mode {
  --bg:       #1a1a1a;
  --surface:  #2d2d2d;
  --surface2: #333;
  --border:   #3d3d3d;
  --text:     #f0f0f0;
  --muted:    #aaa;
  --muted2:   #888;
  --card:     #2d2d2d;
  color-scheme: dark;
}

/* Body & globale Texte */
html.dark-mode body { background: #1a1a1a; color: #f0f0f0; }
/* Headlines im Dark Mode etwas heller (#f5f5f5 statt #f0f0f0) fuer besseren Kontrast */
html.dark-mode h1, html.dark-mode h2, html.dark-mode h3, html.dark-mode h4 { color: #f5f5f5; }
html.dark-mode p { color: #ccc; }
html.dark-mode a { color: #ccc; }

/* Navigation */
html.dark-mode .nav { background: rgba(26,26,26,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid #333; }
html.dark-mode .nav__links a { color: #ccc; }
html.dark-mode .nav__links a:hover { color: #f0f0f0; }
/* Dark-Mode-Rot: aufgehellte Variante von #830e25 fuer Text-Akzente.
   Markenrot #830e25 bleibt in beiden Modi fuer Button-Hintergruende (weisse Schrift drauf bleibt lesbar). */
html.dark-mode { --neon-text: #c4344a; }
html.dark-mode .nav__links a.active { color: var(--neon-text); }
html.dark-mode .nav__cta { color: #fff !important; }
/* Nav-Logo im Dark Mode: invertieren + hue-rotate damit das weisse Logo-PNG
   auf dunklem Header sauber sitzt (weiss -> dunkel, dunkles Rot -> rotes Rot
   bleibt erhalten dank 180°-Hue-Rotation). Kein Pflasterhaft weisser Kasten mehr. */
html.dark-mode .nav__logo-img {
  background: transparent;
  filter: invert(1) hue-rotate(180deg) brightness(1.05);
}
html.dark-mode .nav__user-btn { color: #ccc; border-color: #444; }
html.dark-mode .nav__user-btn:hover, html.dark-mode .nav__user-btn.eingeloggt { color: var(--neon-text); border-color: var(--neon-text); }
html.dark-mode .nav__overlay { background: rgba(0,0,0,0.7); }
html.dark-mode .nav__mobile { background: #1a1a1a; }
html.dark-mode .nav__mobile a { color: #f0f0f0; border-bottom-color: #333; }
html.dark-mode .nav__mobile a:hover { background: rgba(131,14,37,0.12); }

/* Hero Section */
html.dark-mode .hero { background: #1a1a1a; }
html.dark-mode .hero__bg { opacity: 0.3; }
html.dark-mode .hero__headline .line { color: #f0f0f0; }
html.dark-mode .hero__headline .line.neon { color: var(--neon-text); }
html.dark-mode .hero__sub { color: #ccc; }
html.dark-mode .hero__tag { color: #ccc; border-color: #444; }
/* Hero-Overlay im Dark Mode: gleicher 4-Stop-Gradient, nur dunkel */
html.dark-mode .hero__bg::after {
  background: linear-gradient(
    to right,
    rgba(20,20,20,0.78) 0%,
    rgba(20,20,20,0.55) 35%,
    rgba(20,20,20,0.25) 60%,
    rgba(20,20,20,0.08) 100%
  );
}
/* Trust Bar */
html.dark-mode .trust-bar { background: #222; border-color: #333; }
html.dark-mode .trust-bar__item span { color: #ccc; }

/* Sektionen */
html.dark-mode section { background: #1a1a1a; }
html.dark-mode .section-header__tag { color: #ccc; border-color: #444; }

/* Feature Karten */
html.dark-mode .feature-item { background: #2d2d2d; border-color: #3d3d3d; }
html.dark-mode .feature-item__title { color: #f0f0f0; }
html.dark-mode .feature-item__desc { color: #ccc; }

/* Produkt Karten */
html.dark-mode .product-card { background: #2d2d2d; border-color: #3d3d3d; }
html.dark-mode .product-card__name { color: #f0f0f0; font-weight: 600; }
html.dark-mode .product-card__desc { color: #bbb; }
/* Kategorie als roter Akzent ueber dem Produktnamen (helles Rot fuer Lesbarkeit) */
html.dark-mode .product-card__category { color: var(--neon-text); }
html.dark-mode .product-card__price { color: #f0f0f0; }
html.dark-mode .product-card__unit-price { color: #888; }
html.dark-mode .product-card__img-wrap { background: #333; }

/* Produkt Detail */
html.dark-mode .product-detail__grid { color: #f0f0f0; }
html.dark-mode .product-detail__name { color: #f0f0f0; }
html.dark-mode .product-detail__desc { color: #ccc; }
html.dark-mode .product-detail__benefit { color: #ccc; }
html.dark-mode .product-detail__info-content { color: #ccc; }

/* Newsletter */
html.dark-mode .newsletter-section { background: #222; }
html.dark-mode .newsletter__title { color: #f0f0f0; }
html.dark-mode .newsletter__sub { color: #ccc; }

/* Footer */
html.dark-mode .footer { background: #111; }
html.dark-mode .footer__tagline { color: #999; }
html.dark-mode .footer__col-title { color: #f0f0f0; }
html.dark-mode .footer__col-links a { color: #aaa; }
html.dark-mode .footer__col-links a:hover { color: #9ed2c0; }
html.dark-mode .footer__legal a { color: #888; }
html.dark-mode .footer__copyright { color: #666; }
html.dark-mode .footer__social { border-color: #444; }

/* Page Header (Unterseiten) */
html.dark-mode .page-header { background: #222; }
html.dark-mode .page-header__content h1 { color: #f0f0f0; }
html.dark-mode .page-header__content p { color: #ccc; }

/* Karten & Boxen */
html.dark-mode .cart-sidebar { background: #2d2d2d; color: #f0f0f0; }
html.dark-mode .cart-overlay { background: rgba(0,0,0,0.6); }
html.dark-mode .modal-box { background: #2d2d2d; color: #f0f0f0; }
html.dark-mode .modal-tab { color: #aaa; border-color: #444; }
html.dark-mode .modal-tab.aktiv { color: var(--neon-text); border-color: var(--neon-text); }

/* Formulare */
html.dark-mode input, html.dark-mode select, html.dark-mode textarea {
  background: #2d2d2d; color: #f0f0f0; border-color: #444;
}
html.dark-mode input::placeholder, html.dark-mode textarea::placeholder { color: #888; }
html.dark-mode .form-gruppe label { color: #ccc; }

/* AGB / Rechtliche Seiten */
html.dark-mode .agb-address { background: #333; color: #f0f0f0; border-color: #444; }
html.dark-mode .agb-container p, html.dark-mode .agb-container li { color: #ddd; }
html.dark-mode .agb-section-title { color: var(--neon-text); }
html.dark-mode .agb-divider { border-color: #444; }
html.dark-mode .agb-form-box { background: #333; border-color: #444; }
html.dark-mode .agb-highlight-box { background: #333; border-color: #444; }

/* Buttons */
html.dark-mode .btn-outline { border-color: #555; color: #f0f0f0; }
html.dark-mode .btn-outline:hover { border-color: var(--neon-text); color: var(--neon-text); }

/* Kontakt Values */
html.dark-mode .value-card { background: #2d2d2d; border-color: #3d3d3d; }
html.dark-mode .value-card__title { color: #f0f0f0; }
html.dark-mode .value-card__text { color: #ccc; }

/* Profil Dropdown */
html.dark-mode .profil-dropdown { background: #2d2d2d; border-color: #444; }
html.dark-mode .profil-dropdown__kopf { border-color: #444; }
html.dark-mode .profil-dropdown__email { color: #ccc; }

/* Bestellungen */
html.dark-mode .bestellung-zusammenfassung { background: #2d2d2d; border-color: #3d3d3d; }
html.dark-mode .bestellung-summe { border-color: #444; color: #f0f0f0; }
html.dark-mode .bestellung-hinweis { color: #888; }

/* Cookie Banner */
html.dark-mode #ks-cookie-banner { background: #2d2d2d; border-color: #830e25; color: #f0f0f0; }

/* Vergleich Bar */
html.dark-mode #ks-compare-bar { background: #830e25; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── Grain Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248,250,250,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav.scrolled {
  background: rgba(248,250,250,0.98);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__logo-img {
  height: 144px;
  width: auto;
  display: block;
  background: transparent;
}
.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon);
  box-shadow: var(--neon-glow);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--neon); }
.nav__cta {
  padding: 10px 22px;
  background: var(--neon);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: box-shadow var(--transition), transform var(--transition) !important;
}
.nav__cta:hover {
  box-shadow: var(--neon-glow);
  transform: translateY(-1px) !important;
  color: #FFFFFF !important;
}
.nav__cta::after { display: none !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
/* Nav Overlay (hinter dem Slide-In-Menü) */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Slide-In Menü von rechts */
.nav__mobile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: var(--surface);
  z-index: 1200;
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 80px 0 32px;
  gap: 0;
}
.nav__mobile.open {
  transform: translateX(0);
}
.nav__mobile a {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  padding: 16px 28px;
  min-height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.nav__mobile a:hover, .nav__mobile a.active { color: var(--neon); background: rgba(131,14,37,0.04); }
.nav__mobile .btn {
  margin: 24px 28px 0;
  text-align: center;
  justify-content: center;
  min-height: 52px;
  border-bottom: none;
  padding: 14px 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  background: rgba(0,0,0,0.04);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--neon);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(131,14,37,0.3);
}
.btn-primary:hover {
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid var(--neon);
  color: var(--neon);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(131,14,37,0.08);
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}
.btn-cyan {
  background: var(--neon-cyan);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(131,14,37,0.3);
}
.btn-cyan:hover {
  box-shadow: var(--cyan-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--muted);
  color: var(--text);
  transform: translateY(-2px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  /* 90vh statt 100vh, gedeckelt bei 800px damit Flaschen + Text gut ins Sichtfenster passen */
  min-height: 90vh;
  max-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  /* Hero-Hintergrundbild: KinaSaen-Kollektion mit Pflanzen */
  background-image: url('../img/hero-bg.jpg?v=1');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* Desktop: Bild etwas nach oben schieben, damit die Flaschen-Reihe sichtbar bleibt */
@media (min-width: 1200px) {
  .hero__bg { background-position: center 60%; }
}
/* Helles Overlay: links staerker (Textlesbarkeit), rechts schwaecher (Flaschen sichtbar) */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.80) 0%,
    rgba(255,255,255,0.55) 35%,
    rgba(255,255,255,0.20) 60%,
    rgba(255,255,255,0.05) 100%
  );
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(131,14,37,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131,14,37,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 80% at 30% 50%, black 0%, transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 3;
  /* Desktop: max 50% bzw. 700px Breite, damit rechts die Flaschen sichtbar bleiben.
     Tablet: 70% (Override unten). Mobile: 100% (Override unten). */
  max-width: min(50%, 700px);
  margin: 0 auto 0 0;
  width: 100%;
}
/* Tablet: Text-Container etwas breiter (70%), Flaschen-Bereich rechts schmaler */
@media (min-width: 769px) and (max-width: 1199px) {
  .hero__content { max-width: 70%; }
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(131,14,37,0.08);
  border: 1px solid rgba(131,14,37,0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 24px;
}
.hero__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: var(--neon-glow);
  animation: pulse 2s ease-in-out infinite;
}
.hero__headline {
  /* Schlanker als vorher (war clamp(4rem, 10vw, 9rem)) — Flaschen rechts bleiben sichtbar */
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  max-width: 700px;
  margin-bottom: 8px;
  overflow: visible;
  padding-top: 8px;
}
.hero__headline .line {
  display: block;
}
.hero__headline .line.neon { color: var(--neon); }
.hero__headline .line.cyan { color: var(--neon-cyan); }
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #333;
  max-width: 600px;
  margin: 1.5rem 0 2rem;
  opacity: 0;
  transform: translateY(20px);
  line-height: 1.6;
}
html.dark-mode .hero__sub { color: #ddd; }
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* Bug #29: Scroll-Indikator von zentral-unten nach rechts-unten umpositioniert,
   damit er das Hero-Hintergrundbild (mittige Flaschen-Reihe) nicht ueberlagert.
   z-index 1 = unter Hero-Content (z-index 3) und Grid-Lines, aber ueber dem bg.
   Wird per JS (main.js: .hero__scroll--versteckt) beim Scrollen ausgeblendet. */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  right: 28px;
  left: auto;
  transform: none;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounce 2s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero__scroll--versteckt {
  opacity: 0;
  transform: translateY(20px);
  animation: none;
}
.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--neon), transparent);
}
/* Auf sehr breiten Screens etwas mehr Abstand zur Ecke */
@media (min-width: 1440px) {
  .hero__scroll { bottom: 36px; right: 40px; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-bar__track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.trust-bar__item svg { flex-shrink: 0; }
.trust-bar__item span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  margin-bottom: 56px;
}
.section-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 16px;
}
.section-header__tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon);
  box-shadow: var(--neon-glow);
}
.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}
.section-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-section {
  padding: 100px 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  group: true;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(131,14,37,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
  pointer-events: none;
}
.product-card:hover {
  border-color: rgba(131,14,37,0.35);
  box-shadow: 0 0 30px rgba(131,14,37,0.12), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.product-card:hover::before { opacity: 1; }
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  /* Weiss damit die freigestellten Produkt-PNGs (transparenter Hintergrund) sauber stehen */
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img { transform: scale(1.06); }
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  z-index: 2;
}
.product-card__badge.new {
  background: var(--neon);
  color: #FFFFFF;
}
.product-card__badge.bestseller {
  background: var(--neon-cyan);
  color: #FFFFFF;
}

/* ── Favorit-Herz-Button ──────────────────────────────────── */
.favorit-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.18s ease, background 0.18s ease;
  padding: 0;
}
.favorit-btn svg {
  width: 18px;
  height: 18px;
  stroke: #aaa;
  fill: none;
  transition: stroke 0.18s ease, fill 0.18s ease;
}
.favorit-btn:hover { transform: scale(1.15); background: #fff; }
.favorit-btn:hover svg { stroke: #830e25; }
.favorit-btn.aktiv svg {
  stroke: #830e25;
  fill: #830e25;
  animation: herzPuls 0.3s ease;
}
@keyframes herzPuls {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* ── Favoriten-Seite ─────────────────────────────────────── */
.favoriten-leer {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.favoriten-leer svg { display: block; margin: 0 auto 20px; opacity: 0.3; }
.favoriten-leer p { font-size: 1rem; margin: 0 0 20px; }

.product-card__body {
  padding: 20px;
  position: relative;
  z-index: 1;
}
.product-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.product-card__desc {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-card__price {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
}
.product-card__unit-price {
  font-size: 0.7rem;
  color: var(--muted2);
  font-family: var(--font-body);
  font-weight: 400;
}
.product-card__price span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
  font-family: var(--font-body);
}
.product-card__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(131,14,37,0.1);
  border: 1.5px solid rgba(131,14,37,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  font-size: 1.2rem;
  transition: all var(--transition);
}
.product-card__btn:hover {
  background: var(--neon);
  color: #FFFFFF;
  box-shadow: var(--neon-glow);
}

/* ============================================================
   BRAND STATEMENT
   ============================================================ */
.brand-statement {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.brand-statement__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(131,14,37,0.06) 0%, transparent 70%);
}
.brand-statement__text {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.brand-statement__text em {
  font-style: normal;
  color: var(--neon);
  text-shadow: var(--neon-glow);
}

/* ============================================================
   INGREDIENTS / FEATURES SECTION
   ============================================================ */
.features-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-item {
  background: var(--surface);
  padding: 48px 36px;
  transition: background var(--transition);
}
.feature-item:hover { background: var(--surface2); }
.feature-item__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.feature-item__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feature-item__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.feature-item__neon {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--neon);
  box-shadow: var(--neon-glow);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 100px 0;
}
.newsletter-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(131,14,37,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.newsletter__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}
.newsletter__title em {
  font-style: normal;
  color: var(--neon);
}
.newsletter__sub {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.newsletter__form input {
  width: 100%;
  padding: 16px 20px;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter__form input:focus {
  border-color: rgba(131,14,37,0.4);
}
.newsletter__form input::placeholder { color: var(--muted2); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand {}
.footer__logo {
  margin-bottom: 16px;
}
.footer__logo-img {
  height: 80px;
  width: auto;
  display: block;
  background: transparent;
}
.footer__tagline {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 28px;
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  transition: all var(--transition);
}
.footer__social:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: var(--neon-glow);
}
.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 20px;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__col-links a:hover { color: var(--neon); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer__copyright {
  font-size: 0.8rem;
  color: var(--muted2);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.8rem;
  color: var(--muted2);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--muted); }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(131,14,37,0.07) 0%, transparent 65%),
    linear-gradient(180deg, #EEE8DC 0%, var(--bg) 100%);
}
.page-header__content { position: relative; z-index: 2; }
.page-header h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  margin-bottom: 16px;
}
.page-header p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto;
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(131,14,37,0.06);
}
.shop-section {
  padding: 0 0 120px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.shop-grid .product-card[data-hidden="true"] {
  display: none;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  padding: 140px 0 100px;
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-detail__img-wrap {
  aspect-ratio: 1;
  /* Hintergrundbild statt einfarbigem Hintergrund */
  background-image: url('../img/9803421-krautergruner-henna-zweig-oder-blatter-mehendi-pata-mit-verschwommenem-hintergrund-foto.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
}
/* Weißer Overlay damit die Produktflasche gut sichtbar bleibt */
.product-detail__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.30);
  pointer-events: none;
}
/* Mit Galerie: aspect-ratio aufheben + Overlay weg, damit alle Ansichten passen */
.product-detail__img-wrap:has(.produkt-galerie) {
  aspect-ratio: auto;
  background: var(--surface);
}
.product-detail__img-wrap:has(.produkt-galerie)::after { display: none; }

/* ============================================================
   PRODUKT-GALERIE (4-Seiten-Ansicht) auf produkt.html
   ============================================================ */
.produkt-galerie {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px;
}
/* Buehne: Hauptbild + Pfeile links/rechts ueberlagert */
.produkt-galerie__buehne {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2; /* passt zur Studio-Bildgroesse 1200x800 */
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.produkt-galerie__hauptbild {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.produkt-galerie__pfeil {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #830e25;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.produkt-galerie__pfeil:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
}
.produkt-galerie__pfeil--zurueck { left: 10px; }
.produkt-galerie__pfeil--vor     { right: 10px; }

/* Thumbnail-Leiste */
.produkt-galerie__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.produkt-galerie__thumb {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 6px;
  cursor: pointer;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.produkt-galerie__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.produkt-galerie__thumb:hover { transform: translateY(-2px); }
.produkt-galerie__thumb.aktiv {
  /* KinaSaen-Rot fuer aktiven Thumbnail */
  border-color: #830e25;
}

/* Dark-Mode-Anpassungen */
html.dark-mode .produkt-galerie__buehne { background: #2a2a2a; }
html.dark-mode .produkt-galerie__thumb  { background: #2a2a2a; }
html.dark-mode .produkt-galerie__pfeil  { background: rgba(40,40,40,0.85); color: #ff6b87; border-color: rgba(255,255,255,0.08); }
html.dark-mode .produkt-galerie__pfeil:hover { background: rgba(60,60,60,0.95); }

/* Shop-Karten: Hover-Crossfade front -> back */
.product-card__img-wrap {
  position: relative;
}
.product-card__img--hover {
  position: absolute;
  inset: 0;
  width: 85%;
  height: 85%;
  margin: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.product-card:hover .product-card__img--hover { opacity: 1; }
.product-card:hover .product-card__img         { opacity: 0; }
.product-card__img { transition: opacity 0.35s ease, transform 0.4s ease; }

.product-detail__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.product-detail__breadcrumb a { transition: color var(--transition); }
.product-detail__breadcrumb a:hover { color: var(--neon); }
.product-detail__breadcrumb span { color: var(--muted2); }
.product-detail__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
}
.product-detail__name {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}
.product-detail__price {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}
.product-detail__unit-price {
  font-size: 0.78rem;
  color: var(--muted2);
  font-family: var(--font-body);
  margin-bottom: 6px;
}
.product-detail__price-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.product-detail__desc {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.product-detail__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.product-detail__benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.product-detail__benefit-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(131,14,37,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--neon);
  flex-shrink: 0;
}
.shopify-buy-placeholder {
  background: var(--surface);
  border: 2px dashed rgba(131,14,37,0.25);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-bottom: 20px;
}
.shopify-buy-placeholder p {
  color: var(--muted);
  font-size: 0.85rem;
}
.shopify-buy-placeholder code {
  font-size: 0.75rem;
  color: var(--neon);
  background: rgba(131,14,37,0.08);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 8px;
}
.product-detail__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.product-detail__meta-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.product-detail__meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.product-detail__meta-value {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.related-section {
  padding: 80px 0 120px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   ÜBER UNS PAGE
   ============================================================ */
.about-section {
  padding: 140px 0 100px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.about-visual {
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(131,14,37,0.08) 0%, transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(131,14,37,0.05) 0%, transparent 55%);
}
.about__tag { margin-bottom: 20px; }
.about__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
}
.about__title em {
  font-style: normal;
  color: var(--neon);
}
.about__text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about__stat {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.about__stat-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 8px;
}
.about__stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 80px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: rgba(131,14,37,0.25);
  transform: translateY(-4px);
}
.value-card__icon { font-size: 2rem; margin-bottom: 16px; }
.value-card__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.value-card__text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   KONTAKT PAGE
   ============================================================ */
.contact-section {
  padding: 140px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact__info-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}
.contact__info-title em {
  font-style: normal;
  color: var(--neon);
}
.contact__info-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact__info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(131,14,37,0.08);
  border: 1px solid rgba(131,14,37,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact__info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact__info-value {
  font-size: 0.95rem;
  color: var(--text);
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(131,14,37,0.4);
  box-shadow: 0 0 0 4px rgba(131,14,37,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted2); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--neon);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.neon-text { color: var(--neon); text-shadow: var(--neon-glow); }
.cyan-text { color: var(--neon-cyan); text-shadow: var(--cyan-glow); }
.text-muted { color: var(--muted); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.flex { display: flex; }
.gap-3 { gap: 12px; }
.items-center { align-items: center; }
.w-full { width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .product-detail__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { padding: 32px; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }
  .hero__actions { flex-direction: column; }
  .about__stats { grid-template-columns: 1fr; }
  .product-detail__meta { grid-template-columns: 1fr; }
}


/* ============================================================
   NAV — WARENKORB & LOGIN BUTTONS
   ============================================================ */

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}
.nav__cart-btn:hover {
  background: rgba(131,14,37,0.1);
  border-color: var(--neon);
  color: var(--neon);
}
.nav__cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #830e25;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-head);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav__user-btn {
  padding: 9px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav__user-btn .nav__user-icon { display: none; }
.nav__user-btn:hover,
.nav__user-btn.eingeloggt {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(131,14,37,0.08);
}

/* ============================================================
   AUTH MODAL — Login / Registrierung
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}
.modal-overlay.offen { display: flex; }

.modal-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 40px 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: modalHerein 0.25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalHerein {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.modal-schliessen {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--muted);
  transition: all var(--transition);
}
.modal-schliessen:hover { background: var(--border); color: var(--text); }

.modal-tabs {
  display: flex;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
}
.modal-tab {
  flex: 1;
  padding: 10px 0;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition);
}
.modal-tab.aktiv { color: var(--neon); border-bottom-color: var(--neon); }

.modal-form { display: none; }
/* data-tab-Attribut auf dem Overlay steuert welches Formular sichtbar ist —
   hohe CSS-Spezifität (2 IDs) schlägt alle anderen Regeln ohne !important */
#auth-modal[data-tab="login"]    #login-form    { display: block !important; }
#auth-modal[data-tab="register"] #register-form { display: block !important; }

.form-gruppe {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-gruppe label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.form-gruppe input {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  width: 100%;
  box-sizing: border-box;
}
.form-gruppe input:focus {
  outline: none;
  border-color: var(--neon);
  background: var(--surface);
}
.auth-fehler {
  color: #830e25;
  font-size: 0.83rem;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: rgba(131,14,37,0.07);
  border-radius: 8px;
  display: none;
}
.auth-fehler.sichtbar { display: block; }
.modal-submit { width: 100%; margin-top: 4px; }
.modal-trenner {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted2);
  margin: 16px 0 0;
}
.modal-trenner span { cursor: pointer; color: var(--neon); font-weight: 600; }
.modal-trenner span:hover { text-decoration: underline; }

/* ============================================================
   CART SIDEBAR — Warenkorb
   ============================================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.offen { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -440px;
  width: 420px;
  height: 100vh;
  background: var(--surface);
  z-index: 1501;
  transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(0,0,0,0.14);
}
.cart-sidebar.offen { right: 0; }

.cart-kopf {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-kopf h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cart-kopf-anzahl { font-size: 0.8rem; color: var(--muted); margin-left: 8px; }
.cart-schliessen {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--surface2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--muted);
  transition: all var(--transition);
}
.cart-schliessen:hover { background: var(--border); color: var(--text); }

.cart-artikel-liste {
  flex: 1;
  overflow-y: auto;
  padding: 12px 24px;
}
.cart-artikel-liste::-webkit-scrollbar { width: 4px; }
.cart-artikel-liste::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.cart-artikel {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-artikel:last-child { border-bottom: none; }
.cart-artikel__bild {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--surface2);
  border-radius: 10px;
  padding: 6px;
}
.cart-artikel__info { overflow: hidden; }
.cart-artikel__name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-artikel__preis { font-size: 0.9rem; color: var(--neon); font-weight: 600; }
.cart-artikel__menge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.cart-artikel__menge button {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--surface2);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.cart-artikel__menge button:hover {
  border-color: var(--neon);
  background: rgba(131,14,37,0.1);
  color: var(--neon);
}
.cart-artikel__menge-zahl {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  min-width: 20px;
  text-align: center;
}
.cart-artikel__entfernen {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted2);
  padding: 4px;
  border-radius: 6px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 2px;
}
.cart-artikel__entfernen:hover { color: #830e25; background: rgba(131,14,37,0.07); }

.cart-leer {
  text-align: center;
  padding: 60px 24px;
  color: var(--muted);
}
.cart-leer svg { opacity: 0.3; margin-bottom: 16px; }
.cart-leer p { font-family: var(--font-head); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }

.cart-fuss {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--surface);
}
.cart-gesamt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-gesamt-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.cart-gesamt-preis {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
}
.cart-checkout-btn { width: 100%; padding: 15px; font-size: 0.95rem; }
.cart-weiter-einkaufen {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: all var(--transition);
}
.cart-weiter-einkaufen:hover { border-color: var(--muted); color: var(--text); }
.cart-login-hinweis {
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
}
.cart-login-hinweis p { font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }

/* ============================================================
   PRODUKT-KARTE — Warenkorb-Button
   ============================================================ */

.product-card__add-btn {
  width: 100%;
  margin-top: 14px;
  padding: 10px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border-radius: 8px;
}
.product-card__add-btn:active { transform: scale(0.97); }

/* ============================================================
   CHECKOUT SEITE
   ============================================================ */

.checkout-section { padding: 120px 0 80px; min-height: 100vh; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.checkout-titel {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.checkout-form .form-gruppe input,
.checkout-form .form-gruppe select {
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  width: 100%;
  box-sizing: border-box;
  transition: border-color var(--transition);
}
.checkout-form .form-gruppe input:focus,
.checkout-form .form-gruppe select:focus {
  outline: none;
  border-color: var(--neon);
  background: var(--surface);
}
.checkout-form-zeile { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bestellung-zusammenfassung {
  background: var(--surface2);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 110px;
}
.bestellung-titel {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.bestellung-artikel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.bestellung-artikel-name { color: var(--text); flex: 1; }
.bestellung-artikel-menge { color: var(--muted); margin: 0 12px; }
.bestellung-artikel-preis { font-weight: 600; color: var(--neon); }
.bestellung-summe {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
}
.bestellung-hinweis { font-size: 0.78rem; color: var(--muted); margin-top: 16px; line-height: 1.6; }
.checkout-abschicken { width: 100%; margin-top: 24px; padding: 16px; font-size: 1rem; }
.checkout-erfolg {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--surface2);
  border-radius: var(--radius-lg);
}
.checkout-erfolg.sichtbar { display: block; }
.checkout-erfolg h2 { font-family: var(--font-head); font-size: 1.8rem; text-transform: uppercase; margin-bottom: 8px; }

@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .bestellung-zusammenfassung { position: static; }
}
@media (max-width: 600px) {
  .cart-sidebar { width: 100%; right: -100%; }
  .modal-box { padding: 28px 20px 24px; }
  .checkout-form-zeile { grid-template-columns: 1fr; }
}

/* ── PROFIL DROPDOWN ─────────────────────────────────────── */
.profil-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 1200;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.profil-dropdown.offen {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.profil-dropdown__kopf {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.profil-dropdown__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.profil-dropdown__email {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
  line-height: 1.3;
}
.profil-dropdown__bestellungen {
  padding: 16px 20px;
  max-height: 220px;
  overflow-y: auto;
}
.profil-dropdown__abschnitt-titel {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
}
.profil-dropdown__bestellung {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: 4px;
}
.profil-dropdown__bestellung:hover { background: rgba(131,14,37,0.05); }
.profil-dropdown__bestellung:last-child { border-bottom: none; }
.profil-dropdown__bestellung-nr {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neon);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}
.profil-dropdown__bestellung-info {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.profil-dropdown__laden,
.profil-dropdown__leer {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  padding: 12px 0;
}
.profil-dropdown__footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.profil-dropdown__alle-bestellungen {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: #830e25;
  background: transparent;
  text-decoration: none;
  transition: background var(--transition);
}
.profil-dropdown__alle-bestellungen:hover {
  background: rgba(131,14,37,0.08);
}
.profil-dropdown__ausloggen {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-cyan);
  background: transparent;
  transition: background var(--transition);
}
.profil-dropdown__ausloggen:hover {
  background: rgba(131,14,37,0.08);
}

/* ── BEWERTUNGEN ─────────────────────────────────────────── */
.bewertungen-section {
  padding: 80px 0;
  background: var(--surface2);
}
.bewertungen-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.bewertung-formular-wrap { position: sticky; top: 140px; }
.bewertung-formular {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sterne-auswahl {
  display: flex;
  gap: 6px;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}
.stern-btn { color: #ccc; transition: color 0.1s; }
.bewertungen-liste {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bewertung-karte {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.bewertung-karte__kopf {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.bewertung-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--neon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.bewertung-kommentar {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .bewertungen-layout { grid-template-columns: 1fr; }
  .bewertung-formular-wrap { position: static; }
}

/* ── PRODUKT WARENKORB BUTTON ────────────────────────────── */
.produkt-in-warenkorb {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
  font-size: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  justify-content: center;
}
.produkt-in-warenkorb.hinzugefuegt {
  background: var(--neon);
  opacity: 0.8;
}


/* ============================================================
   RESPONSIVE DESIGN — VOLLSTÄNDIG
   Breakpoints: Tablet ≤ 768px · Handy ≤ 480px
   ============================================================ */

/* ── TABLET (≤ 768px) ──────────────────────────────────────── */
@media (max-width: 768px) {

  /* Navigation: kompakter auf Tablet */
  .nav {
    height: 72px;
    padding: 0 20px;
  }
  .nav__logo-img {
    height: 64px;
  }
  /* Slide-In Menü: kein inset override nötig (Position: fixed top/right/bottom) */

  /* Mobile-Hero: kompakter, Bild zeigt die Flaschen unten, Text geht ueber volle Breite */
  .hero {
    padding: 92px 1.5rem 60px;
    min-height: 70vh;
    max-height: none;
  }
  .hero__bg {
    background-position: center bottom;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__headline {
    font-size: clamp(2rem, 8vw, 3rem);
    max-width: 100%;
  }
  .hero__sub {
    font-size: 0.95rem;
    margin: 1rem 0 1.75rem;
    max-width: 100%;
  }

  /* Seitenheader (Shop, Kontakt, etc.) */
  .page-header {
    padding: 110px 0 52px;
  }
  .page-header h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
  }

  /* Abschnitts-Titel */
  .section-header {
    margin-bottom: 36px;
  }
  .section-header h2 {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  /* Feature-Kacheln */
  .feature-item {
    padding: 32px 24px;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 64px 0;
  }
  .newsletter-inner {
    padding: 40px 32px;
  }

  /* Footer */
  .footer {
    padding: 56px 0 24px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer__legal {
    justify-content: center;
  }

  /* Produkt-Detail: untereinander (bereits bei 1024px, hier nochmal spacing) */
  .product-detail__grid {
    gap: 28px;
  }

  /* Warenkorb-Sidebar: etwas schmaler auf Tablet */
  .cart-sidebar {
    width: min(420px, 90vw);
  }

  /* Checkout-Abstand */
  .checkout-page {
    padding: 100px 0 60px;
  }
}

/* ── HANDY (≤ 480px) ───────────────────────────────────────── */
@media (max-width: 480px) {

  /* Globales Container-Padding */
  .container {
    padding: 0 16px;
  }

  /* Navigation: sehr kompakt */
  .nav {
    height: 60px;
    padding: 0 16px;
  }
  .nav__logo-img {
    height: 52px;
  }
  /* Slide-In: auf kleinen Phones etwas schmaler */
  .nav__mobile { width: min(280px, 88vw); padding-top: 64px; }

  /* Hero: deutlich kleinere Schrift + weniger Platz */
  .hero {
    padding: 76px 16px 48px;
    min-height: auto;
    /* overflow: hidden entfernt — sonst wird der Text abgeschnitten */
    overflow: visible;
  }
  /* Hero-Content und Headline: volle Breite, kein Überlauf */
  .hero__content {
    width: 100%;
    max-width: 100%;
  }
  .hero__headline {
    /* Klein genug damit "WEIL GESUNDHEIT" komplett auf eine Zeile passt */
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    line-height: 1.08;
    width: 100%;
    overflow: visible;
    white-space: normal;
  }
  .hero__sub {
    font-size: 0.88rem;
    margin: 16px 0 24px;
    max-width: 100%;
  }
  /* Alle Hero-Buttons untereinander, volle Breite */
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  /* Hero-Overlay auf Handy verstaerkt: ganzflaechig hell, damit der Text vor dem Bild lesbar bleibt */
  .hero__bg::after {
    background: rgba(255,255,255,0.80);
  }
  html.dark-mode .hero__bg::after {
    background: rgba(20,20,20,0.75);
  }
  /* Scroll-Indikator ausblenden auf Handy */
  .hero__scroll {
    display: none;
  }

  /* Buttons global: volle Breite, mindestens 44px Tippe-Fläche */
  .btn {
    min-height: 44px;
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* Seitenheader */
  .page-header {
    padding: 88px 0 36px;
  }
  .page-header h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  /* Abschnitts-Titel */
  .section-header {
    margin-bottom: 24px;
  }
  .section-header h2 {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }
  .section-header p {
    font-size: 0.88rem;
  }

  /* Produkt-Karten: 1 Spalte (bereits gesetzt, hier Extra-Styling) */
  .product-card {
    max-width: 100%;
  }

  /* Feature-Kacheln */
  .feature-item {
    padding: 24px 20px;
  }
  .feature-item__title {
    font-size: 1.2rem;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 48px 0;
  }
  .newsletter-inner {
    padding: 28px 20px;
    border-radius: var(--radius);
  }
  .newsletter__title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  /* Footer: kompakt */
  .footer {
    padding: 40px 0 20px;
  }
  .footer__grid {
    gap: 32px;
  }
  .footer__logo-img {
    height: 56px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 20px;
  }
  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* Warenkorb-Sidebar: volle Breite auf Handy */
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  .cart-sidebar.open {
    right: 0;
  }

  /* Login/Registrieren-Modal: fast volle Breite */
  .modal-overlay {
    padding: 16px;
    align-items: flex-end;
  }
  .modal-box {
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 28px 20px 32px;
    max-height: 90vh;
    overflow-y: auto;
  }

  /* Checkout: 1 Spalte (bereits bei 900px, hier Abstände) */
  .checkout-page {
    padding: 80px 0 48px;
  }
  .checkout-form-wrap,
  .bestellung-zusammenfassung {
    padding: 20px 16px;
  }
  .checkout-abschnitt {
    padding: 16px;
  }

  /* Produkt-Detail */
  .product-detail__grid {
    gap: 20px;
  }
  .product-detail__info h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  /* Bewertungen */
  .bewertungen-layout {
    grid-template-columns: 1fr;
  }

  /* Kontaktseite */
  .contact-form {
    padding: 24px 20px;
  }

  /* Über-Uns */
  .about-grid {
    gap: 32px;
  }
  .about__stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Allgemeiner Typografie-Zuschnitt auf Handy */
  h1, h2, h3 {
    letter-spacing: -0.01em;
  }
  p {
    font-size: 0.92rem;
  }

  /* Bestellungen-Seite */
  .bestellungen-container {
    padding: 88px 0 48px;
  }

  /* Nav-Buttons: mindestens 44px Touch-Fläche */
  .nav__cart-btn,
  .nav__user-btn {
    width: 44px;
    height: 44px;
  }

  /* Mobile: User-Icon statt Text */
  .nav__user-btn .nav__user-text { display: none; }
  .nav__user-btn .nav__user-icon { display: inline-flex; }
  .nav__user-btn { padding: 0; display: flex; align-items: center; justify-content: center; }

  /* Stern-Rating: größere Touch-Fläche auf Handy */
  .sterne-auswahl {
    font-size: 2.4rem;
    gap: 10px;
  }
  .stern-btn {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Warenkorb "In den Warenkorb" Button: volle Breite */
  #warenkorb-btn {
    width: 100%;
    justify-content: center;
  }

  /* Produkt-Detail Bild: nicht zu groß */
  .product-detail__img-wrap {
    max-height: 280px;
  }

  /* Warenkorb: kleineres Bild + größere Buttons */
  .cart-artikel { grid-template-columns: 60px 1fr auto; }
  .cart-artikel__bild { width: 60px; height: 60px; }
  .cart-artikel__menge button { width: 40px; height: 40px; min-width: 40px; min-height: 40px; border-radius: 8px; }
  .cart-schliessen { width: 44px; height: 44px; font-size: 1.2rem; border-radius: 10px; }
  .cart-kopf { padding: 16px 20px 14px; }
  .cart-artikel-liste { padding: 8px 16px; }
  .cart-fuss { padding: 16px 20px 20px; }

  /* Modal: volle Breite, gut erreichbarer Schließen-Button */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box { width: 100%; max-width: 100%; border-radius: 20px 20px 0 0; padding: 28px 20px 40px; max-height: 90vh; overflow-y: auto; }
  .modal-schliessen { width: 44px; height: 44px; border-radius: 10px; top: 12px; right: 12px; }
  #pw-generator-btn { width: 100%; min-height: 44px; margin-top: 8px; }
  .modal-tab { min-height: 44px; padding: 12px 0; font-size: 0.9rem; }

  /* Footer Links: mind. 44px Tippe-Fläche */
  .footer__col-links a { min-height: 44px; display: flex; align-items: center; padding: 4px 0; }
  .footer__social { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

  /* Nährwerttabelle: scrollbar falls zu breit */
  .naehrwert-tabelle-wrap, .naehrwert-tabelle { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Checkout: Formularfelder mind. 48px */
  .checkout-page input, .checkout-page select { min-height: 48px; padding: 12px 14px; }

  /* Produkt: Alle Info-Boxen untereinander */
  .produkt-in-warenkorb { width: 100%; justify-content: center; min-height: 52px; }
}

/* =======================================================================
   ERWEITERTE BREAKPOINTS — 430px · 390px · 375px · 320px
   ======================================================================= */

/* ── ≤ 430px — iPhone 14 Pro Max ────────────────────────────────────── */
@media (max-width: 430px) {
  .hero__headline { font-size: clamp(1.5rem, 8.5vw, 2.5rem); }
  .section-header h2 { font-size: clamp(1.5rem, 9vw, 2.2rem); }
  .filter-bar { flex-wrap: wrap; gap: 8px; }
  .filter-btn { padding: 8px 14px; font-size: 0.75rem; min-height: 44px; }
  /* Shop-Filter: Dropdown auf Mobile einblenden */
  .filter-select-mobile { display: block !important; }
  .filter-bar { display: none; }
  /* Checkout Vor-/Nachname untereinander */
  .form-row, .checkout-form-zeile { grid-template-columns: 1fr !important; }
  /* Zahlungsoptionen untereinander */
  .zahlung-optionen { flex-direction: column; }
}

/* ── ≤ 390px — iPhone 14 / iPhone 15 ───────────────────────────────── */
@media (max-width: 390px) {
  .container { padding: 0 14px; }
  .nav { padding: 0 14px; }
  .hero { padding: 72px 14px 44px; }
  .hero__headline { font-size: clamp(1.4rem, 9vw, 2.2rem); }
  .modal-box { padding: 24px 16px 36px; }
  .cart-kopf { padding: 14px 16px 12px; }
  .cart-artikel-liste { padding: 6px 14px; }
  .cart-fuss { padding: 14px 16px; }
}

/* ── ≤ 375px — iPhone SE 2/3. Gen, iPhone 8 ────────────────────────── */
@media (max-width: 375px) {
  .hero__headline { font-size: clamp(1.35rem, 9.5vw, 2rem); }
  .nav__logo-img { height: 44px; }
  .nav__cart-btn, .nav__user-btn { width: 40px; height: 40px; }
  .nav__mobile { width: min(270px, 88vw); }
  .product-card { padding: 12px; }
  .product-card__img { height: 160px; }
}

/* ── ≤ 320px — Kleine Android-Handys, iPhone SE 1. Gen ─────────────── */
@media (max-width: 320px) {
  .container { padding: 0 12px; }
  .nav { padding: 0 12px; height: 56px; }
  .nav__logo-img { height: 38px; }
  .nav__mobile { padding-top: 60px; width: min(260px, 90vw); }
  .hero { padding: 68px 12px 40px; min-height: auto; }
  .hero__headline { font-size: clamp(1.2rem, 10vw, 1.8rem); line-height: 1.1; }
  .hero__sub { font-size: 0.82rem; margin: 12px 0 20px; }
  .btn { padding: 10px 18px; font-size: 0.82rem; min-height: 44px; }
  .section-header h2 { font-size: clamp(1.3rem, 10vw, 1.9rem); }
  .page-header h1 { font-size: clamp(1.6rem, 12vw, 2.4rem); }
  .modal-box { padding: 20px 12px 32px; }
  .modal-schliessen { top: 10px; right: 10px; }
  .footer__col-links a { font-size: 0.82rem; }
  .nav__cart-btn, .nav__user-btn { width: 38px; height: 38px; }
  .cart-artikel { grid-template-columns: 52px 1fr auto; }
  .cart-artikel__bild { width: 52px; height: 52px; }
}

/* ── Sticky Add-to-Cart (Produkt-Detail) ────────────────────────────── */
.sticky-cart-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  z-index: 500;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.sticky-cart-bar__btn {
  width: 100%;
  min-height: 52px;
  background: var(--neon);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.2s;
}
.sticky-cart-bar__btn:hover { opacity: 0.9; }
@media (max-width: 768px) {
  .sticky-cart-bar { display: flex; flex-direction: column; }
  /* Abstand damit normaler Content nicht durch sticky bar verdeckt */
  .product-detail__info { padding-bottom: 80px; }
}
html.dark-mode .sticky-cart-bar { background: #2d2d2d; border-top-color: #3d3d3d; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }

/* ── Filter Select (Shop — Mobile) ──────────────────────────────────── */
.filter-select-mobile {
  display: none;
  width: 100%;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-bottom: 24px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23830e25' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
html.dark-mode .filter-select-mobile { background-color: #2d2d2d; border-color: #3d3d3d; color: #f0f0f0; }

/* ── Abo-Badge auf Produkt-Karten ────────────────────────────────────── */
.product-card__abo-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: #9ed2c0;
  color: #1a5c4c;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  z-index: 2;
  pointer-events: none;
}

/* ── Admin Dashboard — Mobile Sidebar ───────────────────────────────── */
@media (max-width: 768px) {
  .admin-sidebar-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .admin-sidebar-overlay.open { opacity: 1; pointer-events: all; }
}

/* =======================================================================
   iPAD — BREAKPOINTS (min-width)
   Regeln am Ende der Datei überschreiben frühere max-width-Regeln (Kaskade).
   768px / 820px / 1024px / 1180px / 1366px
   ======================================================================= */

/* ── ≥ 768px — iPad Mini & aufwärts: Nav, Layout-Resets ─────────────── */
@media (min-width: 768px) {
  /* Nav: Desktop-Links einblenden, Burger verstecken */
  .nav__links { display: flex !important; }
  .nav__burger { display: none !important; }
  .nav__mobile { display: none !important; }
  .nav__overlay { display: none !important; }

  /* Filter-Bar: Desktop-Buttons statt Dropdown */
  .filter-bar { display: flex !important; }
  .filter-select-mobile { display: none !important; }

  /* Sticky Cart Bar: nur auf Handy sinnvoll */
  .sticky-cart-bar { display: none !important; }
  .product-detail__info { padding-bottom: 0; }

  /* Hero: Position-Context fuer absolute Kinder (Stats-Box etc.) */
  .hero { position: relative; }

  /* Produkt-Detail: 2 Spalten */
  .product-detail__grid { grid-template-columns: 1fr 1fr !important; gap: 40px; }

  /* Checkout: 2 Spalten */
  .checkout-grid { grid-template-columns: 1fr 340px !important; }
  .bestellung-zusammenfassung { position: sticky !important; }

  /* Über-Uns: 2-Spalten-Layout */
  .about-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; }

  /* Bewertungen: 2-spaltig */
  .bewertungen-layout { grid-template-columns: 280px 1fr; }

  /* Formular-Zeilen: 2-spaltig */
  .form-row { grid-template-columns: 1fr 1fr !important; }
  .checkout-form-zeile { grid-template-columns: 1fr 1fr; }
}

/* ── ≥ 768px & ≤ 899px — iPad Mini (768 × 1024) ─────────────────────── */
@media (min-width: 768px) and (max-width: 899px) {
  /* Nav: kompakter wegen schmalerem Viewport */
  .nav { padding: 0 20px; }
  .nav__links { gap: 8px !important; }
  .nav__links a { font-size: 0.72rem; letter-spacing: 0.06em; padding: 6px 2px; }
  .nav__logo-img { height: 50px; }

  /* Hero: kleinere Schrift, Logo-Wasserzeichen-Groesse wird von Hauptregel skaliert */
  .hero__headline { font-size: clamp(2.8rem, 8vw, 5rem); }

  /* Produkte: 2 Spalten */
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .shop-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Footer: 2-spaltig */
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  /* Newsletter: 1 Spalte bleibt ok */
  .container { padding: 0 20px; }
}

/* ── ≥ 900px & ≤ 1023px — iPad / Air (820 × 1180) ───────────────────── */
@media (min-width: 900px) and (max-width: 1023px) {
  .nav__links { gap: 14px !important; }
  .nav__links a { font-size: 0.78rem; }
  .nav__logo-img { height: 54px; }

  .hero__headline { font-size: clamp(3.2rem, 7.5vw, 6rem); }

  /* Produkte: 2 Spalten */
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .shop-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Footer: 3-spaltig */
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .container { padding: 0 24px; }
}

/* ── ≥ 1024px & ≤ 1179px — iPad Pro 11" (1024 × 1366) ──────────────── */
@media (min-width: 1024px) and (max-width: 1179px) {
  .nav__links { gap: 20px !important; }
  .nav__links a { font-size: 0.82rem; }

  .hero__headline { font-size: clamp(3.8rem, 7vw, 7rem); }

  /* Produkte: 3 Spalten */
  .products-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .shop-grid { grid-template-columns: repeat(3, 1fr) !important; }

  /* Checkout: etwas breitere Summary */
  .checkout-grid { grid-template-columns: 1fr 360px !important; }

  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ── ≥ 1180px & ≤ 1366px — iPad Pro 12.9" (1180 × 1620) ────────────── */
@media (min-width: 1180px) and (max-width: 1366px) {
  .nav__links { gap: 28px !important; }
  .nav__links a { font-size: 0.88rem; }

  .hero__headline { font-size: clamp(4.5rem, 6.5vw, 8rem); }

  /* Produkte: 3 Spalten */
  .products-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .shop-grid { grid-template-columns: repeat(3, 1fr) !important; }

  /* Checkout */
  .checkout-grid { grid-template-columns: 1fr 380px !important; }

  /* Footer: 4-spaltig */
  .footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .footer__brand { grid-column: auto; }
}

/* ============================================================
   Pre-Launch Block A Quick-Fixes (Bug 15, 21, 22, 23, 25)
   ============================================================ */

/* Bug 15: Legal-Headlines (Datenschutz/Impressum/AGB) brachen auf Mobile haesslich um.
   Mit clamp() + word-break wird der Text auf schmalen Viewports sauber skaliert. */
.page-header h1 {
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}
@media (max-width: 480px) {
  /* Auf Handy noch kleiner — vor allem fuer "DATENSCHUTZERKLAERUNG" / "IMPRESSUM" / "AGB" */
  .page-header h1 { font-size: clamp(1.8rem, 9vw, 3rem); }
}

/* Bug 21: "IN DEN WARENKORB" Button brach auf iPhone-Breite zu "IN D / WAREN" um.
   Loesung: nowrap auf Desktop, kuerzerer Text auf Mobile via ::before/::after-Tausch geht
   nicht ohne Markup-Aenderung, daher: kleinere Schrift + nowrap + min-width 0. */
.product-card__add-btn {
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .product-card__add-btn {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    padding: 9px 8px;
  }
  /* Grid auf Handy etwas breitere Karten erlauben — verhindert dass der Button gar nicht passt */
  .shop-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

/* Bug 22: Sticky-Cart-Bar darf NUR auf Produktdetail erscheinen.
   Aktuell wird das HTML zwar nur in produkt.html eingebunden, aber zur Robustheit:
   per body.page-produkt freischalten. Body-Klassen werden unten ergaenzt. */
.sticky-cart-bar { display: none; }
body.page-produkt .sticky-cart-bar { display: flex; }

/* Bug 23: Preis-Komponente bricht auf Mobile zwischen Zahl und Euro-Zeichen um.
   nowrap auf den ganzen Preis + Auto-Skalierung via clamp(). */
.product-card__price {
  white-space: nowrap;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
}
.product-card__price span {
  white-space: nowrap;
}

/* Bug 25: Padding-bottom auf Shop-Liste, damit beim Scrollen unten nichts verdeckt wird.
   Sticky-Bar erscheint zwar nur auf Produktdetail, aber Compare-Bar (ks-compare-bar) ist
   ueberall moeglich und kann unten ueberlagern. 80 px sind ein guter Abstand. */
.shop-section { padding-bottom: 80px; }
