/* Self-hosted Ubuntu @font-face lives INLINE in header.php (root-relative,
   same-origin per market). It must NOT be here: design.css is served from the
   fixed CELLONIC_URI (.eu), so a relative @font-face would resolve cross-origin
   and fail CORS on non-.eu market domains. See header.php. */
*, *::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;
}
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; }

/* ── BUTTONS ── */
.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); }

/* ── HEADER ── */
.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; }
.footer-logo svg, .footer-logo-symbol { color: #fff; }
.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: 700; 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); }
/* Category labels come from German nouns (always capitalised) machine-translated
   via DeepL; in nl/fr/en/it/es… common nouns return lower-cased (e.g. "spelconsole").
   Force the first letter upper-case at render — a no-op where it is already capital. */
.nav-dd-title::first-letter,
.ob-find-chip span::first-letter,
.footer-col ul a::first-letter { text-transform: uppercase; }
.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; }
/* Invisible hover bridge spanning the gap between the trigger and the dropdown,
   so moving the mouse down into the menu never drops :hover (modal vanishing). */
.lang-dd::before { content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.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-logo { height: 14px; width: auto; }
.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); }

/* ── HERO ── */
.hero { position: relative; background: #0d0d0d; padding-top: 72px; overflow: hidden; min-height: 600px; }
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  display: block;
}

.hero-picture-wrap {
  position: static;
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.5) 40%, rgba(13,13,13,0.1) 70%, rgba(13,13,13,0.0) 100%); pointer-events: none; z-index: 2; }
.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); z-index: 2; }
.hero-inner { display: flex; flex-direction: column; align-items: flex-start; padding: 3rem 0 3rem; position: relative; z-index: 3; max-width: 580px; width: 100%; }
.hero-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 1.25rem; }
.eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #ffffff; display: block; margin-bottom: 0.75rem; }
.section-tag { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #ffffff; display: block; margin-bottom: 0.75rem; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-sub { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.65; max-width: 500px; margin-bottom: 1.75rem; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-badge { display: none; }
.hero-badge-float { display: inline-flex; align-items: center; gap: 10px; background: rgba(13,13,13,0.85); backdrop-filter: blur(8px); border: 1px solid var(--border-hover); border-radius: var(--radius); padding: 0.75rem 1.25rem; margin-top: 2rem; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.6; transform:scale(1.3); } }
.badge-text { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.badge-num { font-size: 0.75rem; font-weight: 700; color: var(--primary-light); }

/* ── HOME HERO VIDEO BANNER ── */
.home-hero-video { position: relative; padding: calc(72px + 4rem) 0 4rem; background: var(--bg); border-bottom: 1px solid var(--border); overflow: hidden; }
.home-hero-video .video-wrap { position: relative; max-width: 880px; margin: 0 auto; overflow: hidden; }
.home-hero-video video { display: block; width: 100%; height: 260px; object-fit: cover; }
.home-hero-video .video-wrap::before,
.home-hero-video .video-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 28%;
  pointer-events: none;
  z-index: 2;
}
.home-hero-video .video-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg) 0%, rgba(13,13,13,0.6) 50%, rgba(13,13,13,0) 100%); }
.home-hero-video .video-wrap::after  { right: 0; background: linear-gradient(270deg, var(--bg) 0%, rgba(13,13,13,0.6) 50%, rgba(13,13,13,0) 100%); }
@media (max-width: 720px) {
  .home-hero-video { padding: calc(72px + 2rem) 0 2rem; }
  .home-hero-video video { height: 160px; }
  .home-hero-video .video-wrap::before,
  .home-hero-video .video-wrap::after { width: 18%; }
}

/* ── USP / ZAHLEN BAR ── */
.trust-bar { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem 1.5rem; text-align: center; border-right: 1px solid var(--border); transition: var(--transition); gap: 0.5rem; }
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: rgba(38,149,124,0.05); }
.usp-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(38,149,124,0.1); border: 1px solid rgba(38,149,124,0.18); display: flex; align-items: center; justify-content: center; margin-bottom: 0.25rem; }
.usp-icon svg { color: var(--primary-light); }
.usp-num { font-size: 1.6rem; font-weight: 700; color: var(--primary-light); line-height: 1; letter-spacing: -0.02em; }
.usp-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500; }

/* ── BRAND STORY ── */
.brand-story { padding: 6rem 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.brand-story-head { max-width: 680px; margin-bottom: 3.5rem; }
.brand-story-head h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1rem; }
.brand-story-lead { color: rgba(255,255,255,0.5); line-height: 1.8; font-size: 0.975rem; }
.brand-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 3.5rem; }
.brand-value-card { background: var(--bg); padding: 1.75rem 1.5rem; transition: var(--transition); }
.brand-value-card:hover { background: rgba(38,149,124,0.05); }
.bvc-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(38,149,124,0.08); border: 1px solid rgba(38,149,124,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.bvc-icon svg { color: var(--primary-light); }
.bvc-title { font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 0.4rem; }
.bvc-desc { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.brand-facts { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.brand-facts-intro { padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); }
.brand-facts-intro h3 { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 0.3rem; }
.brand-facts-intro p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.brand-facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact-item { padding: 1.75rem 2rem; border-right: 1px solid var(--border); transition: var(--transition); }
.fact-item:last-child { border-right: none; }
.fact-item:hover { background: rgba(38,149,124,0.04); }
.fact-num { font-size: 2rem; font-weight: 700; color: var(--primary-light); letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.35rem; }
.fact-label { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.75); margin-bottom: 0.25rem; }
.fact-sub { font-size: 0.72rem; color: rgba(255,255,255,0.3); line-height: 1.4; }


/* ── PRODUCTS ── */
.products { padding: 6rem 0; background: var(--bg-2); }
.section-head { margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.section-head p { color: rgba(255,255,255,0.45); font-size: 0.975rem; max-width: 480px; }
.product-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.product-cat { background: var(--bg); cursor: pointer; transition: var(--transition); position: relative; padding: 2rem 1.5rem 1.75rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.product-cat:hover { background: rgba(38,149,124,0.06); }
.product-cat:hover .cat-icon-wrap { background: rgba(38,149,124,0.18); border-color: rgba(38,149,124,0.35); }
.product-cat:hover .cat-arrow { opacity: 1; transform: translateX(0); }
.cat-icon-wrap { width: 52px; height: 52px; background: rgba(38,149,124,0.08); border: 1px solid rgba(38,149,124,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; flex-shrink: 0; transition: var(--transition); }
.cat-icon-wrap svg { color: var(--primary-light); }
.cat-name { font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 4px; line-height: 1.3; }
.cat-count { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
.cat-arrow { position: absolute; bottom: 1.5rem; right: 1.5rem; opacity: 0; transform: translateX(-4px); transition: var(--transition); color: var(--primary); }
.finder-bar { background: rgba(38,149,124,0.06); border: 1px dashed rgba(38,149,124,0.25); border-radius: var(--radius-lg); padding: 1.75rem 2rem; display: flex; align-items: center; gap: 1.5rem; }
.finder-bar-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.finder-bar-text p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.finder-input-wrap { flex: 1; display: flex; gap: 0.75rem; }
.finder-input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.7rem 1rem; font-family: var(--font); font-size: 0.875rem; color: var(--text); outline: none; transition: var(--transition); }
.finder-input:focus { border-color: var(--primary); background: rgba(38,149,124,0.05); }
.finder-input::placeholder { color: rgba(255,255,255,0.25); }

/* ── VIDEO ── */
.videos { padding: 6rem 0; }

.video-filters { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.vf-btn { font-family: var(--font); font-size: 0.82rem; font-weight: 500; padding: 0.5rem 1.25rem; border-radius: 20px; border: 1px solid var(--border); background: transparent; color: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition); }
.vf-btn:hover { border-color: var(--primary); color: var(--primary); }
.vf-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.video-featured { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: center; margin-bottom: 3rem; }
.video-embed-wrap { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.video-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-featured-info h3 { font-size: 1.5rem; font-weight: 700; line-height: 1.25; margin-bottom: 0.75rem; }
.video-featured-info p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.vcard { background: linear-gradient(145deg, #1a1a1a, #141414); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.vcard:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.vcard.hidden { display: none; }
.vcard-thumb { position: relative; aspect-ratio: 16/9; background: #111; }
.vcard-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vcard-body { padding: 0.875rem 1rem; display: flex; align-items: center; gap: 0.75rem; }
.vcard-tag { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: 20px; background: rgba(38,149,124,0.1); border: 1px solid rgba(38,149,124,0.2); color: var(--primary); white-space: nowrap; flex-shrink: 0; }
.vcard-tag--teal { background: rgba(128,175,168,0.1); border-color: rgba(128,175,168,0.2); color: var(--primary-light); }
.vcard-tag--green { background: rgba(38,149,124,0.15); border-color: rgba(38,149,124,0.3); color: #26957C; }
.vcard-title { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.75); line-height: 1.35; }

.video-thumb-link { display: block; position: relative; width: 100%; height: 100%; overflow: hidden; }
.video-thumb-link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.video-thumb-link:hover img { transform: scale(1.04); }
.video-play-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: rgba(0,0,0,0.35); opacity: 0; transition: opacity 0.25s ease; }
.video-thumb-link:hover .video-play-overlay { opacity: 1; }
.play-btn-overlay { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; }
.video-yt-label { font-size: 0.78rem; font-weight: 500; color: #fff; letter-spacing: 0.04em; }

.vcard--placeholder { opacity: 0.6; }
.vcard-thumb--placeholder { aspect-ratio: 16/9; background: linear-gradient(145deg, #141414, #0f1a17); border-radius: 0; display: flex; align-items: center; justify-content: center; border-bottom: 1px dashed rgba(38,149,124,0.25); }
.vcard-placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.3); font-size: 0.75rem; letter-spacing: 0.04em; }

.ratgeber-video-feature { margin-bottom: 2.5rem; }
.ratgeber-video-link { display: flex; gap: 2rem; align-items: center; background: linear-gradient(145deg, #1a1a1a, #141414); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); text-decoration: none; }
.ratgeber-video-link:hover { border-color: var(--border-hover); }
.ratgeber-video-thumb { position: relative; flex: 0 0 360px; aspect-ratio: 16/9; overflow: hidden; }
.ratgeber-video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.ratgeber-video-link:hover .ratgeber-video-thumb img { transform: scale(1.03); }
.ratgeber-video-info { padding: 1.5rem; flex: 1; }
.ratgeber-video-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 0.5rem 0; line-height: 1.35; }
.ratgeber-video-meta { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }

@media (max-width: 768px) {
  .ratgeber-video-link { flex-direction: column; }
  .ratgeber-video-thumb { flex: none; width: 100%; }
}

/* ── DOWNLOADS ── */
.downloads { padding: 6rem 0; background: var(--bg-2); }
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.dl-card { background: linear-gradient(145deg, #1a1a1a, #141414); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; cursor: pointer; transition: var(--transition); }
.dl-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.dl-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(38,149,124,0.1); display: flex; align-items: center; justify-content: center; }
.dl-icon svg { color: var(--primary-light); }
.dl-name { font-size: 1rem; font-weight: 700; color: var(--text); }
.dl-desc { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.6; flex: 1; }
.dl-meta { font-size: 0.72rem; color: var(--primary-light); font-weight: 500; letter-spacing: 0.04em; }


/* ── TRUST FINAL ── */
.trust-final { padding: 5rem 0; background: linear-gradient(160deg, #0d0d0d, #0a1a15, #0d0d0d); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.trust-item-full { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; padding: 1.5rem 1rem; border-right: 1px solid var(--border); }
.trust-item-full:last-child { border-right: none; }
.trust-num { font-size: 1.75rem; font-weight: 700; color: var(--primary-light); line-height: 1; }
.trust-label { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.4; }

/* ── FOOTER ── */
.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: 700; 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 { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }

/* ── FOOTER ── */
.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: 700; 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-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { gap: 2.5rem; }
  .product-cats { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-item-full { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item-full:nth-child(3) { border-bottom: none; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-trust { flex-wrap: wrap; gap: 1rem; }
  .brand-values-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-item:nth-child(2) { border-right: none; }
  .fact-item:nth-child(3) { border-top: 1px solid var(--border); }
  .fact-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .video-featured { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .dl-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item-full { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item-full:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; } .footer-col--wide ul { grid-template-columns: 1fr; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .finder-bar { flex-direction: column; align-items: flex-start; }
  .finder-input-wrap { width: 100%; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item { border-bottom: 1px solid var(--border); }
  .usp-item:nth-child(2) { border-right: none; }
  .usp-item:nth-child(3) { border-bottom: none; border-right: 1px solid var(--border); }
  .usp-item:nth-child(4) { border-bottom: none; border-right: none; }
  .video-thumbs { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .product-cats { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item:nth-child(3) { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .usp-item:nth-child(4) { border-bottom: 1px solid var(--border); }
  .usp-item:nth-child(5) { grid-column: span 2; border-right: none; justify-content: center; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ══ LIFESTYLE SEKTION ══ */
.lifestyle-section {
  background: #0d0d0d;
  padding: 80px 0 90px;
}

.lifestyle-header {
  text-align: center;
  margin-bottom: 48px;
}

.lifestyle-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 8px 0 14px;
  letter-spacing: -0.5px;
}

.lifestyle-sub {
  color: #8a8a8a;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
  align-items: stretch;
}

.lifestyle-card {
  border-radius: 16px;
  overflow: hidden;
  background: #161616;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.lifestyle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lifestyle-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}



.lifestyle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.lifestyle-card:hover .lifestyle-img-wrap img {
  transform: scale(1.04);
}

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.7) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
}

.lifestyle-text {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lifestyle-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #26957c;
  margin-bottom: 8px;
  display: block;
}

.lifestyle-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.lifestyle-card--large .lifestyle-text h3 {
  font-size: 1.4rem;
}

.lifestyle-text p {
  color: #8a8a8a;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.lifestyle-link {
  color: #26957c;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, gap 0.2s;
}

.lifestyle-link:hover {
  color: #80afa8;
  gap: 8px;
}

@media (max-width: 900px) {
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .lifestyle-card--large .lifestyle-img-wrap {
    aspect-ratio: 16/7;
  }
}


/* Alle Lifestyle-Karten gleich groß */


/* Produkt-Tags unter den Karten */
.lifestyle-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
}

.lifestyle-products span {
  background: rgba(38,149,124,0.12);
  border: 1px solid rgba(38,149,124,0.25);
  color: #80afa8;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* Essentials Sonderfarbe */
.essentials-tag {
  color: #26957c !important;
  font-size: 0.78rem !important;
  letter-spacing: 1px !important;
}

.essentials-link {
  color: #fff !important;
  background: #26957c;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}

.essentials-link:hover {
  background: #1e7a63 !important;
  color: #fff !important;
}

/* Gleichmäßiges Grid – alle 3 Spalten gleich */
.lifestyle-grid {
  grid-template-columns: 1fr 1fr 1fr !important;
}


/* ══ SEASONAL HIGHLIGHT ══ */
.season-highlight {
  position: relative;
  background: #0a1a0f;
  overflow: hidden;
  padding: 0;
}

.season-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

.season-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 0;
}

.season-video-col {
  position: relative;
  overflow: hidden;
}

.season-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.season-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.season-video-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(13,13,13,0.8);
  border: 1px solid rgba(38,149,124,0.4);
  color: #26957c;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

.season-badge-dot {
  width: 7px;
  height: 7px;
  background: #26957c;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.season-text-col {
  padding: 56px 56px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13,13,13,0.95) 0%, rgba(10,26,15,0.9) 100%);
}

.season-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #26957c;
  margin-bottom: 14px;
  display: block;
}

.season-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}

.season-title em {
  font-style: normal;
  color: #26957c;
}

.season-desc {
  color: #999;
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 480px;
}

.season-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.season-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 0.9rem;
}

.season-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.season-link {
  color: #26957c;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(38,149,124,0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}

.season-link:hover {
  color: #80afa8;
  border-color: #80afa8;
}

@media (max-width: 860px) {
  .season-inner {
    grid-template-columns: 1fr;
  }
  .season-video-wrap { min-height: 260px; }
  .season-text-col { padding: 36px 24px; }
}


/* ══ SEASONAL HIGHLIGHT – Video Fullscreen ══ */
.season-highlight {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

/* Modifier: Wenn Saison als Top-Hero direkt unter Header verwendet wird */
.season-highlight.season-as-hero {
  min-height: 540px;
  padding-top: 72px;
}
.season-highlight.season-as-hero .season-content-overlay {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.season-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.season-video-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.season-video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,15,10,0.92) 0%,
    rgba(5,15,10,0.75) 40%,
    rgba(5,15,10,0.3) 70%,
    rgba(5,15,10,0.1) 100%
  );
}

.season-content-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 72px 0;
}

.season-content-inner {
  max-width: 560px;
}

.season-tag-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  line-height: 1;
}

.season-badge-dot {
  width: 8px;
  height: 8px;
  background: #26957c;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
  align-self: center;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.season-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #26957c;
  display: flex;
  align-items: center;
  gap: 10px;
}
.season-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #26957c;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.season-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.season-title em {
  font-style: normal;
  color: #26957c;
}

.season-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 28px;
}

.season-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.season-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.season-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.season-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.season-link:hover {
  color: #80afa8;
  border-color: #80afa8;
}

@media (max-width: 768px) {
  .season-highlight { min-height: 480px; }
  .season-video-gradient {
    background: rgba(5,15,10,0.75);
  }
  .season-content-inner { max-width: 100%; }
}


/* SVG fill-rule Fix: das CELLONIC Wordmark hat zwei verschachtelte Kreise für das O.
   Ohne evenodd wird das O je nach Browser als Klecks oder gar nicht gerendert. */
.nav-wordmark path,
.essentials-wordmark path,
.footer-brand svg path {
  fill-rule: evenodd;
}
  .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-Feinschliff */
  @media (max-width: 768px) {
    .lifestyle-grid { grid-template-columns: 1fr !important; }
    .brand-values-grid { grid-template-columns: 1fr !important; }
    .lifestyle-card--large .lifestyle-img-wrap { aspect-ratio: 16/9 !important; }
    .season-highlight.season-as-hero { min-height: auto !important; }
    .season-highlight.season-as-hero .season-content-overlay { padding-top: 1.5rem !important; padding-bottom: 2rem !important; }
    .season-video-full { min-height: 320px; }
  }
  /* ── 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; }
  }
  /* ===== Startseite Entwurf 2: Post-Purchase-Onboarding ===== */
  /* Banner: Produkte gross & mittig. Bildbreite ~Containerbreite begrenzt (max 1500px) ->
     Produktkanten reichen seitlich ~bis zum CELLONIC-Schriftzug. Hoehe folgt automatisch (2.778:1),
     oben etwas Luft. Verlauf (oben links #2a2b2c -> unten rechts #000) + mix-blend-mode:screen blendet
     das Schwarz des Bildes weg, sodass EIN Verlauf nahtlos ueber dem ganzen Banner liegt. */
  .ob-hero-banner { position: relative; width: 100%; overflow: hidden; isolation: isolate; background: linear-gradient(to bottom, #2a2b2c 0%, #000000 100%); padding-top: 96px; }
  .ob-hero-shop { position: relative; display: block; width: min(94vw, 1500px); margin: 0 auto; }
  .ob-hero-shop img { display: block; width: 100%; height: auto; mix-blend-mode: screen; }
  /* Shoppable Hotspots auf den Produkten */
  .ob-hot { position: absolute; z-index: 3; display: block; text-decoration: none; border-radius: 14px; }
  .ob-hot-dot { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 26px; height: 26px; border-radius: 50%; background: rgba(13,13,13,0.45); border: 1.5px solid rgba(255,255,255,0.8); display: grid; place-items: center; transition: var(--transition); box-shadow: 0 2px 10px rgba(0,0,0,0.45); }
  .ob-hot-dot::before { content: "+"; color: #fff; font-size: 18px; line-height: 1; font-weight: 300; }
  .ob-hot:hover .ob-hot-dot { background: var(--primary); border-color: var(--primary); transform: translate(-50%,-50%) scale(1.15); }
  .ob-hot-label { position: absolute; left: 50%; top: 50%; transform: translate(-50%, calc(-50% - 26px)); white-space: nowrap; background: rgba(13,13,13,0.92); color: #fff; font-size: 0.78rem; font-weight: 500; padding: 0.3rem 0.65rem; border-radius: 7px; border: 1px solid var(--border-hover); opacity: 0; pointer-events: none; transition: var(--transition); }
  .ob-hot:hover .ob-hot-label { opacity: 1; transform: translate(-50%, calc(-50% - 32px)); }
  /* Kennzahlen-Leiste unter dem Banner */
  .stats-bar { background: transparent; padding: 1.25rem 0 1.5rem; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
  .stat-item { padding: 1.35rem 1rem; text-align: center; border-right: 1px solid var(--border); transition: var(--transition); }
  .stat-item:last-child { border-right: none; }
  .stat-item:hover { background: rgba(38,149,124,0.05); }
  .stat-num { font-size: 1.8rem; font-weight: 700; color: var(--primary-light); line-height: 1; letter-spacing: -0.02em; margin-bottom: 0.35rem; }
  .stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
  @media (max-width: 767px) {
    /* mobil: Hero soll den ersten Viewport besitzen — mehr Höhe, größere Produkte */
    .ob-hero-banner { min-height: 56vh; display: flex; flex-direction: column; justify-content: center; padding-top: 88px; padding-bottom: 1.5rem; }
    .ob-hero-shop { width: 132%; margin-left: -16%; }
    .ob-hot-dot { width: 22px; height: 22px; }
    /* Stats klar als zweiter Block — sauberer Abstand zum Hero, Zahlen etwas kleiner */
    .stats-bar { padding: 2.75rem 0 1.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid var(--border); padding: 1.1rem 0.75rem; }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-num { font-size: 1.5rem; }
    .stat-label { font-size: 0.66rem; }
  }
  .ob-welcome { padding: 3rem 0; }
  .ob-welcome h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.1; letter-spacing: -0.02em; margin: 0.7rem 0 1rem; max-width: 760px; }
  .ob-welcome .lead { font-size: 1.06rem; color: rgba(255,255,255,0.72); max-width: 600px; margin-bottom: 1.8rem; line-height: 1.6; }
  /* Willkommen 2-spaltig: Text + Think-Green-Grafik.
     align-items:center -> Block sitzt mittig, kein Tiefhaengen. Grafik kompakt gehalten,
     damit der vertikale Ueberstand klein bleibt (Caption nahezu auf Button-Linie). */
  .ob-welcome-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 2.5rem; align-items: center; }
  .ob-welcome-text { min-width: 0; }
  .ob-green { margin: 0; position: relative; display: flex; flex-direction: column; align-items: center; }
  .ob-green img { display: block; width: 100%; max-width: 250px; height: auto; margin: 0 auto -0.25rem; mix-blend-mode: screen; }
  .ob-green figcaption { margin-top: 0.2rem; text-align: center; }
  .ob-green-kicker { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary-light); margin-bottom: 0.4rem; }
  .ob-green figcaption strong { display: block; font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; letter-spacing: -0.01em; color: #fff; }
  .ob-hero-bg { position: absolute; inset: 0; z-index: 0; }
  .ob-hero-bg video, .ob-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .ob-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0.82) 18%, rgba(13,13,13,0.35) 42%, rgba(13,13,13,0.05) 62%, transparent 78%); }
  .ob-hero-inner { position: relative; z-index: 1; max-width: 700px; }
  .ob-hero h1 { font-size: clamp(2rem, 4.6vw, 3.05rem); line-height: 1.09; letter-spacing: -0.02em; margin: 0.85rem 0 1.1rem; }
  .ob-hero .lead { font-size: 1.08rem; color: rgba(255,255,255,0.72); max-width: 580px; margin-bottom: 2rem; line-height: 1.6; }
  .ob-hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

  .ob-section { padding: 4.5rem 0; }
  .ob-section-sm { padding: 3.25rem 0; }
  /* mobil: weniger schwarzer Leerraum zwischen den Blöcken (z. B. über dem Finder-Banner) */
  @media (max-width: 767px) {
    .ob-section { padding: 2.5rem 0; }
    .ob-section-sm { padding: 2rem 0; }
  }
  .ob-h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.6rem; }
  .ob-sub { color: var(--text-muted); max-width: 620px; line-height: 1.6; }

  /* Drei Aufgaben (Action-Karten, ragen in den Hero) */
  .ob-jobs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; position: relative; z-index: 3; }
  .ob-job { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem 1.5rem; text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: 0.55rem; transition: var(--transition); }
  .ob-job:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
  .ob-job-ico { width: 44px; height: 44px; border-radius: 11px; background: rgba(38,149,124,0.12); color: var(--primary-light); display: grid; place-items: center; margin-bottom: 0.3rem; }
  .ob-job h3 { font-size: 1.06rem; }
  .ob-job p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }
  .ob-job-go { font-size: 0.8rem; color: var(--primary-light); font-weight: 700; margin-top: 0.4rem; }

  /* Garantie */
  .ob-warranty { background: linear-gradient(180deg, rgba(38,149,124,0.07), transparent 70%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .ob-warranty-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
  .ob-warranty ul { list-style: none; margin: 1.2rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
  .ob-warranty li { display: flex; gap: 0.65rem; font-size: 0.92rem; color: rgba(255,255,255,0.78); }
  .ob-warranty li svg { color: var(--primary-light); flex-shrink: 0; margin-top: 2px; }
  .ob-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.85rem; }
  .ob-form h3 { font-size: 1.1rem; margin-bottom: 1.1rem; }
  .ob-field { margin-bottom: 0.95rem; }
  .ob-field label { display: block; font-size: 0.76rem; color: var(--text-muted); margin-bottom: 0.35rem; letter-spacing: 0.02em; }
  .ob-input { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.72rem 0.9rem; color: var(--text); font-family: var(--font); font-size: 0.9rem; outline: none; transition: var(--transition); }
  .ob-input:focus { border-color: var(--primary); background: rgba(255,255,255,0.07); }
  .ob-form .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
  .ob-form-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.7rem; line-height: 1.5; }
  .ob-form-done { display: none; text-align: center; padding: 1.5rem 0; }
  .ob-form-done svg { color: var(--primary-light); margin-bottom: 0.6rem; }

  /* Finde dein Produkt */
  .ob-find-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; margin-top: 1.6rem; }
  .ob-find-chip { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.45rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 0.9rem 0.95rem; text-decoration: none; color: var(--text); font-size: 0.92rem; transition: var(--transition); }
  .ob-find-img { width: 100%; max-width: 150px; height: 150px; object-fit: contain; display: block; }
  .ob-find-img--logo { max-width: 116px; }
  .ob-find-svg { width: 88px; height: 150px; color: var(--primary-light); }
  .ob-find-chip--all:hover .ob-find-svg { color: #fff; }
  .ob-find-chip:hover { border-color: var(--primary); color: #fff; transform: translateY(-2px); }
  .ob-find-chip svg { color: var(--primary-light); flex-shrink: 0; }
  .ob-find-all { margin-top: 1.1rem; font-size: 0.875rem; color: var(--text-muted); }
  .ob-find-all a { color: var(--primary-light); text-decoration: none; font-weight: 700; }
  .shop-search { position: relative; width: 100%; margin: 0 0 2.8rem; overflow: visible; }
  .shop-search--banner { border: 1px solid var(--border); border-radius: var(--radius-lg); }
  .shop-search-visual { display: block; border-radius: var(--radius-lg); overflow: hidden; }
  .shop-search-visual img, .shop-search-visual video { display: block; width: 100%; height: clamp(400px, 44vw, 560px); object-fit: cover; object-position: center bottom; }
  /* Abdunkler unten fuer Lesbarkeit der Suche, Produkte darueber bleiben sichtbar */
  .shop-search--banner::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 42%; background: linear-gradient(to bottom, rgba(8,11,11,0) 0%, rgba(8,11,11,0.55) 100%); border-radius: 0 0 var(--radius-lg) var(--radius-lg); pointer-events: none; z-index: 1; }
  .shop-search-form { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.8rem clamp(1rem, 4vw, 2rem) 1.9rem; display: flex; flex-direction: column; align-items: center; }
  .shop-search-body { width: 100%; max-width: 560px; }
  .shop-search-row { display: flex; align-items: center; gap: 0.5rem; background: rgba(16,18,18,0.6); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; padding: 0.35rem 0.35rem 0.35rem 1.1rem; transition: border-color 0.18s ease; box-shadow: 0 12px 40px rgba(0,0,0,0.45); }
  .shop-search-row:focus-within { border-color: var(--primary); }
  .shop-search-ico { width: 20px; height: 20px; color: rgba(255,255,255,0.6); flex: 0 0 auto; }
  .shop-search input { flex: 1 1 auto; background: transparent; border: none; outline: none; color: #fff; font-size: 1rem; min-width: 0; padding: 0.55rem 0; }
  .shop-search input::placeholder { color: rgba(255,255,255,0.55); }
  .shop-search .btn { flex: 0 0 auto; white-space: nowrap; border-radius: 999px; padding-left: 1.3rem; padding-right: 1.3rem; }
  .shop-search-hint { display: block; text-align: center; color: rgba(255,255,255,0.72); font-size: 0.82rem; margin-top: 0.7rem; text-shadow: 0 1px 8px rgba(0,0,0,0.7); }
  @media (max-width: 640px) {
    .shop-search-visual img, .shop-search-visual video { height: 220px; object-position: center 45%; }
    .shop-search::after { display: none; }
    .shop-search-form { position: static; padding: 0.9rem; background: var(--bg-card); }
    .shop-search-row { flex-wrap: wrap; gap: 0.6rem; background: var(--bg-2); backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; border-radius: var(--radius-lg); padding: 0.7rem; }
    .shop-search-ico { display: none; }                 /* loose magnifier looks odd once the row wraps */
    .shop-search input { order: -1; flex-basis: 100%; background: rgba(255,255,255,0.04); border-radius: 999px; padding: 0.7rem 1rem; }
    .shop-search .btn { width: 100%; justify-content: center; }   /* full-width button, centered label */
    .shop-search-hint { color: var(--text-muted); text-shadow: none; }
  }

  /* Lange Button-Labels (CTAs) auf schmalen Screens umbrechen statt rechts rauslaufen */
  @media (max-width: 600px) {
    .btn { white-space: normal; max-width: 100%; text-align: center; }
  }

  /* Pflege (asymmetrisch, 2 Spalten) */
  .ob-care { border-top: 1px solid var(--border); }
  .ob-care-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 3rem; margin-top: 1.8rem; }
  .ob-care-item { display: flex; gap: 1rem; }
  .ob-care-num { width: 30px; height: 30px; border-radius: 8px; background: rgba(38,149,124,0.12); color: var(--primary-light); font-weight: 700; font-size: 0.85rem; display: grid; place-items: center; flex-shrink: 0; }
  .ob-care-item h4 { font-size: 0.98rem; margin-bottom: 0.25rem; }
  .ob-care-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

  /* Hilfe */
  .ob-help { border-top: 1px solid var(--border); }
  .ob-help-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 3rem; align-items: start; }
  .ob-help-list { list-style: none; margin: 1.4rem 0 0; padding: 0; }
  .ob-help-list li { padding: 0.95rem 0; border-bottom: 1px solid var(--border); }
  .ob-help-list li:first-child { padding-top: 0; }
  .ob-help-list b { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
  .ob-help-list span { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }
  .ob-help-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
  .ob-help-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
  .ob-help-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1.2rem; }

  /* Vertrauen: Credential-Zeile statt Counter */
  .ob-trust { border-top: 1px solid var(--border); background: rgba(255,255,255,0.015); }
  .ob-trust-line { display: flex; flex-wrap: wrap; gap: 1.1rem 2.5rem; align-items: center; justify-content: center; }
  .ob-trust-item { font-size: 0.875rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.55rem; }
  .ob-trust-item b { color: var(--text); font-weight: 700; }
  .ob-trust-item svg { color: var(--primary-light); flex-shrink: 0; }
  .ob-trust-sep { width: 1px; height: 16px; background: var(--border); }

  /* Shop soft */
  .ob-shop-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 2.25rem; }
  .ob-shop-inner h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
  .ob-shop-inner p { font-size: 0.9rem; color: var(--text-muted); }

  /* "Was hast du gekauft?" – Journey-Auswahl mit Reitern */
  .ob-bought { border-top: 1px solid var(--border); }
  .ob-bought-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; margin-top: 1.6rem; }
  .ob-tab { display: flex; align-items: center; gap: 0.65rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.95rem 1.05rem; color: var(--text); font-size: 0.92rem; font-weight: 500; text-align: left; cursor: pointer; transition: var(--transition); font-family: inherit; }
  .ob-tab svg { color: var(--primary-light); flex-shrink: 0; }
  .ob-tab:hover { border-color: var(--primary); transform: translateY(-2px); }
  .ob-tab[aria-selected="true"] { border-color: var(--primary); background: rgba(38,149,124,0.12); color: #fff; }
  .ob-panel { display: none; margin-top: 1.8rem; }
  .ob-panel.is-active { display: block; animation: obfade 0.25s ease; }
  @keyframes obfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
  .ob-panel-intro { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; max-width: 640px; }
  .ob-panel-intro b { color: var(--text); font-weight: 700; }
  .ob-tip-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 3rem; }
  .ob-tip { display: flex; gap: 1rem; }
  .ob-tip-num { width: 30px; height: 30px; border-radius: 8px; background: rgba(38,149,124,0.12); color: var(--primary-light); font-weight: 700; font-size: 0.85rem; display: grid; place-items: center; flex-shrink: 0; }
  .ob-tip h4 { font-size: 0.98rem; margin-bottom: 0.25rem; }
  .ob-tip p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }
  .ob-panel-cta { margin-top: 1.6rem; font-size: 0.875rem; color: var(--text-muted); }
  .ob-panel-cta a { color: var(--primary-light); text-decoration: none; font-weight: 700; }
  /* === Konzept A: Icon-Kacheln + zweispaltiges Panel === */
  .ob-bought-tabs { grid-template-columns: repeat(5, 1fr); }
  .ob-tab { flex-direction: column; align-items: center; gap: 0.6rem; text-align: center; padding: 1.15rem 0.6rem; }
  .ob-tab span { font-size: 0.9rem; line-height: 1.2; }
  .ob-ico { width: 40px; height: 40px; display: block; color: #fff; flex-shrink: 0; }
  .ob-tab .ob-ico, .ob-find-chip .ob-ico { color: #fff; }
  .ob-tab[aria-selected="true"] .ob-ico { color: #fff; }
  .ob-panel-grid { display: grid; grid-template-columns: 1.5fr 0.9fr; gap: 1.6rem; align-items: stretch; margin-top: 1.8rem; }
  .ob-panel-main .ob-panel-intro { margin-bottom: 1.3rem; }
  .ob-panel-main .ob-tip-list { margin-top: 0; }
  .ob-cta-card { display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; text-decoration: none; color: var(--text); transition: var(--transition); }
  .ob-cta-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.32); }
  .ob-cta-card .ob-ico { width: 34px; height: 34px; color: #fff; }
  .ob-cta-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; }
  .ob-cta-link { font-size: 0.92rem; font-weight: 700; color: var(--primary-light); }
  /* Geräte-Finder als Icon-Kacheln */
  .ob-find-chip { flex-direction: column; align-items: center; gap: 0.65rem; text-align: center; padding: 1.25rem 0.6rem; }
  .ob-find-chip span { font-size: 0.9rem; line-height: 1.2; }


  @media (max-width: 860px) {
    .ob-jobs { grid-template-columns: 1fr; margin-top: 2rem; }
    .ob-warranty-grid, .ob-help-grid { grid-template-columns: 1fr; gap: 2rem; }
    .ob-care-list { grid-template-columns: 1fr; }
    .ob-find-grid { grid-template-columns: repeat(2, 1fr); }
    .ob-shop-inner { flex-direction: column; align-items: flex-start; }
    .ob-bought-tabs { grid-template-columns: repeat(2, 1fr); }
    .ob-tip-list { grid-template-columns: 1fr; gap: 1.3rem; }
    .ob-panel-grid { grid-template-columns: 1fr; }
    .ob-bought-tabs { grid-template-columns: repeat(3, 1fr); }
    .ob-find-grid { grid-template-columns: repeat(3, 1fr); }
    .ob-welcome-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .ob-green { order: -1; }
    .ob-green img { max-width: 300px; }
  }
  /* 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; }
  /* === 3D-Test-Block === */
  .ob-3d-stage { position: relative; max-width: 920px; margin: 2.5rem auto 0; height: 520px; background: radial-gradient(120% 100% at 50% 0%, rgba(38,149,124,0.12), transparent 62%), var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
  .ob-3d-stage model-viewer { width: 100%; height: 100%; background: transparent; --poster-color: transparent; --progress-bar-color: var(--primary-light); }
  .ob-3d-badge { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--text-muted); background: rgba(0,0,0,0.45); border: 1px solid var(--border); padding: 6px 14px; border-radius: 20px; backdrop-filter: blur(6px); pointer-events: none; white-space: nowrap; }
  @media (max-width: 768px) { .ob-3d-stage { height: 380px; } .ob-3d-badge { font-size: 0.72rem; } }
  .ob-shop { padding-top: 0.5rem; }
  .ob-shop-band { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 2.4rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.9rem 2.6rem; }
  .ob-shop-enno { width: 172px; height: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35)); }
  .ob-shop-text { display: flex; flex-direction: column; gap: 0.4rem; }
  .ob-shop-text .eyebrow { color: #ff7a30; }
  .ob-shop-text h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 0; line-height: 1.25; letter-spacing: -0.01em; }
  .ob-shop-subtel { color: #ff5a00; }
  .ob-shop-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0.15rem 0 0; max-width: 56ch; }
  .ob-shop-text p b { color: #fff; font-weight: 700; }
  .ob-shop-actions { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
  .ob-shop-actions .btn { white-space: nowrap; }
  .ob-shop-link { color: var(--primary-light); font-weight: 700; font-size: 0.9rem; text-decoration: none; text-align: center; }
  .ob-shop-link:hover { color: var(--primary); }
  @media (max-width: 880px) {
    .ob-shop-band { grid-template-columns: auto 1fr; gap: 1.5rem 2rem; }
    .ob-shop-actions { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 1.4rem; }
    .ob-shop-actions .btn { flex-shrink: 0; }
  }
  @media (max-width: 600px) {
    .ob-shop-band { grid-template-columns: 1fr; text-align: center; padding: 1.85rem 1.5rem; gap: 1.1rem; }
    .ob-shop-enno { width: 140px; justify-self: center; }
    .ob-shop-text { align-items: center; }
    .ob-shop-actions { flex-direction: column; align-items: center; }
  }

/* Shared interior page hero (consistent green-gradient header on every page that
   has no custom hero image — legal pages, etc.). Per-page CSS may override with
   identical values; pages without per-page CSS inherit this. */
.page-hero { position: relative; padding: calc(72px + 2.5rem) 0 4rem; background: var(--gradient-hero, var(--bg)); 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); }
/* Shared hero surface: every page-hero variant inherits the same green gradient
   + accent line. Per-page CSS only owns its own padding / inner layout — it must
   NOT redeclare background, or it would override this (it loads after design.css). */
.product-hero,
.kf-hero,
.b2b-hero { position: relative; background: var(--gradient-hero, var(--bg)); border-bottom: 1px solid var(--border); overflow: hidden; }
.product-hero::after,
.kf-hero::after,
.b2b-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); }
.product-hero .container,
.kf-hero .container,
.b2b-hero .container { position: relative; z-index: 2; }
.page-hero .container { position: relative; z-index: 2; }
/* ── SHARED PAGE HEADER — single source of truth ──────────────────────────────
   Breadcrumb + eyebrow + h1 + lead for EVERY interior hero (page-hero, kf-hero,
   b2b-hero, product-hero — incl. category pages). Per-page CSS must own ONLY
   page-specific layout (grids, images) and never redeclare these, so headers
   render identically on every page and in every locale. */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-bottom: 2rem; }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: rgba(255,255,255,0.7); }

.page-hero .eyebrow, .kf-hero .eyebrow, .b2b-hero .eyebrow, .product-hero .eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 1rem; }
.page-hero h1, .kf-hero h1, .b2b-hero h1, .product-hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.page-hero h1 em, .kf-hero h1 em, .b2b-hero h1 em, .product-hero h1 em { font-style: normal; color: var(--primary); }
/* DeepL lowercases translated common nouns; capitalize the hero title's first
   letter so category headings like "casque audio" render as "Casque audio". */
.product-hero h1::first-letter { text-transform: uppercase; }
.page-hero p.lead, .kf-hero p.lead, .b2b-hero p.lead, .product-hero p.lead,
.page-hero .lead, .kf-hero .lead, .b2b-hero .lead, .product-hero .lead { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.65; max-width: 640px; }

/* Interior pages: clear the fixed 72px header (breadcrumb was tucked under nav) */
body:not(.home) .page-hero,
body:not(.home) .kf-hero,
body:not(.home) .product-hero,
body:not(.home) .b2b-hero { padding-top: calc(72px + 2.25rem); }

/* Consistent header start across every interior page: all heroes top-align
   their content, so the breadcrumb + eyebrow + h1 begin at the SAME vertical
   position on every page and in every locale (header clearance set above).
   Height follows content — a longer translation just extends the hero
   downward without shifting the header — and no tall fixed reserve means
   short pages (e.g. a category hero with a one-line lead) don't trail a large
   empty gap. Disabled on small screens, where heroes stack. */
@media (min-width: 768px) {
  .page-hero, .product-hero, .kf-hero, .b2b-hero { display: flex; align-items: flex-start; }
  .page-hero > .container,
  .product-hero > .container,
  .kf-hero > .container,
  .b2b-hero > .container { width: 100%; }
}

/* ── COOKIE CONSENT BANNER ── */
.cookie-banner { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1.25rem; background: rgba(8,8,8,0.72); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); animation: cookie-fade 0.3s ease; }
.cookie-banner[hidden] { display: none; }
@keyframes cookie-fade { from { opacity: 0; } to { opacity: 1; } }
body.cookie-lock { overflow: hidden; }
.cookie-banner__inner { width: 100%; max-width: 520px; max-height: calc(100vh - 2.5rem); overflow-y: auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 30px 80px rgba(0,0,0,0.6); padding: 1.75rem; animation: cookie-rise 0.35s ease; }
.cookie-banner__inner:focus { outline: none; }
@keyframes cookie-rise { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.cookie-banner__title { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.5rem; }
.cookie-banner__text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.cookie-banner__link { color: var(--primary-light); text-decoration: underline; white-space: nowrap; }
.cookie-banner__link:hover { color: var(--primary); }

.cookie-banner__options { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.cookie-banner__options[hidden] { display: none; }
.cookie-opt { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem; cursor: pointer; }
.cookie-opt__main { display: flex; flex-direction: column; gap: 0.15rem; }
.cookie-opt__name { font-size: 0.9rem; font-weight: 500; }
.cookie-opt__desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

.cookie-switch { position: relative; flex: 0 0 auto; width: 42px; height: 24px; margin-top: 2px; }
.cookie-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cookie-switch__track { position: absolute; inset: 0; background: rgba(255,255,255,0.12); border-radius: 999px; transition: var(--transition); }
.cookie-switch__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: var(--transition); }
.cookie-switch input:checked + .cookie-switch__track { background: var(--primary); }
.cookie-switch input:checked + .cookie-switch__track::after { transform: translateX(18px); }
.cookie-switch--locked { opacity: 0.55; }
.cookie-switch--locked input { cursor: not-allowed; }

.cookie-banner__actions { margin-top: 1.5rem; display: flex; gap: 0.6rem; }
.cookie-btn { flex: 1 1 0; min-width: 0; justify-content: center; text-align: center; white-space: normal; line-height: 1.25; padding: 0.85rem 0.75rem; font-size: 0.875rem; }
.cookie-btn[hidden] { display: none; }
.cookie-btn--save { width: 100%; margin-top: 1.25rem; }
.cookie-banner.is-customizing .cookie-banner__actions { display: none; }

.cookie-settings-link { background: none; border: none; padding: 0; cursor: pointer; font-family: var(--font); font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.cookie-settings-link:hover { color: var(--primary); }

@media (max-width: 640px) {
  .cookie-banner { padding: 0; align-items: flex-end; }
  .cookie-banner__inner { max-width: none; max-height: 90vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 1.5rem 1.25rem; }
  .cookie-banner__actions { flex-direction: column; }
}

/* ── Region chooser (international .eu/.com entry markets; shown before cookies) ── */
body.region-lock { overflow: hidden; }
.region-banner { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 1.25rem; background: rgba(8,8,8,0.72); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); animation: cookie-fade 0.3s ease; }
.region-banner[hidden] { display: none; }
.region-banner__backdrop { position: absolute; inset: 0; }
.region-banner__dialog { position: relative; width: 100%; max-width: 520px; max-height: calc(100vh - 2.5rem); overflow-y: auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 30px 80px rgba(0,0,0,0.6); padding: 1.75rem; animation: cookie-rise 0.35s ease; }
.region-banner__dialog:focus { outline: none; }
.region-banner__title { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.5rem; }
.region-banner__text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1.1rem; }
.region-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem; margin: 0.25rem 0 1.1rem; }
.region-list__item { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.7rem; border-radius: var(--radius); transition: var(--transition); color: rgba(255,255,255,0.8); }
.region-list__item:hover { background: var(--primary-glow); color: #fff; }
.region-list__item.is-suggested { background: var(--primary-glow); border: 1px solid var(--border-hover); color: #fff; }
.region-list__flag { display: inline-flex; width: 22px; height: 15px; border-radius: 3px; overflow: hidden; flex-shrink: 0; }
.region-list__flag svg { width: 22px; height: 15px; display: block; }
.region-list__name { font-size: 0.84rem; }
.region-banner__stay { display: block; width: 100%; background: none; border: none; color: var(--text-muted); font-family: inherit; font-size: 0.82rem; cursor: pointer; padding: 0.4rem; text-decoration: underline; }
.region-banner__stay:hover { color: #fff; }
@media (max-width: 640px) {
  .region-banner { padding: 0; align-items: flex-end; }
  .region-banner__dialog { max-width: none; max-height: 90vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 1.5rem 1.25rem; }
  .region-list { grid-template-columns: 1fr; }
}
