/* ════════════════════════════════════════════════════════════════════════
   1. RESET & TOKENS  (1:1 aus Homepage V15)
   ════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #26957C;
  --primary-hover: #1f7a65;
  --primary-light: #80AFA8;
  --primary-glow:  rgba(38,149,124,0.12);
  --bg:            #0d0d0d;
  --bg-2:          #111111;
  --bg-3:          #161616;
  --bg-card:       #1a1a1a;
  --gradient-hero: linear-gradient(160deg, #0d0d0d 0%, #0a1a15 55%, #0d0d0d 100%);
  --border:        rgba(255,255,255,0.07);
  --border-hover:  rgba(38,149,124,0.45);
  --text:          #ffffff;
  --text-muted:    rgba(255,255,255,0.5);
  --text-subtle:   rgba(255,255,255,0.25);
  --font:          'Ubuntu', sans-serif;
  --radius:        6px;
  --radius-lg:     12px;
  --transition:    all 0.25s ease;
  --max-w:         1280px;
  --max-w-prose:   720px;  /* schmaler für Lesetext */
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ════════════════════════════════════════════════════════════════════════
   2. BUTTONS  (1:1 aus Homepage)
   ════════════════════════════════════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.875rem 1.75rem; font-family: var(--font); font-size: 0.9rem; font-weight: 500; border-radius: var(--radius); cursor: pointer; transition: var(--transition); border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(38,149,124,0.25); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-glow); }

/* ════════════════════════════════════════════════════════════════════════
   3. HEADER  (1:1 aus Homepage)
   ════════════════════════════════════════════════════════════════════════ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(13,13,13,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.logo { display: flex; align-items: center; }
.logo-symbol { height: 38px; width: auto; flex-shrink: 0; display: block; }
.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav-wordmark-link { display: flex; align-items: center; color: rgba(255,255,255,0.75); transition: var(--transition); }
.nav-wordmark-link:hover { color: var(--primary); }
.nav-wordmark { height: 10px; width: auto; flex-shrink: 0; display: block; }
.essentials-wordmark { height: 11px; width: auto; flex-shrink: 0; display: block; }
.nav a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.nav a:hover { color: var(--primary); }
/* ── PRODUKTE-DROPDOWN ── */
.nav-item.has-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dd-trigger { display: inline-flex; align-items: center; gap: 5px; }
.nav-caret { transition: transform 0.25s ease; opacity: 0.65; flex-shrink: 0; }
.nav-item.has-dropdown:hover .nav-caret { transform: rotate(180deg); opacity: 1; }
.nav-dd { position: absolute; top: 100%; left: 50%; min-width: 250px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 0.55rem; box-shadow: 0 20px 50px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(-50%) translateY(2px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; z-index: 120; }
.nav-dd::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-item.has-dropdown:hover .nav-dd { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(9px); }
.nav-dd-label { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-subtle); padding: 0.35rem 0.7rem 0.55rem; }
.nav-dd-item { display: flex; flex-direction: column; gap: 2px; padding: 0.55rem 0.7rem; border-radius: var(--radius); text-transform: none; letter-spacing: normal; transition: var(--transition); }
.nav-dd-item:hover { background: var(--primary-glow); }
.nav-dd-title { font-size: 0.86rem; font-weight: 500; color: #fff; text-transform: none; letter-spacing: normal; transition: var(--transition); }
.nav-dd-item:hover .nav-dd-title { color: var(--primary); }
.nav-dd-sub { font-size: 0.72rem; color: var(--text-muted); text-transform: none; letter-spacing: normal; }
.nav-dd-item:hover .nav-dd-sub { color: var(--text-muted); }
.nav a.active { color: var(--primary); }
.header-right { display: flex; align-items: center; gap: 1rem; }
.lang-switcher { position: relative; display: flex; align-items: center; }
.lang-current { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px 2px; color: rgba(255,255,255,0.6); font-family: inherit; }
.lang-current .nav-caret { transition: transform 0.25s ease; opacity: 0.6; }
.lang-switcher:hover .nav-caret, .lang-switcher.open .nav-caret { transform: rotate(180deg); opacity: 1; }
.flag { display: inline-flex; width: 20px; height: 14px; border-radius: 3px; overflow: hidden; line-height: 0; flex-shrink: 0; }
.flag svg { display: block; width: 20px; height: 14px; }
.lang-dd { position: absolute; top: 100%; right: 0; display: flex; flex-direction: column; gap: 2px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 6px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(2px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; z-index: 130; }
.lang-switcher:hover .lang-dd, .lang-switcher:focus-within .lang-dd, .lang-switcher.open .lang-dd { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(8px); }
.lang-opt { display: flex; align-items: center; justify-content: center; padding: 6px 14px; border-radius: var(--radius); text-decoration: none; opacity: 0.55; transition: var(--transition); }
.lang-opt .flag { width: 26px; height: 18px; }
.lang-opt:hover { opacity: 1; background: rgba(255,255,255,0.06); }
.lang-opt.active { opacity: 1; }
.essentials-btn { display: flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 20px; border: 1px solid rgba(0,172,144,0.35); background: rgba(0,172,144,0.08); text-decoration: none; transition: all 0.2s ease; }
.essentials-btn:hover { border-color: rgba(0,172,144,0.7); background: rgba(0,172,144,0.15); }
.essentials-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: #00ac90; white-space: nowrap; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* SVG fill-rule fix: das CELLONIC Wordmark hat zwei verschachtelte Kreise für das O.
   Ohne evenodd wird das O je nach Browser (Firefox/Safari) als Klecks oder gar nicht gerendert. */
.nav-wordmark path,
.essentials-wordmark path,
.footer-brand svg path {
  fill-rule: evenodd;
}

/* ════════════════════════════════════════════════════════════════════════
   4. PAGE-HERO – kleiner Hero für Unterseiten  (NEU)
   ════════════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(72px + 2.5rem) 0 4rem;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38,149,124,0.4), transparent);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }

/* ════════════════════════════════════════════════════════════════════════
   5. PAGE-CONTENT – Lesetext-Container  (NEU)
   ════════════════════════════════════════════════════════════════════════ */
.page-content { padding: 4rem 0 6rem; background: var(--bg); }
.page-content .container-prose {
  max-width: var(--max-w-prose);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Prose-Typo: für längere Inhalte (Über uns, Impressum, AGB, ...) */
.prose h2 {
  font-size: 1.6rem; font-weight: 700; letter-spacing: -0.01em;
  margin: 3rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose h3 {
  font-size: 1.15rem; font-weight: 500;
  margin: 2rem 0 0.75rem;
  color: var(--primary-light);
}
.prose p { color: rgba(255,255,255,0.72); margin-bottom: 1rem; line-height: 1.75; }
.prose p.muted { color: var(--text-muted); font-size: 0.92rem; }
.prose a {
  color: var(--primary-light); border-bottom: 1px solid rgba(128,175,168,0.35);
}
.prose a:hover { color: var(--primary); border-bottom-color: var(--primary); }
.prose ul, .prose ol {
  margin: 1rem 0 1.5rem 1.25rem;
  color: rgba(255,255,255,0.72);
}
.prose ul li, .prose ol li { margin-bottom: 0.5rem; line-height: 1.65; }
.prose ul { list-style: none; }
.prose ul li { position: relative; padding-left: 1.25rem; }
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: 0.65em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary);
}
.prose ol { list-style: decimal; }
.prose ol li::marker { color: var(--primary); font-weight: 500; }
.prose strong { color: #fff; font-weight: 500; }
.prose hr {
  border: none; height: 1px;
  background: var(--border);
  margin: 2.5rem 0;
}
.prose blockquote {
  border-left: 2px solid var(--primary);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.5rem 0;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

/* Info-Boxen für Hinweise, Tabellen-Look */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}
.info-box h4 {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}
.info-box p { font-size: 0.92rem; color: rgba(255,255,255,0.7); margin: 0; }

/* Kontakt-Daten-Block (Impressum, Kontakt) */
.contact-data {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 2rem 0;
}
.contact-data-item {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-data-item .label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-subtle);
  margin-bottom: 0.5rem; display: block;
}
.contact-data-item .value {
  font-size: 0.95rem; color: #fff; line-height: 1.5;
}
.contact-data-item .value a { color: var(--primary-light); }
.contact-data-item .value a:hover { color: var(--primary); }

/* ════════════════════════════════════════════════════════════════════════
   6. SECTION – generische dunkle/helle Abschnitte  (NEU)
   ════════════════════════════════════════════════════════════════════════ */
.section { padding: 5rem 0; border-top: 1px solid var(--border); }
.section.alt { background: var(--bg-2); }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head .eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--primary);
  display: block; margin-bottom: 0.75rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-head h2 em { font-style: normal; color: var(--primary); }
.section-head p { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ════════════════════════════════════════════════════════════════════════
   7. FORM – Kontaktformular  (NEU, aber im Newsletter-Stil der Homepage)
   ════════════════════════════════════════════════════════════════════════ */
.form { max-width: 580px; margin: 0 auto; }
.form-row { margin-bottom: 1.25rem; }
.form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label {
  display: block;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}
.form input, .form textarea, .form select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: var(--transition);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--border-hover);
  background: var(--bg-3);
}
.form textarea { resize: vertical; min-height: 140px; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5;
}
.form-checkbox input { width: auto; margin-top: 0.2rem; accent-color: var(--primary); }
.form-checkbox a { color: var(--primary-light); }
.form-actions { margin-top: 1.5rem; }

/* ════════════════════════════════════════════════════════════════════════
   8. FOOTER  (1:1 aus Homepage)
   ════════════════════════════════════════════════════════════════════════ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 3rem 0 1.75rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1.7fr 1fr; gap: 2.5rem; margin-bottom: 2.25rem; }
.footer-brand svg { height: 28px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); max-width: 220px; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.9rem; margin-top: 0.25rem; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); transition: color 0.18s ease; cursor: pointer; }
.social-icon:hover { color: var(--primary); }
  .social-icon svg { width: auto; height: 19px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.9rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul a:hover { color: var(--primary); }
.footer-col--wide ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 2rem; }
.footer-brand-sub { margin-top: 1.5rem; color: rgba(255,255,255,0.4); font-size: 0.78rem; line-height: 1.5; }
  .footer-brand-sub span { display: block; margin-bottom: 0.5rem; }
.footer-brand-sub img { display: block; height: 16px; width: auto; opacity: 0.8; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-links a:hover { color: var(--primary); }

/* ════════════════════════════════════════════════════════════════════════
   9. RESPONSIVE
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .essentials-btn { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container, .header-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .page-content .container-prose { padding-left: 1.25rem; padding-right: 1.25rem; }
  .page-hero { padding: calc(72px + 2.5rem) 0 3rem; }
  .section { padding: 3.5rem 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row.split { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════════
   10. PRODUKT-SEITE (Mähroboter)
   ════════════════════════════════════════════════════════════════════════ */

/* ── Hero mit Headline links + Produkt-Standbild rechts ── */
.product-hero { position: relative; padding: calc(72px + 2.5rem) 0 4rem; border-bottom: 1px solid var(--border); overflow: hidden; }
.product-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2rem; align-items: center; }
.product-hero-image { position: relative; }
.product-hero-image img,
.product-hero-image video { display: block; width: 100%; height: auto; max-height: 280px; object-fit: contain; border-radius: 8px; }

/* ── Trust-Strip unter Hero ── */
.product-trust { border-bottom: 1px solid var(--border); background: var(--bg-2); }
.product-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.product-trust-item { padding: 1.5rem; text-align: center; border-right: 1px solid var(--border); }
.product-trust-item:last-child { border-right: none; }
.product-trust-item .label { font-size: 0.95rem; font-weight: 500; color: #fff; margin-bottom: 0.2rem; }
.product-trust-item .sub { font-size: 0.78rem; color: var(--text-muted); }

/* ── Filter-Bar ── */
.filter-bar { padding: 2rem 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.75rem; }
.filter-bar .label { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-right: 0.5rem; }
.filter-chip { display: inline-flex; align-items: center; padding: 0.5rem 1.1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px; font-size: 0.85rem; color: rgba(255,255,255,0.7); cursor: pointer; transition: all 0.18s ease; }
.filter-chip:hover { border-color: var(--border-hover, rgba(38,149,124,0.45)); color: #fff; }
.filter-chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.filter-chip .count { margin-left: 0.5rem; font-size: 0.72rem; opacity: 0.7; }

/* ── Produkt-Grid ── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; padding: 2rem 0 4rem; }
.product-card { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1.25rem; transition: all 0.2s ease; display: flex; flex-direction: column; }
.product-card:hover { border-color: rgba(38,149,124,0.5); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.product-card.placeholder { opacity: 0.78; }
.product-card.placeholder:hover { opacity: 1; }

.product-card .brand-tag { display: inline-block; align-self: flex-start; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-light); padding: 3px 8px; border: 1px solid rgba(128,175,168,0.3); border-radius: 4px; margin-bottom: 0.85rem; }
.product-card .img-wrap { position: relative; aspect-ratio: 1 / 1; margin-bottom: 1rem; background: #0a0a0a; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 0.5rem; }
.product-card .img-wrap .placeholder-icon { color: rgba(255,255,255,0.15); font-size: 3rem; }
.product-card .img-wrap .sale-badge { position: absolute; top: 8px; right: 8px; background: var(--primary); color: #fff; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em; padding: 3px 7px; border-radius: 4px; }
.product-card h3 { font-size: 0.92rem; font-weight: 500; color: #fff; line-height: 1.35; margin-bottom: 0.5rem; min-height: 2.4em; }
.product-card .models { font-size: 0.78rem; color: var(--text-muted); line-height: 1.45; margin-bottom: 1rem; flex-grow: 1; }
.product-card .price-row { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.5rem; min-height: 1.5em; }
.product-card .price { font-size: 1.15rem; font-weight: 600; color: var(--primary-light); }
.product-card .price-old { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }
.product-card .price-placeholder { font-size: 0.82rem; color: rgba(255,255,255,0.3); font-style: italic; }
.product-card .sku-line { font-size: 0.72rem; color: rgba(255,255,255,0.3); font-family: 'Courier New', monospace; margin-bottom: 0.85rem; }
.product-card .cta { display: inline-block; padding: 0.55rem 1rem; background: transparent; color: var(--primary-light); border: 1px solid rgba(128,175,168,0.4); border-radius: 6px; font-size: 0.82rem; font-weight: 500; text-align: center; text-decoration: none; transition: all 0.18s ease; }
.product-card .cta:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.product-card.placeholder .cta { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.15); }
.product-card.placeholder .cta:hover { background: transparent; color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.25); }

/* ── Brand-Section-Header ── */
.brand-section { padding: 2rem 0 0; }
.brand-section-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.brand-section-head h2 { font-size: 1.4rem; font-weight: 500; }
.brand-section-head h2 em { font-style: normal; color: var(--primary); font-weight: 400; margin-left: 0.5rem; font-size: 0.85em; }
.brand-section-head .count { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.brand-section + .brand-section { padding-top: 3rem; }

/* ── Bottom-CTA ── */
.bottom-cta { padding: 4rem 0 5rem; text-align: center; border-top: 1px solid var(--border); margin-top: 2rem; }
.bottom-cta .eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem; display: block; }
.bottom-cta h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; margin-bottom: 1rem; }
.bottom-cta h2 em { font-style: normal; color: var(--primary); }
.bottom-cta p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 1.5rem; line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .product-trust-item:nth-child(2) { border-right: none; }
}
@media (max-width: 720px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .product-hero { padding: calc(72px + 2.5rem) 0 1.5rem; }
  .product-hero-grid { grid-template-columns: 1fr; gap: 1rem; }
  .product-hero-image { order: -1; }
  .product-hero-image img,
  .product-hero-image video { max-height: 180px; }
  .product-card { padding: 1rem; }
  .product-card h3 { font-size: 0.85rem; }
  .product-card .models { font-size: 0.72rem; }
  .brand-section-head { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
}
@media (max-width: 480px) {
  .product-trust-grid { grid-template-columns: 1fr 1fr; }
  .product-trust-item { padding: 1rem 0.5rem; }
  .product-trust-item .label { font-size: 0.85rem; }
  .filter-bar { gap: 0.4rem; }
  .filter-chip { padding: 0.4rem 0.85rem; font-size: 0.78rem; }
}

/* ── PRODUKT-ÜBERSICHT (Kategorie-Kacheln) ── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.cat-card { display: flex; flex-direction: column; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem 1.5rem 1.6rem; position: relative; text-decoration: none; min-height: 0; transition: all 0.2s ease; }
.cat-card:hover { border-color: rgba(38,149,124,0.5); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.3); }
.cat-media { width: 100%; height: 190px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; flex-shrink: 0; }
.cat-img { max-height: 100%; max-width: 82%; width: auto; height: auto; object-fit: contain; display: block; filter: drop-shadow(0 14px 32px rgba(0,0,0,0.4)); transition: transform 0.3s ease; }
.cat-card:hover .cat-img { transform: translateY(-5px) scale(1.04); }
.cat-img--logo { max-height: 86%; max-width: 62%; filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35)); }
.shop-search { max-width: 660px; margin: 0 auto 2.6rem; }
.shop-search-row { display: flex; align-items: center; gap: 0.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 0.4rem 0.4rem 0.4rem 0.95rem; transition: border-color 0.18s ease; }
.shop-search-row:focus-within { border-color: var(--primary); }
.shop-search-ico { width: 20px; height: 20px; color: var(--text-muted); flex: 0 0 auto; }
.shop-search input { flex: 1 1 auto; background: transparent; border: none; outline: none; color: var(--text); font-size: 1rem; min-width: 0; padding: 0.55rem 0; }
.shop-search input::placeholder { color: var(--text-muted); }
.shop-search .btn { flex: 0 0 auto; white-space: nowrap; }
.shop-search-hint { display: block; text-align: center; color: var(--text-muted); font-size: 0.82rem; margin-top: 0.7rem; }
@media (max-width: 520px) { .shop-search-row { flex-wrap: wrap; } .shop-search input { order: -1; flex-basis: 100%; } .shop-search .btn { width: 100%; } }
.cat-media .cat-ico-lg { width: 104px; height: 104px; color: var(--primary-light); transition: transform 0.3s ease, color 0.2s ease; }
.cat-card:hover .cat-ico-lg { transform: translateY(-5px) scale(1.04); color: #fff; }
.cat-card h3 { font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 0.45rem; line-height: 1.3; }
/* DeepL lower-cases translated category nouns (e.g. nl "spelconsole"); force the
   first letter upper-case. No-op where the label is already capitalised. */
.cat-card h3::first-letter { text-transform: uppercase; }
.cat-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; margin: 0; flex-grow: 1; }
.cat-card .cat-go { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.1rem; font-size: 0.82rem; font-weight: 500; color: var(--primary-light); transition: all 0.2s ease; }
.cat-card:hover .cat-go { gap: 10px; color: var(--primary); }
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } .cat-media { height: 165px; } }
@media (max-width: 600px) { .cat-grid { grid-template-columns: 1fr; } .cat-card { min-height: 0; } .cat-media { height: 180px; } }
  .nav-dd.nav-dd--mega { width: min(660px, 94vw); padding: 0.7rem; left: 50%; transform: translateX(-50%) translateY(2px); }
  .nav-item.has-dropdown:hover .nav-dd.nav-dd--mega { transform: translateX(-50%) translateY(9px); }
  .nav-dd--mega .nav-dd-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px 6px; }
  .nav-dd--mega .nav-dd-item { flex-direction: row; align-items: flex-start; gap: 10px; }
  .nav-dd--mega .nav-dd-ico { flex: 0 0 auto; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(38,149,124,0.1); color: #fff; transition: background 0.18s ease; }
  .nav-dd--mega .nav-dd-ico svg { width: 16px; height: 16px; }
  .nav-dd--mega .nav-dd-ico .wg-ico { width: 19px; height: 19px; }
  .nav-dd--mega .nav-dd-item:hover .nav-dd-ico { background: rgba(38,149,124,0.22); }
  .nav-dd--mega .nav-dd-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .nav-dd--mega .nav-dd-item.full { grid-column: 1 / -1; border-top: 1px solid var(--border); margin-top: 5px; padding-top: 0.7rem; }
  @media (max-width: 640px) { .nav-dd.nav-dd--mega { width: min(300px, 92vw); } .nav-dd--mega .nav-dd-grid { grid-template-columns: 1fr; } }
  .info-btn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); color: var(--text-muted); transition: all 0.18s ease; }
  .info-btn:hover { color: var(--primary-light); border-color: rgba(38,149,124,0.5); background: rgba(38,149,124,0.08); }
  .info-btn svg { width: 17px; height: 17px; }
  /* ── Mobile-Navigation (Hamburger links + funktionierender Toggle) ── */
  @media (max-width: 768px) {
    /* 3-Zonen-Header: Hamburger links · Logo mittig · Warenkorb rechts */
    .header-inner { position: relative; }
    .header-inner .hamburger { order: -1; margin: 0; padding: 4px; }
    .header-inner .logo { display: none; }
    .header-inner .brand-c { position: absolute; left: 50%; transform: translateX(-50%); margin: 0; }
    .header-inner .header-right { margin-left: auto; gap: 0.85rem; }
    .header-inner .header-right .info-btn { display: none; }
    .header-inner .header-right .lang-switcher { font-size: 0.72rem; }
    .header-inner .header-right .cart-btn {
      padding: 6px !important; background: transparent !important; border: none !important;
      box-shadow: none !important; color: #fff !important; position: relative; gap: 0 !important;
      min-width: 0; font-size: 0 !important;
    }
    .header-inner .header-right .cart-btn > span:not(.cart-count) { display: none !important; }
    .header-inner .header-right .cart-btn svg { width: 24px; height: 24px; }
    .header-inner .header-right .cart-btn .cart-count {
      position: absolute; top: -4px; right: -6px; background: var(--primary) !important; color: #fff !important;
      min-width: 16px; height: 16px; padding: 0 3px !important; font-size: 0.62rem !important;
      line-height: 16px !important; border-radius: 999px; box-shadow: 0 0 0 2px var(--bg, #0d0d0d);
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .header-inner.menu-open .nav {
      display: flex; flex-direction: column; align-items: stretch; gap: 0;
      position: fixed; top: 72px; left: 0; right: 0;
      height: calc(100vh - 72px); overflow-y: auto; -webkit-overflow-scrolling: touch;
      background: #0d0d0d; border-bottom: 1px solid var(--border);
      padding: 0.5rem 1.5rem 1.75rem; z-index: 130;
    }
    .header-inner.menu-open .nav .nav-item.has-dropdown { display: block; width: 100%; position: static; }
    .header-inner.menu-open .nav .nav-dd-trigger,
    .header-inner.menu-open .nav > a {
      width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--border); justify-content: flex-start;
    }
    .header-inner.menu-open .nav .nav-caret { display: none; }
    /* Dropdowns auf Mobil immer ausgeklappt (Hover gibt es auf Touch nicht) */
    .header-inner.menu-open .nav .nav-dd {
      position: static; opacity: 1; visibility: visible; pointer-events: auto;
      transform: none !important; box-shadow: none; border: none; background: transparent;
      width: 100% !important; min-width: 0; padding: 0.25rem 0 0.5rem 0.25rem; display: block;
    }
    .header-inner.menu-open .nav .nav-dd--mega { width: 100% !important; padding-left: 0.25rem; }
    .header-inner.menu-open .nav .nav-dd--mega .nav-dd-grid { grid-template-columns: 1fr !important; }
    /* Sub-Navi vereinfacht: keine doppelten Labels, keine Untertitel, kompakt */
    .header-inner.menu-open .nav .nav-dd-label { display: none; }
    .header-inner.menu-open .nav .nav-dd-sub { display: none; }
    .header-inner.menu-open .nav .nav-dd-item { flex-direction: row; align-items: center; gap: 12px; padding: 0.7rem 0.25rem; }
    .header-inner.menu-open .nav .nav-dd-title { font-size: 0.95rem; }
    .header-inner.menu-open .nav .nav-dd-ico { width: 26px; height: 26px; }
    .header-inner.menu-open .nav .nav-dd-ico svg { width: 15px; height: 15px; }
  }
  /* Header: Wortmarke links, C-Logo rechts */
  .logo-wordmark { height: 26px; width: auto; display: block; }
  .brand-c { display: inline-flex; align-items: center; justify-content: center; }
  .brand-c-symbol { height: 36px; width: 36px; color: #fff; }
  .header-inner .header-right { gap: 1.1rem; }

/* Finder fix: the homepage .shop-search/.shop-search-row styles (design.css) bleed
   onto this page; .shop-search-row's backdrop-filter traps the autosuggest below the
   catalog cards. Lift the finder into its own stacking context above the grid, and
   drop the bled-in border. */
.shop-search { position: relative; z-index: 50; border: 0; }
