/* ==========================================================================
   Eleknik - Coming-Soon / Produkt-Onepage
   Corporate Design: Schwarz (#0F0F0F) + Orange (#F05023)
   ========================================================================== */

/* Inter self-hosted (DSGVO-konform, keine Google-Fonts-Anfrage) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/inter-800.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  --ci-orange: #F05023;
  --ci-orange-dark: #d8441d;
  --ci-orange-soft: rgba(240, 80, 35, 0.12);
  --bg: #0F0F0F;
  --bg-elevated: #1a1a1a;
  --border: #2a2a2a;
  --text: #E8E8E8;
  --text-dim: #B0B0B0;
  --text-muted: #888;
  --max-width: 1160px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ci-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font-family: inherit; }

::selection { background: var(--ci-orange); color: #fff; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ==========================================================================
   Language Switcher (fixed top-right)
   ========================================================================== */
.lang-switcher {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.lang-switcher__link {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
  line-height: 1;
}
.lang-switcher__link:hover { color: #fff; text-decoration: none; }
.lang-switcher__link.is-active {
  background: var(--ci-orange);
  color: #111;
}
.lang-switcher__sep {
  width: 1px;
  height: 14px;
  background: var(--border);
}
@media (max-width: 767px) {
  .lang-switcher { top: 12px; right: 12px; font-size: 11.5px; }
  .lang-switcher__link { padding: 5px 10px; }
}

/* ==========================================================================
   Amazon Bestseller Badge
   ========================================================================== */
.bestseller-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F0A020 0%, #F05023 100%);
  color: #111;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(240, 80, 35, 0.25);
}
.bestseller-badge svg { flex-shrink: 0; }

/* ==========================================================================
   Product Specs (Kompakt-Liste)
   ========================================================================== */
.product__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.product__specs > div { min-width: 0; }
.product__specs dt {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 3px;
}
.product__specs dd {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 480px) {
  .product__specs { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Star Rating
   ========================================================================== */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  text-decoration: none;
  padding: 6px 10px;
  margin-left: -10px;
  border-radius: 8px;
  transition: background 0.2s ease;
  cursor: pointer;
}
.rating:hover, .rating:focus-visible {
  background: rgba(240, 80, 35, 0.08);
  text-decoration: none;
}
.rating:hover .rating__count { color: var(--ci-orange); }
.stars { display: inline-flex; gap: 1px; }
.star {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.star--full  { fill: #F0A020; }
.star--empty { fill: #333; }
.star--half  { fill: transparent; }
.rating__value {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.rating__count {
  color: var(--text-dim);
  font-size: 13px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  padding: 28px 24px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.site-header .logo { height: 32px; margin: 0 auto; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 40px 24px 100px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, #1f1f1f 0%, #0F0F0F 65%);
}
/* Halbton-Punkte (Eleknik-Markenzeichen) */
.hero__halftone {
  position: absolute;
  inset: 0;
  background: url('hintergrund.svg') center top / cover no-repeat;
  opacity: 0.75;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Fade-Overlay */
.hero__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0) 0%,
    rgba(15, 15, 15, 0) 40%,
    rgba(15, 15, 15, 0.85) 85%,
    rgba(15, 15, 15, 1) 100%
  );
}
.hero__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  z-index: 1;
}
.hero__logo {
  width: 100%;
  max-width: 720px;  /* Desktop: ~79 px hoch, groesser als vorher */
  height: auto;
  margin: 0 auto 12px;  /* naeher am Claim */
  display: block;
}
.hero__claim {
  font-size: 14px;
  letter-spacing: 8px;  /* bewusst knapp unter Logo-Breite */
  font-weight: 700;
  color: var(--ci-orange);
  text-transform: uppercase;
  margin: 0 0 48px;
  white-space: nowrap;  /* immer auf einer Zeile */
  line-height: 1.1;
}
.hero__maintenance {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ci-orange-soft);
  border: 1px solid rgba(240, 80, 35, 0.45);
  border-radius: 10px;
  padding: 16px 26px;
  color: #fff;
  font-weight: 500;
  text-align: left;
  max-width: 640px;
}
.hero__maintenance svg {
  flex-shrink: 0;
  color: var(--ci-orange);
}
.hero__maintenance p {
  margin: 0;
  line-height: 1.4;
}
.hero__maintenance strong { display: block; margin-bottom: 2px; }

/* ==========================================================================
   About
   ========================================================================== */
.about {
  padding: 100px 0 90px;
  background: var(--bg);
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ci-orange);
  font-weight: 700;
  margin-bottom: 14px;
}

.about__intro {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}
.about__intro h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.8px;
  line-height: 1.15;
}
.about__intro h2 span { color: var(--ci-orange); }
.about__intro .lead {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.65;
}
.about__intro .lead strong { color: #fff; font-weight: 600; }

/* Pillars (3-Säulen) */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 80px;
}
@media (min-width: 760px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.pillar {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 80, 35, 0.4);
}
.pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--ci-orange-soft);
  color: var(--ci-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.pillar h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.pillar p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.pillar p strong { color: #fff; font-weight: 600; }

/* Portfolio */
.portfolio {
  max-width: 1000px;
  margin: 0 auto;
}
.portfolio__header {
  text-align: center;
  margin-bottom: 40px;
}
.portfolio__header h3 {
  color: #fff;
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.portfolio__header p {
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
}
.portfolio__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 560px) { .portfolio__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .portfolio__grid { grid-template-columns: repeat(4, 1fr); } }

.portfolio__item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.portfolio__item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--ci-orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}
.portfolio__item:hover {
  border-color: rgba(240, 80, 35, 0.5);
  transform: translateX(2px);
}
.portfolio__item:hover::before { transform: scaleY(1); transform-origin: top; }
.portfolio__label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ci-orange);
  font-weight: 700;
}
.portfolio__name {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

/* ==========================================================================
   Product
   ========================================================================== */
.product {
  padding: 60px 0 100px;
  background: linear-gradient(to bottom, var(--bg), #121212);
}
.product__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 880px) {
  .product__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.product__image {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product__info h1 {
  font-size: clamp(26px, 3vw, 34px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.product__subtitle {
  color: var(--text-dim);
  margin-bottom: 24px;
  font-size: 15px;
}
.product__price {
  font-size: 38px;
  font-weight: 800;
  color: var(--ci-orange);
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.product__vat {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.product__option {
  margin-bottom: 24px;
}
.product__option-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 700;
}
.product__option-label span { color: var(--text); text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 500; }

/* Color swatches */
.color-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.18s ease;
  font-size: 14px;
}
.swatch::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid #555;
  flex-shrink: 0;
}
.swatch[data-color="weiss"]::before { background: #fff; border-color: #ccc; }
.swatch[data-color="schwarz"]::before { background: #000; }
.swatch:hover { border-color: #666; }
.swatch.is-active {
  border-color: var(--ci-orange);
  background: var(--ci-orange-soft);
}

/* Length buttons */
.length-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.length-btn {
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 14px 8px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.18s ease;
}
.length-btn:hover { border-color: #666; }
.length-btn.is-active {
  border-color: var(--ci-orange);
  background: var(--ci-orange);
  color: #111;
}

/* Amazon button (inline-SVG, Light-Variante fuer dunklen Hintergrund) */
.amz-btn {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
  margin-top: 8px;
  transition: filter 0.2s ease, transform 0.15s ease;
  max-width: 100%;
}
.amz-btn svg { display: block; max-width: 100%; height: auto; }
.amz-btn .amz-bg {
  stroke-width: 1.5;
  transition: stroke 0.2s ease, fill 0.2s ease;
}
.amz-btn .amz-divider { transition: stroke 0.2s ease; }
.amz-btn .amz-icon,
.amz-btn .amz-wordmark g { transition: fill 0.2s ease; }

/* Light-Variante (fuer dunkle Hintergruende) */
.amz-btn-light .amz-bg { fill: #F8F8F8; stroke: #C0C0C0; }
.amz-btn-light .amz-icon { color: #1A1A1A; }
.amz-btn-light .amz-wordmark g { fill: #1A1A1A; }
.amz-btn-light .amz-subtitle { fill: #666666; }
.amz-btn-light .amz-divider { stroke: #D0D0D0; }

.amz-btn-light:hover .amz-bg { fill: #EEEEEE; stroke: #FF9900; }
.amz-btn-light:hover .amz-divider { stroke: #FF9900; }

/* Dark-Variante (falls fuer hellen Hintergrund benoetigt) */
.amz-btn-dark .amz-bg { fill: #1F1F1F; stroke: #4A4A4A; }
.amz-btn-dark .amz-icon { color: #FFFFFF; }
.amz-btn-dark .amz-wordmark g { fill: #FFFFFF; }
.amz-btn-dark .amz-subtitle { fill: #AAAAAA; }
.amz-btn-dark .amz-divider { stroke: #555555; }

.amz-btn-dark:hover .amz-bg { fill: #2A2A2A; stroke: #FF9900; }
.amz-btn-dark:hover .amz-divider { stroke: #FF9900; }

.amz-btn:hover {
  filter: drop-shadow(0 3px 12px rgba(255, 153, 0, 0.3));
  transform: translateY(-1px);
}
.amz-btn:active { transform: translateY(0); }
.amz-btn:focus-visible {
  outline: 3px solid var(--ci-orange);
  outline-offset: 3px;
  border-radius: 9px;
}

/* Availability */
.product__availability {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  font-size: 14px;
  margin-top: 20px;
  font-weight: 500;
}
.product__availability::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

/* Features */
.features {
  list-style: none;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-dim);
  font-size: 15px;
}
.features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--ci-orange);
  border-bottom: 2px solid var(--ci-orange);
  transform: rotate(-45deg);
}

/* ==========================================================================
   Product brand + details
   ========================================================================== */
.product__brand {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ci-orange);
  font-weight: 700;
  margin-bottom: 8px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 90px 0 100px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.faq__inner { max-width: 820px; }
.faq__header {
  text-align: center;
  margin-bottom: 48px;
}
.faq__header h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.faq__header h2 span { color: var(--ci-orange); }
.faq__header p {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq__item[open] {
  border-color: rgba(240, 80, 35, 0.4);
}
.faq__item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
  position: relative;
  padding-right: 54px;
  font-size: 15.5px;
  line-height: 1.4;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ci-orange);
  border-bottom: 2px solid var(--ci-orange);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.22s ease;
}
.faq__item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq__item summary:hover { color: var(--ci-orange); }
.faq__answer {
  padding: 0 22px 20px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #000;
  padding: 44px 24px 32px;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border);
}
.footer-nav { margin-bottom: 18px; }
.footer-nav a {
  color: var(--text);
  padding: 6px 14px;
  font-weight: 500;
  display: inline-block;
}
.footer-nav a:hover { color: var(--ci-orange); text-decoration: none; }
.footer-nav .sep { color: #333; user-select: none; }
.copyright { color: #999; font-size: 13px; }

/* ==========================================================================
   Legal pages (Impressum / Datenschutz)
   ========================================================================== */
.legal {
  padding: 60px 0 120px;
  min-height: 60vh;
}
.legal__inner { max-width: 820px; }
.legal h1 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.legal .lead {
  color: var(--text);
  font-size: 17px;
  margin-bottom: 32px;
}
.legal h2 {
  color: var(--ci-orange);
  font-size: 18px;
  margin: 36px 0 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.legal p, .legal ul, .legal ol {
  margin-bottom: 16px;
  color: var(--text-dim);
  font-size: 15.5px;
}
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--ci-orange); }
.legal strong { color: #fff; font-weight: 600; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 32px;
  transition: color 0.18s ease;
}
.back-link:hover { color: var(--ci-orange); text-decoration: none; }

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-elevated);
  border-top: 2px solid var(--ci-orange);
  padding: 20px 24px;
  z-index: 100;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.6);
  animation: slideUp 0.35s ease-out;
}
.cookie-banner[hidden] { display: none !important; }
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 900px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}
.cookie-banner__text { flex: 1; min-width: 0; }
.cookie-banner__text h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.cookie-banner__text p {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}
.cookie-banner__details { margin-top: 10px; }
.cookie-banner__details summary {
  color: var(--ci-orange);
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  display: inline-block;
}
.cookie-banner__details summary:hover { text-decoration: underline; }
.cookie-banner__details[open] > summary { margin-bottom: 10px; }
.cookie-banner__details p {
  padding-top: 10px;
  border-top: 1px solid #2a2a2a;
  font-size: 13px;
  line-height: 1.55;
}
.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ci-orange);
  color: #111;
  border-color: var(--ci-orange);
}
.btn--primary:hover { background: var(--ci-orange-dark); border-color: var(--ci-orange-dark); color: #111; }
.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--secondary:hover { border-color: #888; }

.cookie-reopen {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.18s ease;
}
.cookie-reopen:hover { color: var(--ci-orange); border-color: var(--ci-orange); }

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero__logo { max-width: 500px; margin-bottom: 10px; }
  .hero__claim { font-size: 12px; letter-spacing: 4.5px; }
}

/* Mobile */
@media (max-width: 767px) {
  .hero { padding: 72px 20px 72px; }   /* top groesser, damit DE/EN-Switcher das Logo nicht verdeckt */
  .hero__logo { max-width: 340px; margin-bottom: 8px; }
  .hero__claim { font-size: 10px; letter-spacing: 2px; margin-bottom: 30px; }
  .hero__maintenance { padding: 14px 18px; font-size: 14px; }
  .about { padding: 64px 0 48px; }
  .product { padding: 40px 0 80px; }
  .product__image { padding: 20px; }
  .product__price { font-size: 30px; }
  .length-buttons { grid-template-columns: repeat(4, 1fr); }
  .amazon-btn img { width: 190px; }
  .cookie-banner { padding: 16px 18px; }
  .cookie-banner__buttons .btn { flex: 1; }
  .legal { padding: 40px 0 100px; }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero { padding: 64px 16px 64px; }
  .hero__logo { max-width: 290px; margin-bottom: 6px; }
  .hero__claim { font-size: 9px; letter-spacing: 1.5px; margin-bottom: 26px; }
}

@media (max-width: 380px) {
  .length-buttons { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--ci-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   REVIEWS (verifizierte Amazon.de-Kundenbewertungen)
   ========================================================================== */
.reviews {
  padding: 90px 0 100px;
  background: linear-gradient(to bottom, #121212, var(--bg));
  border-top: 1px solid var(--border);
}
.reviews__inner { max-width: 1120px; }
.reviews__header {
  text-align: center;
  margin-bottom: 48px;
}
.reviews__header h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.reviews__header h2 span { color: var(--ci-orange); }
.reviews__header p {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.review {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.review:hover { border-color: rgba(240, 80, 35, 0.35); transform: translateY(-2px); }

.review__top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review__top .stars { display: inline-flex; gap: 1px; }
.review__top .star { width: 16px; height: 16px; fill: #F0A020; }
.review__top .star--empty { fill: #444; }
.review__rating-value {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 600;
}

.review__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}

.review__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
  quotes: "„" "\"" "\\2018" "\\2019";
  font-style: normal;
  border-left: 2px solid rgba(240, 80, 35, 0.45);
  padding-left: 12px;
}

.review__meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.review__meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}
.review__meta-line--sub { justify-content: space-between; }
.review__author { color: var(--text); font-weight: 600; }
.review__verified {
  color: #3DAB3D;
  font-weight: 600;
}
.review__verified::before {
  content: '✓ ';
  margin-right: 2px;
}
.review__variant { color: var(--text-dim); }
.review__source {
  color: var(--ci-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 12.5px;
  white-space: nowrap;
}
.review__source:hover, .review__source:focus-visible {
  text-decoration: underline;
}

.reviews__disclaimer {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 3px solid var(--ci-orange);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-dim);
}
.reviews__disclaimer strong { color: var(--text); }
.reviews__disclaimer em { color: var(--text-dim); font-style: italic; }

@media (max-width: 600px) {
  .reviews { padding: 70px 0 80px; }
  .reviews__grid { grid-template-columns: 1fr; gap: 14px; }
  .review { padding: 18px 18px 16px; }
  .review__meta-line--sub { flex-direction: column; align-items: flex-start; gap: 4px; }
}
