/* =====================================================
   FABULOUS — Premium T-Shirt Landing Page
   Fonts: Playfair Display (headings) + Inter (body)
   Palette: #0a0a0a · #f0ede8 · #999 · #555 · #c8b89a
   ===================================================== */

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

:root {
  --bg:           #0a0a0a;
  --text:         #f0ede8;
  --text-mid:     #999999;
  --text-dim:     #555555;
  --sand:         #c8b89a;
  --border:       rgba(255,255,255,0.08);
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { font-size: 16px; scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; }

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
.cookie-banner p {
  font-size: 0.8125rem;
  color: var(--text-mid);
}
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.cookie-btn--accept {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.cookie-btn--accept:hover { background: var(--sand); border-color: var(--sand); }
.cookie-btn--decline {
  background: transparent;
  color: var(--text-mid);
}
.cookie-btn--decline:hover { color: var(--text); }

/* =====================================================
   LOADER
   ===================================================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.loader-bar-wrap {
  width: 180px;
  height: 1px;
  background: var(--border);
  overflow: hidden;
}
#loader-bar {
  height: 100%;
  width: 0%;
  background: var(--text);
  transition: width 0.1s linear;
}
#loader-percent {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

/* =====================================================
   HEADER
   ===================================================== */
/* Gradient hinter dem Header — Logo immer lesbar */
.nav-gradient {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: 999;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 48px;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text);
  line-height: 1;
}
.logo-claim {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--text-mid);
  text-transform: uppercase;
  line-height: 1;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link.active::after { transform: scaleX(1); }
.nav-links .nav-cta {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 22px;
  border-radius: 100px;
  transition: background 0.25s, border-color 0.25s;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.35);
  color: var(--text);
}

/* ── Hamburger ────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile Nav ───────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  z-index: 1100;
  background: #111;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--text-mid);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--text); }
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-nav-links a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.25s;
}
.mobile-nav-links a:hover { color: var(--text); }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

/* =====================================================
   HERO
   ===================================================== */
.hero-standalone {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  z-index: 10;
}
.hero-inner {
  padding-left: 8vw;
  padding-right: 52vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(4rem, 9vw, 10.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0.04em;
}
.hero-line {
  display: flex;
  gap: 0.22em;
}
.hero-heading .word { display: inline-block; }
.hero-heading .accent {
  color: transparent;
  -webkit-text-stroke: 1px rgba(240,237,232,0.3);
}
.hero-tagline {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 8vw;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-arrow { animation: scrollBob 2s ease-in-out infinite; }
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* =====================================================
   CANVAS
   ===================================================== */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  clip-path: circle(0% at 50% 50%);
  background: transparent;
}
#canvas { display: block; width: 100%; height: 100%; image-rendering: crisp-edges; }

/* =====================================================
   DARK OVERLAY — entfernt
   ===================================================== */
#dark-overlay {
  display: none;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee-wrap {
  position: fixed;
  bottom: 8vh;
  left: 0; right: 0;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}
.marquee-text {
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 12vw;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  will-change: transform;
  display: inline-block;
}

/* =====================================================
   SCROLL CONTAINER
   ===================================================== */
#scroll-container {
  position: relative;
  height: 900vh;
  z-index: 3;
}

/* ── Gemeinsame Section-Basis ─────────────────────── */
.scroll-section {
  position: absolute;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
  visibility: hidden;
  pointer-events: none;
  background: transparent !important; /* verhindert schwarze Kästchen */
  will-change: auto; /* kein GPU-Layer erzwingen */
  isolation: auto;
}
.scroll-section.active {
  visibility: visible;
  pointer-events: auto;
}

/* ── Textzone-Alignment ───────────────────────────── */
.align-left  { padding-left: 5vw;  padding-right: 55vw; }
.align-right { padding-left: 55vw; padding-right: 5vw;  }
.align-left  .section-inner,
.align-right .section-inner {
  max-width: 38vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Section-Typografie ───────────────────────────── */
.section-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-body {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: #7a7a7a;
  max-width: 320px;
}
.section-note {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ── Stats ────────────────────────────────────────── */
.section-stats { justify-content: center; }
.stats-grid {
  display: flex;
  gap: 80px;
  align-items: flex-end;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-row {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  padding-top: 0.1em;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ── CTA Section ──────────────────────────────────── */
.section-cta { justify-content: center; }
.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 560px;
}
.cta-heading { font-size: clamp(2.8rem, 5.5vw, 6.5rem); }

/* ── Color Picker ─────────────────────────────────── */
.color-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
}
.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  outline: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.color-swatch:hover { transform: scale(1.15); }
.color-swatch.selected {
  border-color: var(--text);
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--text);
  transform: scale(1.1);
}
.color-name {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  text-transform: uppercase;
  min-width: 60px;
}

/* ── Trust Signals ────────────────────────────────── */
.trust-signals {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}
.trust-icon { font-size: 0.9rem; line-height: 1; }

/* ── CTA Button (in scroll-section, versteckt) ─────── */
.cta-button { display: none; }

/* ── Sticky Buy Buttons ────────────────────────────── */
.sticky-buy-btn {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: inline-block;
  padding: 17px 40px;
  background: #f0ede8;
  color: #0a0a0a;
  border: 1px solid rgba(0,0,0,0.12);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.2s;
  cursor: pointer;
}
.sticky-buy-btn--dark {
  background: #1a1a1a;
  color: #f0ede8;
  border: 1px solid rgba(255,255,255,0.15);
}
.sticky-buy-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

/* ── Inline Produktdetails Accordion ──────────────── */
.inline-details-wrap {
  margin-top: 36px;
  border-top: 1px solid var(--border);
}
.inline-details-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
}
.inline-details-trigger:hover { color: var(--text); }
.inline-details-icon {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s;
}
.inline-details-trigger.open .inline-details-icon { transform: rotate(45deg); }
.inline-details-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.inline-details-content.open { max-height: 400px; }
.inline-details-content .details-list {
  padding: 4px 0 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inline-details-content .details-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.inline-details-content .details-list li strong {
  color: var(--text);
  font-weight: 500;
}

/* =====================================================
   BELOW FOLD
   ===================================================== */
.below-fold {
  position: relative;
  z-index: 10;
  background: var(--bg);
}

/* ── BF Section Basis ─────────────────────────────── */
.bf-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.bf-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.bf-container--narrow {
  max-width: 760px;
}
.bf-heading {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 16px 0 40px;
}
.bf-intro {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-top: -24px;
  margin-bottom: 40px;
}

/* ── Farbauswahl Größentabelle ────────────────────── */
.specs-color-picker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.specs-color-heading {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.specs-swatches {
  display: flex;
  align-items: center;
  gap: 10px;
}
.specs-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  cursor: pointer;
  outline: 3px solid transparent;
  outline-offset: 3px;
  transition: outline-color 0.2s, border-color 0.2s;
}
.specs-swatch:hover {
  border-color: rgba(255,255,255,0.4);
}
.specs-swatch.selected {
  outline-color: var(--sand);
  border-color: rgba(255,255,255,0.35);
}
.specs-color-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  text-transform: uppercase;
}

/* ── Größentabelle ────────────────────────────────── */
.size-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.size-table th {
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: left;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.size-table td {
  padding: 14px 20px;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.size-row { transition: background 0.2s; }
.size-row:hover td { color: var(--text); }
.size-row.selected { background: rgba(255,255,255,0.04); }
.size-row.selected td { color: var(--text); }
.size-btn {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.size-btn:hover { border-color: var(--text); color: var(--text); }
.size-row.selected .size-btn {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.size-hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  margin-top: 8px;
}

/* ── Order Button ─────────────────────────────────── */
.order-btn-wrap {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.order-btn {
  display: inline-block;
  padding: 17px 56px;
  background: var(--sand);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.order-btn:hover {
  background: var(--text);
  transform: translateY(-2px);
}
.order-validation-hint {
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: #e05555;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── Reviews ──────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
/* Reihe 1: 3 Karten gleichmäßig */
.review-card:nth-child(1) { grid-column: 1 / 3; }
.review-card:nth-child(2) { grid-column: 3 / 5; }
.review-card:nth-child(3) { grid-column: 5 / 7; }
/* Reihe 2: 2 Karten zentriert */
.review-card:nth-child(4) { grid-column: 2 / 4; }
.review-card:nth-child(5) { grid-column: 4 / 6; }

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(255,255,255,0.16); }
.stars {
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: #f0ede8;
  flex: 1;
}
.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.review-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #f0ede8;
}
.review-date {
  font-size: 0.7rem;
  color: #999;
  letter-spacing: 0.06em;
}

/* ── FAQ Accordion ────────────────────────────────── */
.accordion { margin-top: 8px; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--text-mid); }
.accordion-icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.4s ease;
}
.accordion-content.open {
  max-height: 400px;
}
.accordion-content p {
  padding-bottom: 24px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}
.accordion-content a {
  color: var(--sand);
  text-decoration: none;
}
.accordion-content a:hover { text-decoration: underline; }

/* ── Email Capture ────────────────────────────────── */
.email-section {
  background: linear-gradient(180deg, var(--bg) 0%, #0f0f0f 100%);
  text-align: center;
}
.email-section .bf-container { display: flex; flex-direction: column; align-items: center; }
.email-heading {
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  margin-bottom: 32px !important;
}
.email-form { width: 100%; max-width: 480px; }
.email-field {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s;
}
.email-field:focus-within { border-color: rgba(255,255,255,0.25); }
.email-input {
  flex: 1;
  padding: 15px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
}
.email-input::placeholder { color: var(--text-dim); }
.email-btn {
  padding: 15px 28px;
  background: var(--text);
  color: var(--bg);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 100px 100px 0;
  transition: background 0.2s;
  white-space: nowrap;
}
.email-btn:hover { background: var(--sand); }
.email-note {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 14px;
  letter-spacing: 0.04em;
}
.email-success {
  font-size: 0.875rem;
  color: var(--sand);
  padding: 16px 0 0;
}

/* ── Compliance ───────────────────────────────────── */
.compliance-wrap {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 0 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.compliance-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  gap: 12px;
  transition: color 0.2s;
}
.compliance-toggle:hover { color: var(--text-mid); }
.compliance-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.compliance-toggle.open .compliance-icon { transform: rotate(45deg); }
.compliance-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.compliance-content.open { max-height: 600px; }
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 24px 0 40px;
}
.compliance-block { display: flex; flex-direction: column; gap: 8px; }
.compliance-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.compliance-block p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
}
.compliance-block a {
  color: rgba(200,184,154,0.6);
  text-decoration: none;
}
.compliance-block a:hover { color: var(--sand); }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.footer-nav { display: flex; gap: 32px; }
.footer-nav a {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ── Product Details Accordion ────────────────────── */
.details-accordion-wrap { margin-top: 8px; }
.details-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}
.details-trigger:hover { color: var(--text-mid); }
.details-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.details-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.details-content.open { max-height: 500px; }
.details-list {
  list-style: none;
  padding: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.details-list li {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  padding-left: 24px;
  position: relative;
}
.details-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sand);
}
.details-list li strong { color: var(--text); font-weight: 500; }

/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .site-header { padding: 18px 24px; }
}

@media (max-width: 768px) {
  .hero-inner {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .hero-heading { font-size: clamp(3rem, 14vw, 5rem); }

  .align-left, .align-right {
    padding: 0 6vw;
    align-items: flex-end;
    padding-bottom: 10vh;
  }
  /* Alle .section-inner auf Mobile: kein dunkler Kasten, kein GPU-Layer */
  .scroll-section .section-inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .stats-grid {
    flex-direction: column;
    gap: 36px;
    align-items: center;
    text-align: center;
  }
  .stat { align-items: center; }

  .section-cta .cta-inner { padding: 0 6vw; }

  .trust-signals { flex-wrap: wrap; gap: 14px; justify-content: center; }

  #scroll-container { height: 700vh; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review-card:nth-child(n) { grid-column: 1 / -1; }

  .bf-container { padding: 0 24px; }
  .bf-section { padding: 80px 0; }

  .compliance-wrap { padding: 0 24px; }
  .compliance-grid { grid-template-columns: 1fr; gap: 24px; }

  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }

  .cookie-banner {
    white-space: normal;
    flex-direction: column;
    align-items: flex-start;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    border-radius: 12px 12px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .cookie-banner.hidden { transform: translateY(100%); }
}

@media (max-width: 480px) {
  .size-table { font-size: 0.78rem; }
  .size-table th,
  .size-table td { padding: 10px 12px; }
}

/* =====================================================
   MINI CART
   ===================================================== */

/* ── Cart Icon Button ─────────────────────────────── */
.cart-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.cart-icon-btn:hover { background: rgba(255,255,255,0.07); }
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--sand);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 17px;
  border-radius: 100px;
  text-align: center;
}

/* ── Cart Overlay ─────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 0.3s ease;
}
.cart-overlay.open {
  background: rgba(0,0,0,0.55);
  pointer-events: auto;
}

/* ── Cart Panel ───────────────────────────────────── */
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  z-index: 10001;
  background: #111111;
  border-left: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow: hidden;
}
.cart-panel.open { transform: translateX(0); }

/* ── Cart Header ──────────────────────────────────── */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.cart-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.cart-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  color: var(--text-mid);
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.cart-close-btn:hover { color: var(--text); background: rgba(255,255,255,0.07); }

/* ── Cart Items List ──────────────────────────────── */
.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.cart-items-list::-webkit-scrollbar { width: 4px; }
.cart-items-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

.cart-item {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.cart-item:hover { background: rgba(255,255,255,0.02); }

.cart-item-color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.cart-item-info { min-width: 0; }
.cart-item-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  display: block;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 3px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--text);
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
}
.qty-btn:hover { background: rgba(255,255,255,0.14); }
.qty-val {
  min-width: 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.cart-item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.cart-item-remove:hover { color: #e05555; background: rgba(224,85,85,0.1); }

/* ── Cart Empty State ─────────────────────────────── */
.cart-empty {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 48px 28px;
  color: var(--text-dim);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-align: center;
}
.cart-empty.visible {
  display: flex;
}

/* ── Cart Footer ──────────────────────────────────── */
.cart-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px 28px;
  flex-shrink: 0;
}
.cart-shipping-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
#cart-subtotal-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.cart-checkout-btn:hover {
  background: rgba(240,237,232,0.88);
  transform: translateY(-1px);
}

/* ── Mobile Cart ──────────────────────────────────── */
@media (max-width: 480px) {
  .cart-panel { width: 100%; border-left: none; }
}

/* =====================================================
   SIDE COLOR SWITCHER (Animations-Phase)
   ===================================================== */
#color-switcher {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
#color-switcher.visible {
  opacity: 1;
  pointer-events: auto;
}
.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
#dot-white {
  background: #f5f5f5;
  border-color: rgba(0,0,0,0.25);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
#dot-black {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.3);
}
.color-dot.active {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.8);
}
#dot-white.active {
  box-shadow: 0 0 0 2px rgba(0,0,0,0.5);
}
