/* =====================================================================
   Herr Handyman — Shop-Designsystem
   Visuelle Linie: Würth-Disziplin + OBI-Wärme · Palette: Grün/Schwarz/Gelb
   ===================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Marke */
  --green:        #5EA82B;
  --green-bright: #79C23C;
  --green-dark:   #43791A;
  --green-700:    #2F5A11;
  --green-tint:   #EEF6E6;
  --green-tint-2: #E2F0D5;

  --yellow:       #FFD400;
  --yellow-dark:  #E9B500;

  --orange:       #F5760A;
  --orange-dark:  #DC6A05;

  /* Neutral / Tinte */
  --ink:        #181C1A;
  --ink-2:      #2C332F;
  --graphite:   #232A27;   /* Header dunkel */
  --graphite-2: #171C1A;   /* Top-Bar */
  --body:       #404844;
  --muted:      #6B7670;
  --line:       #E4E8E5;
  --line-2:     #EEF1EF;
  --mist:       #F4F6F4;   /* Section-Tint */
  --mist-2:     #FAFBFA;
  --paper:      #FFFFFF;
  --metal-1:    #D9DEDD;
  --metal-2:    #AEB7B4;

  /* System */
  --price:      #1f7a16;   /* Preis-Grün dunkel, lesbar */
  --danger:     #C8281E;

  /* Form */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20,30,25,.06), 0 1px 3px rgba(20,30,25,.05);
  --shadow:    0 6px 18px rgba(20,40,25,.08), 0 2px 6px rgba(20,40,25,.05);
  --shadow-lg: 0 18px 50px rgba(20,40,25,.14), 0 6px 16px rgba(20,40,25,.08);
  --shadow-green: 0 8px 20px rgba(67,121,26,.28);

  --container: 1760px;
  --header-h: 76px;

  --font-head: "Archivo", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* HH: Kompatibilitäts-Variablen für virsal-basierte Seiten (Konto, Kasse, Info) → HH-Palette */
  --red: #5EA82B; --red-50: #EEF6E6; --red-100: #E2F0D5; --red-600: #43791A; --red-700: #2F5A11;
  --ink-300: #AEB7B4; --ink-500: #6B7670; --ink-800: #171C1A;
  --bg: #F4F6F4; --white: #fff;
}

/* ---------- 2. Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 800; letter-spacing: -.01em; }
strong { font-weight: 700; }
:focus-visible { outline: 3px solid rgba(94,168,43,.55); outline-offset: 2px; border-radius: 4px; }

/* ---------- 3. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: 54px 0; }
.section--tight { padding: 36px 0; }
.section--mist { background: var(--mist); }
.row { display: flex; gap: 16px; }
.spread { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.icon { width: 22px; height: 22px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.screw-illus { width: 100%; height: 100%; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 30px; height: 30px; }
[hidden] { display: none !important; }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 20px; border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: .005em;
  background: var(--mist); color: var(--ink); border: 1.5px solid var(--line);
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { background: #fff; border-color: var(--metal-2); }
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--green); color: #fff; border-color: var(--green);
  box-shadow: var(--shadow-green);
}
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn--dark { background: var(--graphite); color: #fff; border-color: var(--graphite); }
.btn--dark:hover { background: #000; border-color: #000; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--lg { padding: 15px 28px; font-size: 16.5px; }
.btn--sm { padding: 8px 14px; font-size: 13.5px; }
.btn--block { width: 100%; }
.btn--cart { background: var(--green); color:#fff; border-color: var(--green); box-shadow: var(--shadow-green); }
.btn--cart:hover { background: var(--green-dark); border-color: var(--green-dark); }

.linkarrow { display:inline-flex; align-items:center; gap:6px; color: var(--green-dark); font-weight:700; font-family:var(--font-head); }
.linkarrow:hover { color: var(--green-700); }
.linkarrow .icon { width:16px; height:16px; transition: transform .15s ease; }
.linkarrow:hover .icon { transform: translateX(3px); }

/* ---------- 5. Badges / Chips ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-weight: 800; font-size: 11.5px; letter-spacing: .03em;
  text-transform: uppercase; padding: 4px 9px; border-radius: var(--r-sm);
}
.badge--sale { background: var(--yellow); color: #1a1a00; }
.badge--new { background: var(--green); color: #fff; }
.badge--stock { background: var(--green-tint); color: var(--green-700); text-transform: none; letter-spacing: 0; font-weight:700; }
.badge--top { background: var(--graphite); color: #fff; }
.badge--ghost { background: #fff; color: var(--body); border: 1px solid var(--line); text-transform:none; letter-spacing:0; }

.chip {
  display:inline-flex; align-items:center; gap:7px;
  padding:7px 13px; border-radius: var(--r-pill);
  background:#fff; border:1.5px solid var(--line); font-weight:600; font-size:13.5px; color:var(--ink-2);
  transition: border-color .15s, background .15s;
}
.chip:hover { border-color: var(--green); }
.chip--on { background: var(--green-tint); border-color: var(--green); color: var(--green-700); }

.stars { display:inline-flex; gap:1px; color: var(--yellow-dark); }
.stars .icon { width:15px; height:15px; }
.rating-line { display:inline-flex; align-items:center; gap:7px; color: var(--muted); font-size:13px; }

/* ---------- 6. Top-Bar ---------- */
.topbar { background: var(--graphite-2); color: #cfd6d2; font-size: 12.8px; }
.topbar .container { display:flex; align-items:center; justify-content:space-between; min-height: 38px; gap: 18px; }
.topbar a { color: #cfd6d2; }
.topbar a:hover { color: #fff; }
.topbar__left { display:flex; align-items:center; gap: 20px; }
.topbar__right { display:flex; align-items:center; gap: 18px; }
.topbar__item { display:inline-flex; align-items:center; gap:7px; }
.topbar__item .icon { width:15px; height:15px; color: var(--green-bright); }
.topbar .ts { display:inline-flex; align-items:center; gap:6px; font-weight:600; color:#fff; }
.topbar .ts .stars .icon { width:13px; height:13px; }
.sep { width:1px; height:15px; background: rgba(255,255,255,.16); }

/* ---------- 7. Header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.header__bar { display:flex; align-items:center; gap: 26px; min-height: var(--header-h); }
.header__bar > .brand { flex: 1 1 0; }

/* Wortmarke-Logo (Lockup: Markenzeichen + Schriftzug) */
.brand { display:inline-flex; align-items:center; gap:12px; flex:none; }
.brand__mark { flex:none; width:46px; height:46px; }
.brand__mark svg { width:100%; height:100%; display:block; }
.brand__text { display:flex; flex-direction:column; line-height:1; }
.brand__row { display:flex; align-items:baseline; gap:6px; }
.brand__herr { font-family:var(--font-head); font-style:italic; font-weight:900; font-size:26px; color:var(--ink); letter-spacing:-.02em; }
.brand__hand { font-family:var(--font-head); font-style:italic; font-weight:900; font-size:26px; color:var(--green); letter-spacing:-.02em; position:relative; }
.brand__hand::after { content:""; position:absolute; left:0; right:-1px; bottom:-3px; height:3px; background: var(--yellow); border-radius:2px; }
.brand__sub { margin-top:6px; font-family:var(--font-head); font-weight:700; font-size:9px; letter-spacing:.135em; text-transform:uppercase; color: var(--muted); white-space:nowrap; }
.brand--sm { gap:9px; }
.brand--sm .brand__mark { width:34px; height:34px; }
.brand--sm .brand__herr, .brand--sm .brand__hand { font-size:19px; }
.brand--sm .brand__sub { display:none; }
/* Logo-Platte im Footer (heller Untergrund) */
.footer__logo-plate { display:inline-flex; align-items:center; gap:10px; background:#fff; padding:11px 16px; border-radius:10px; box-shadow: var(--shadow-sm); }
/* Alt-Logo (Bilddatei) – Fallback */
.brand-logo { height: 50px; width: auto; display:block; }
@media (max-width: 560px){
  .header .brand__mark { width:38px; height:38px; }
  .header .brand__herr, .header .brand__hand { font-size:21px; }
  .header .brand__sub { display:none; }
}

/* Suche */
.search { flex: 0 1 720px; max-width: 720px; }
.search__box { display:flex; align-items:stretch; border:2px solid var(--ink-2); border-radius: var(--r-sm); overflow:hidden; background:#fff; }
.search__cat {
  border:none; background: var(--mist); padding: 0 14px; font-weight:600; font-size:14px; color:var(--ink-2);
  border-right:1px solid var(--line); cursor:pointer; max-width: 175px;
}
.search__input { flex:1; border:none; padding: 12px 14px; font-size:15px; min-width: 60px; }
.search__input:focus { outline:none; }
.search__btn { background: var(--green); color:#fff; padding: 0 20px; display:flex; align-items:center; gap:8px; font-family:var(--font-head); font-weight:700; }
.search__btn:hover { background: var(--green-dark); }
.search__btn .icon { width:19px; height:19px; }

/* Header-Aktionen */
.hactions { display:flex; align-items:center; justify-content:flex-end; gap: 6px; flex: 1 1 0; }
.haction {
  display:flex; flex-direction:column; align-items:center; gap:3px;
  padding: 8px 11px; border-radius: var(--r-sm); color: var(--ink-2); position:relative; min-width: 62px;
  transition: background .15s;
}
.haction:hover { background: var(--mist); }
.haction .icon { width:23px; height:23px; }
.haction span { font-size:11.5px; font-weight:600; color: var(--body); }
.haction__count {
  position:absolute; top:3px; right:9px; min-width:18px; height:18px; padding:0 4px;
  background: var(--green); color:#fff; border-radius:var(--r-pill);
  font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center; line-height:1;
}
.haction--cart .haction__count { background: var(--danger); }
.cart-sum { font-size:11.5px; font-weight:700; color: var(--ink); }

.burger { display:none; }

/* ---------- 8. Mega-Nav ---------- */
.nav { background: var(--graphite); color:#fff; position:relative; }
.nav__list { display:flex; align-items:stretch; gap:2px; }
.nav__item { position: static; }
.nav__link {
  display:flex; align-items:center; gap:8px; height: 50px; padding: 0 16px;
  font-family:var(--font-head); font-weight:700; font-size:14.5px; letter-spacing:.01em; color:#eef2ef;
  border-bottom: 3px solid transparent; transition: background .15s, border-color .15s;
}
.nav__link .icon { width:18px; height:18px; opacity:1; color: var(--orange); }
.nav__link .chev { width:14px; height:14px; opacity:.7; margin-left:-2px; color:#cfd6d2; }
.nav__item:hover .nav__link, .nav__link--on { background: rgba(255,255,255,.07); border-bottom-color: var(--green-bright); }
.nav__link--sale { color: var(--yellow); }
.nav__link--sale .icon { opacity:1; color: var(--yellow); }
.nav__spacer { flex:1; }
.nav__meta { display:flex; align-items:center; gap:18px; font-size:13px; color:#b9c2bd; }
.nav__meta a { color:#b9c2bd; } .nav__meta a:hover{ color:#fff; }
.nav__meta .icon { width:16px; height:16px; color: var(--green-bright); }

/* Mega-Panel */
.mega {
  position:absolute; top: 100%; left:0; right:0; z-index: 90;
  background:#fff; color:var(--body); box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--green);
  opacity:0; visibility:hidden; transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav__item:hover > .mega { opacity:1; visibility:visible; transform: translateY(0); }
.mega__inner { display:grid; grid-template-columns: repeat(4, 1fr) 280px; gap: 8px 30px; padding: 26px 30px; }
.mega__col h4 { font-size:13px; text-transform:uppercase; letter-spacing:.05em; color: var(--green-dark); margin-bottom:12px; padding-bottom:8px; border-bottom:1px solid var(--line); }
.mega__col li { margin-bottom:3px; }
.mega__col a { display:flex; align-items:center; justify-content:space-between; padding:6px 8px; border-radius:6px; font-size:14px; color:var(--ink-2); transition: background .12s, color .12s; }
.mega__col a:hover { background: var(--green-tint); color: var(--green-700); }
.mega__col a .cnt { color: var(--muted); font-size:12px; font-weight:600; }
.mega__promo { background: var(--graphite); color:#fff; border-radius: var(--r); padding: 20px; display:flex; flex-direction:column; justify-content:space-between; }
.mega__promo .k { color: var(--yellow); font-weight:800; font-size:12px; letter-spacing:.05em; text-transform:uppercase; }
.mega__promo h5 { color:#fff; font-family:var(--font-head); font-size:20px; font-weight:800; margin:6px 0 4px; line-height:1.1; }
.mega__promo p { color:#c4ccc7; font-size:13px; }
.mega__promo .scr { align-self:flex-end; margin-top:10px; }

/* ---------- 9. Hero ---------- */
.hero { background: linear-gradient(180deg,#fff 0%, var(--mist) 100%); border-bottom:1px solid var(--line); }
.hero__grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items:center; padding: 40px 0 30px; }
.hero__eyebrow { display:inline-flex; align-items:center; gap:8px; font-family:var(--font-head); font-weight:800; font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--green-dark); background:var(--green-tint); padding:6px 12px; border-radius:var(--r-pill); }
.hero h1 { font-size: clamp(34px, 4vw, 52px); font-weight:900; line-height:1.04; margin: 16px 0 14px; letter-spacing:-.02em; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero__lead { font-size: 18px; color: var(--ink-2); max-width: 46ch; }
.hero__cta { display:flex; gap:12px; margin-top: 24px; flex-wrap:wrap; }
.hero__usp { display:flex; gap:22px; margin-top:26px; flex-wrap:wrap; }
.hero__usp li { display:flex; align-items:center; gap:9px; font-weight:600; color: var(--ink-2); font-size:14px; }
.hero__usp .icon { width:20px; height:20px; color: var(--green); }
.hero__media { position:relative; }
.hero__card { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 28px; }
.hero__visual { aspect-ratio: 4/3; border-radius: var(--r); background: radial-gradient(120% 120% at 70% 20%, #fff 0%, var(--mist) 70%); display:grid; place-items:center; position:relative; overflow:hidden; }
.hero__visual .screw-illus { width: 78%; }
.hero__pricetag { position:absolute; left:18px; bottom:18px; background: var(--yellow); color:#1a1a00; border-radius: var(--r); padding: 10px 16px; box-shadow: var(--shadow); }
.hero__pricetag b { font-family:var(--font-head); font-size:22px; font-weight:900; display:block; }
.hero__pricetag span { font-size:12px; font-weight:700; }

.hero__promos { display:grid; grid-template-columns: repeat(3,1fr); gap:14px; padding-bottom: 34px; }
.promo-tile { display:flex; gap:14px; align-items:center; background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:16px; transition: box-shadow .15s, transform .15s, border-color .15s; }
.promo-tile:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--green); }
.promo-tile__ic { width:46px; height:46px; border-radius:10px; background: var(--green-tint); color: var(--green-dark); display:grid; place-items:center; flex:none; }
.promo-tile__ic .icon { width:26px; height:26px; }
.promo-tile h4 { font-size:15px; margin-bottom:2px; }
.promo-tile p { font-size:13px; color: var(--muted); }

/* ---------- 10. USP-Strip ---------- */
.usp { background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.usp__grid { display:grid; grid-template-columns: repeat(4,1fr); }
.usp__item { display:flex; align-items:center; gap:13px; padding: 20px 18px; }
.usp__item + .usp__item { border-left:1px solid var(--line-2); }
.usp__ic { width:42px; height:42px; flex:none; border-radius:10px; background: var(--green-tint); color: var(--green-dark); display:grid; place-items:center; }
.usp__ic .icon { width:24px; height:24px; }
.usp__item b { display:block; font-family:var(--font-head); font-size:14.5px; color:var(--ink); }
.usp__item span { font-size:12.5px; color: var(--muted); }

/* ---------- 11. Section heading ---------- */
.shead { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom: 26px; }
.shead__eyebrow { font-family:var(--font-head); font-weight:800; font-size:12.5px; letter-spacing:.09em; text-transform:uppercase; color: var(--green-dark); }
.shead h2 { font-size: clamp(24px, 2.6vw, 33px); font-weight:900; letter-spacing:-.02em; margin-top:4px; }
.shead p { color: var(--muted); margin-top:6px; max-width: 60ch; }

/* ---------- 12. Produktwelten ---------- */
.welten { display:grid; grid-template-columns: repeat(4,1fr); gap:16px; }
.welt {
  position:relative; border:1px solid var(--line); border-radius: var(--r); overflow:hidden; background:#fff;
  padding: 22px; min-height: 158px; display:flex; flex-direction:column; justify-content:space-between;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.welt:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--green); }
.welt__ic { width:54px; height:54px; border-radius:12px; background: var(--green-tint); color: var(--green-dark); display:grid; place-items:center; transition: background .18s, color .18s; }
.welt:hover .welt__ic { background: var(--green); color:#fff; }
.welt__ic .icon { width:30px; height:30px; }
.welt h3 { font-size:16.5px; margin-top: 14px; }
.welt p { font-size:12.5px; color: var(--muted); margin-top:2px; }
.welt__cnt { position:absolute; top:16px; right:16px; font-size:12px; font-weight:700; color: var(--muted); }
.welt__arrow { position:absolute; bottom:18px; right:18px; color: var(--green); opacity:0; transform: translateX(-4px); transition:.18s; }
.welt:hover .welt__arrow { opacity:1; transform: translateX(0); }

/* ---------- 13. Product card / rail ---------- */
.rail { display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.rail--5 { grid-template-columns: repeat(5,1fr); }

.pcard { position:relative; display:flex; flex-direction:column; background:#fff; border:1px solid var(--line); border-radius: var(--r); overflow:hidden; transition: box-shadow .18s, border-color .18s, transform .18s; }
.pcard:hover { box-shadow: var(--shadow); border-color: var(--metal-2); transform: translateY(-2px); }
.pcard__flags { position:absolute; top:12px; left:12px; display:flex; flex-direction:column; gap:6px; z-index:2; }
.pcard__fav { position:absolute; top:10px; right:10px; z-index:2; width:34px; height:34px; border-radius:var(--r-pill); background:#fff; border:1px solid var(--line); display:grid; place-items:center; color:var(--muted); transition: color .15s, border-color .15s; }
.pcard__fav:hover { color: var(--danger); border-color: var(--danger); }
.pcard__media { aspect-ratio: 1/1; background: linear-gradient(160deg,#fff, var(--mist)); display:grid; place-items:center; padding: 18px; border-bottom:1px solid var(--line-2); }
.pcard__media .screw-illus { width: 72%; transition: transform .25s ease; }
.pcard:hover .pcard__media .screw-illus { transform: scale(1.05) rotate(-2deg); }
.pcard__body { padding: 14px 15px 16px; display:flex; flex-direction:column; flex:1; }
.pcard__brand { font-size:11.5px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; color: var(--green-dark); }
.pcard__title { font-family:var(--font-head); font-weight:700; font-size:15px; color: var(--ink); line-height:1.25; margin:3px 0 7px; min-height: 38px; }
.pcard__title:hover { color: var(--green-dark); }
.pcard__specs { display:flex; flex-wrap:wrap; gap:5px; margin-bottom:10px; }
.pcard__specs .t { font-size:11px; font-weight:600; color:var(--ink-2); background: var(--mist); border:1px solid var(--line-2); padding:2px 7px; border-radius:5px; }
.pcard__rating { margin-bottom:10px; }
.pcard__foot { margin-top:auto; }
.pcard__price { display:flex; align-items:baseline; gap:8px; }
.price-now { font-family:var(--font-head); font-weight:900; font-size:23px; color: var(--ink); letter-spacing:-.01em; }
.price-now.sale { color: var(--danger); }
.price-old { font-size:14px; color: var(--muted); text-decoration: line-through; }
.price-net { font-size:12px; color: var(--muted); }
.price-base { font-size:12px; color: var(--muted); }
.price-vat { font-size:11.5px; color: var(--muted); }
.pcard__stock { display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:600; color: var(--green-dark); margin:8px 0 12px; }
.pcard__stock .dot { width:8px; height:8px; border-radius:50%; background: var(--green); box-shadow:0 0 0 3px var(--green-tint); }
.pcard__stock--low { color: var(--yellow-dark); }
.pcard__stock--low .dot { background: var(--yellow-dark); box-shadow:0 0 0 3px #fff4cc; }
.pcard .btn--cart { width:100%; }
.pcard__ausf { display:block; text-align:center; font-size:12.5px; font-weight:700; color: var(--green-dark); margin-top:8px; }

/* horizontal scroller variant on mobile */
.rail-scroll { display:grid; }

/* ---------- 14. Staffel-Band ---------- */
.staffel { background: linear-gradient(110deg, var(--graphite) 0%, #1a201d 100%); color:#fff; border-radius: var(--r-lg); overflow:hidden; }
.staffel__grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items:center; padding: 40px 44px; }
.staffel .k { color: var(--yellow); font-family:var(--font-head); font-weight:800; font-size:13px; letter-spacing:.08em; text-transform:uppercase; }
.staffel h2 { color:#fff; font-size: clamp(26px,3vw,38px); font-weight:900; margin:10px 0 12px; letter-spacing:-.02em; }
.staffel p { color:#c4ccc7; max-width: 44ch; }
.staffel__table { background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius: var(--r); overflow:hidden; }
.staffel__table table { width:100%; border-collapse:collapse; }
.staffel__table th { text-align:left; padding:12px 18px; font-size:12px; letter-spacing:.04em; text-transform:uppercase; color:#9fb0a6; background: rgba(0,0,0,.2); font-family:var(--font-head); }
.staffel__table td { padding:13px 18px; border-top:1px solid rgba(255,255,255,.08); font-size:15px; }
.staffel__table tr td:first-child { font-weight:600; }
.staffel__table .save { color: var(--green-bright); font-weight:800; font-family:var(--font-head); }
.staffel__table .pr { font-family:var(--font-head); font-weight:800; color:#fff; }

/* ---------- 15. Marken ---------- */
.marken { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:14px; }
.marke { padding:12px 24px; border:1px solid var(--line); border-radius: var(--r); background:#fff; font-family:var(--font-head); font-weight:900; font-size:20px; color: var(--ink-2); letter-spacing:-.02em; filter:grayscale(1); opacity:.72; transition:.18s; }
.marke:hover { filter:none; opacity:1; border-color: var(--green); color: var(--green-dark); }

/* ---------- 16. Ratgeber ---------- */
.ratgeber { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.rcard { border:1px solid var(--line); border-radius: var(--r); overflow:hidden; background:#fff; transition: box-shadow .18s, transform .18s; }
.rcard:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.rcard__img { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--green-tint), var(--mist)); display:grid; place-items:center; color: var(--green-dark); }
.rcard__img .icon { width:46px; height:46px; opacity:.5; }
.rcard__body { padding: 18px 18px 20px; }
.rcard__tag { font-size:11.5px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; color: var(--green-dark); }
.rcard h3 { font-size:18px; margin:7px 0 8px; line-height:1.2; }
.rcard p { font-size:13.5px; color: var(--muted); margin-bottom:12px; }

/* ---------- 17. Trust band ---------- */
.trustband { background: var(--green-tint); border-radius: var(--r-lg); padding: 30px; display:flex; align-items:center; justify-content:center; gap:40px; flex-wrap:wrap; }
.ts-badge { display:flex; align-items:center; gap:14px; }
.ts-badge__seal { width:64px; height:64px; border-radius:50%; background:#fff; border:3px solid var(--green); display:grid; place-items:center; box-shadow: var(--shadow-sm); }
.ts-badge__seal .icon { width:34px; height:34px; color: var(--green); }
.ts-badge b { font-family:var(--font-head); font-size:22px; font-weight:900; color: var(--ink); display:block; }
.ts-badge span { font-size:13px; color: var(--ink-2); }
.trustband__divider { width:1px; height:50px; background: var(--green); opacity:.25; }
.trust-pills { display:flex; gap:14px; flex-wrap:wrap; }
.trust-pill { display:flex; align-items:center; gap:9px; background:#fff; border-radius:var(--r-pill); padding:10px 18px; font-weight:600; font-size:13.5px; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.trust-pill .icon { width:20px; height:20px; color: var(--green); }

/* ---------- 18. SEO Text ---------- */
.prose { max-width: 78ch; }
.prose h2 { font-size:26px; margin-bottom:14px; }
.prose h3 { font-size:18px; margin:22px 0 8px; }
.prose p { margin-bottom: 13px; color: var(--body); }
.prose ul.bullet { margin: 0 0 14px; padding-left: 4px; }
.prose ul.bullet li { position:relative; padding-left:24px; margin-bottom:7px; }
.prose ul.bullet li::before { content:""; position:absolute; left:2px; top:8px; width:9px; height:9px; background: var(--green); border-radius:2px; transform: rotate(45deg); }
.seo-cols { columns: 2; column-gap: 48px; }
@media (max-width: 760px){ .seo-cols { columns: 1; } }

/* ---------- 19. Footer ---------- */
.footer { background: var(--graphite); color: #b9c2bd; margin-top: 0; }
.footer__news { background: var(--graphite-2); padding: 30px 0; }
.footer__news-in { display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.footer__news h3 { color:#fff; font-size:22px; }
.footer__news p { color:#9fb0a6; font-size:14px; }
.news-form { display:flex; gap:10px; flex:1; max-width: 460px; min-width: 280px; }
.news-form input { flex:1; padding: 13px 16px; border-radius: var(--r-sm); border:1.5px solid #3a433e; background:#fff; }
.footer__main { padding: 46px 0 34px; }
.footer__grid { display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; }
.footer__col h4 { color:#fff; font-size:14px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:16px; }
.footer__col li { margin-bottom:9px; }
.footer__col a { font-size:14px; color:#b9c2bd; }
.footer__col a:hover { color:#fff; }
.footer__brand .brand__herr { color:#fff; } .footer__brand .brand__hand { color: var(--green-bright); }
.footer__brand .brand__sub { color:#8d978f; }
/* Logo im Footer sitzt auf heller Platte -> dunkle Schrift */
.footer__logo-plate .brand__herr { color: var(--ink); } .footer__logo-plate .brand__hand { color: var(--green); }
.footer__contact { margin-top:18px; }
.footer__contact .line { display:flex; align-items:center; gap:10px; margin-bottom:10px; font-size:14px; }
.footer__contact .line .icon { width:18px; height:18px; color: var(--green-bright); flex:none; }
.footer__contact .phone { font-family:var(--font-head); font-weight:800; font-size:20px; color:#fff; }
.footer__social { display:flex; gap:10px; margin-top:16px; }
.footer__social a { width:38px; height:38px; border-radius:8px; background: rgba(255,255,255,.07); display:grid; place-items:center; color:#cfd6d2; }
.footer__social a:hover { background: var(--green); color:#fff; }
.footer__pay { border-top:1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer__pay-in { display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.pay-icons { display:flex; gap:9px; flex-wrap:wrap; }
.pay-chip { background:#fff; border-radius:6px; padding:6px 11px; font-family:var(--font-head); font-weight:800; font-size:12px; color:#333; letter-spacing:-.01em; }
.ship-icons { display:flex; gap:9px; align-items:center; }
.ship-chip { background: rgba(255,255,255,.08); border-radius:6px; padding:6px 12px; font-family:var(--font-head); font-weight:800; font-size:12.5px; color:#dfe5e1; }
.footer__legal { background: var(--graphite-2); padding: 16px 0; font-size:12.5px; color:#7e8a83; }
.footer__legal-in { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer__legal a { color:#9fb0a6; } .footer__legal a:hover{ color:#fff; }
.footer__legal nav { display:flex; gap:18px; flex-wrap:wrap; }

/* ---------- 20. Breadcrumbs ---------- */
.crumbs { display:flex; align-items:center; gap:8px; padding: 14px 0; font-size:13px; color: var(--muted); flex-wrap:wrap; }
.crumbs a:hover { color: var(--green-dark); }
.crumbs .icon { width:14px; height:14px; opacity:.6; }
.crumbs span[aria-current] { color: var(--ink); font-weight:600; }

/* ---------- 21. Kategorie Layout ---------- */
.cat { display:grid; grid-template-columns: 282px 1fr; gap: 30px; align-items:start; }
.cat__head { margin-bottom: 22px; }
.cat__head h1 { font-size: clamp(26px,3vw,36px); font-weight:900; }
.cat__head .meta { color: var(--muted); margin-top:6px; }
.cat__intro { color: var(--body); max-width: 72ch; margin-top:10px; }

/* Sidebar */
.filters { position: sticky; top: calc(var(--header-h) + 14px); border:1px solid var(--line); border-radius: var(--r); background:#fff; overflow:hidden; }
.filters__head { display:flex; align-items:center; justify-content:space-between; padding: 14px 16px; border-bottom:1px solid var(--line); }
.filters__head h3 { font-size:16px; display:flex; align-items:center; gap:8px; }
.filters__head .icon { width:18px; height:18px; color: var(--green-dark); }
.filters__reset { font-size:12.5px; color: var(--green-dark); font-weight:700; }
.fgroup { border-bottom:1px solid var(--line-2); }
.fgroup__btn { width:100%; display:flex; align-items:center; justify-content:space-between; padding: 14px 16px; font-family:var(--font-head); font-weight:700; font-size:14px; color: var(--ink); }
.fgroup__btn .chev { width:16px; height:16px; color: var(--muted); transition: transform .2s; }
.fgroup.collapsed .chev { transform: rotate(-90deg); }
.fgroup__body { padding: 2px 16px 16px; }
.fgroup.collapsed .fgroup__body { display:none; }
.fopt { display:flex; align-items:center; gap:10px; padding:6px 0; font-size:13.5px; color: var(--ink-2); cursor:pointer; }
.fopt input { width:17px; height:17px; accent-color: var(--green); flex:none; }
.fopt .cnt { margin-left:auto; color: var(--muted); font-size:12px; }
.fopt:hover { color: var(--green-dark); }

/* Kopfform icon grid */
.kopf-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:8px; }
.kopf {
  display:flex; flex-direction:column; align-items:center; gap:6px; padding:10px 6px;
  border:1.5px solid var(--line); border-radius:8px; cursor:pointer; text-align:center; transition: border-color .15s, background .15s;
}
.kopf:hover { border-color: var(--green); }
.kopf.on { border-color: var(--green); background: var(--green-tint); }
.kopf .icon { width:30px; height:30px; color: var(--ink-2); }
.kopf span { font-size:10.5px; font-weight:600; color: var(--body); line-height:1.1; }

/* Antrieb chips inside filter */
.antrieb-grid { display:flex; flex-wrap:wrap; gap:7px; }
.antrieb { display:flex; align-items:center; gap:6px; padding:6px 10px; border:1.5px solid var(--line); border-radius:7px; cursor:pointer; font-size:12.5px; font-weight:600; transition:.15s; }
.antrieb .icon { width:18px; height:18px; }
.antrieb:hover, .antrieb.on { border-color: var(--green); background: var(--green-tint); color: var(--green-700); }

/* Price slider (visual) */
.price-range { display:flex; align-items:center; gap:10px; margin-top:6px; }
.price-range input[type=number] { width:100%; padding:8px 10px; border:1.5px solid var(--line); border-radius:7px; }
.range-track { height:5px; background: var(--line); border-radius:3px; position:relative; margin:16px 4px 4px; }
.range-track::before { content:""; position:absolute; left:18%; right:34%; top:0; bottom:0; background: var(--green); border-radius:3px; }
.range-track i { position:absolute; top:50%; width:16px; height:16px; background:#fff; border:3px solid var(--green); border-radius:50%; transform: translateY(-50%); box-shadow: var(--shadow-sm); }

/* Toolbar */
.toolbar { display:flex; align-items:center; justify-content:space-between; gap:16px; padding: 12px 16px; background: var(--mist); border:1px solid var(--line); border-radius: var(--r); margin-bottom: 18px; flex-wrap:wrap; }
.toolbar__count { font-size:14px; color: var(--ink-2); }
.toolbar__count b { font-family:var(--font-head); }
.toolbar__right { display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.toolbar label { font-size:13px; color: var(--muted); }
.toolbar select { padding:9px 12px; border:1.5px solid var(--line); border-radius: var(--r-sm); background:#fff; font-weight:600; }

/* Brutto/Netto toggle */
.bnt { display:inline-flex; background:#fff; border:1.5px solid var(--line); border-radius: var(--r-pill); padding:3px; }
.bnt button { padding:6px 14px; border-radius: var(--r-pill); font-weight:700; font-size:13px; color: var(--muted); font-family:var(--font-head); }
.bnt button.on { background: var(--green); color:#fff; }

/* active filter chips */
.activef { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:16px; }
.activef .chip { padding:5px 10px 5px 12px; font-size:12.5px; }
.activef .chip button { color: var(--muted); display:inline-flex; }
.activef .chip button .icon { width:14px; height:14px; }

.cat__grid { display:grid; grid-template-columns: repeat(5,1fr); gap:18px; }

/* Pagination */
.pager { display:flex; align-items:center; justify-content:center; gap:6px; margin-top: 34px; }
.pager a, .pager span { min-width:40px; height:40px; padding:0 10px; display:inline-flex; align-items:center; justify-content:center; border:1.5px solid var(--line); border-radius: var(--r-sm); font-weight:700; font-family:var(--font-head); color: var(--ink-2); }
.pager a:hover { border-color: var(--green); color: var(--green-dark); }
.pager .on { background: var(--green); border-color: var(--green); color:#fff; }
.pager .nxt { gap:6px; }

/* ---------- 22. Produktseite ---------- */
.pdp { display:grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items:stretch; }

/* Galerie — Höhe an die rechte Spalte (Info) angleichen */
.pdp__gallery { display:flex; flex-direction:column; min-height:0; }
.gallery__main { border:1px solid var(--line); border-radius: var(--r-lg); background: linear-gradient(160deg,#fff, var(--mist)); flex:1 1 0; min-height:0; display:grid; place-items:center; padding: 30px; position:relative; }
.gallery__main .screw-illus { width:auto; height:100%; max-height:100%; max-width:78%; }
.gallery__flags { position:absolute; top:16px; left:16px; display:flex; gap:8px; }
.gallery__thumbs { display:flex; gap:12px; margin-top:14px; }
.gthumb { width:80px; height:80px; border:1.5px solid var(--line); border-radius: var(--r); background: linear-gradient(160deg,#fff, var(--mist)); display:grid; place-items:center; padding:10px; cursor:pointer; }
.gthumb.on, .gthumb:hover { border-color: var(--green); }
.gthumb .screw-illus { width: 90%; }
.pdp__docs { display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; }
.docpill { display:flex; align-items:center; gap:9px; border:1.5px solid var(--line); border-radius: var(--r-sm); padding:10px 14px; font-weight:600; font-size:13.5px; color: var(--ink-2); }
.docpill:hover { border-color: var(--green); color: var(--green-dark); }
.docpill .icon { width:20px; height:20px; color: var(--danger); }

/* Info-Spalte */
.pdp__brand { font-size:12.5px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; color: var(--green-dark); }
.pdp h1 { font-size: clamp(24px,2.6vw,32px); font-weight:900; margin:6px 0 10px; line-height:1.12; }
.pdp__meta { display:flex; align-items:center; gap:16px; flex-wrap:wrap; color: var(--muted); font-size:13px; margin-bottom:16px; }
.pdp__meta b { color: var(--ink-2); }
.pdp__quickspecs { display:grid; grid-template-columns: repeat(2,1fr); gap:8px; margin: 16px 0 20px; }
.qspec { display:flex; align-items:center; gap:10px; padding:10px 12px; background: var(--mist); border:1px solid var(--line-2); border-radius: var(--r-sm); }
.qspec .icon { width:22px; height:22px; color: var(--green-dark); flex:none; }
.qspec b { display:block; font-size:13.5px; color: var(--ink); font-family:var(--font-head); }
.qspec span { font-size:11.5px; color: var(--muted); }

/* Preisblock */
.priceblock { border:1px solid var(--line); border-radius: var(--r); padding: 20px; background: var(--mist-2); }
.priceblock__top { display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.priceblock .big { font-family:var(--font-head); font-weight:900; font-size:38px; color: var(--ink); letter-spacing:-.02em; line-height:1; }
.priceblock .big.sale { color: var(--danger); }
.priceblock .net { font-size:14px; color: var(--muted); margin-top:6px; }
.priceblock .base { font-size:13px; color: var(--muted); }
.priceblock .vat { font-size:12.5px; color: var(--muted); margin-top:4px; }
.priceblock .saving { background: var(--yellow); color:#1a1a00; font-family:var(--font-head); font-weight:800; padding:6px 12px; border-radius: var(--r-sm); font-size:13px; }
.priceblock__stock { display:inline-flex; align-items:center; gap:8px; margin-top:14px; font-weight:700; color: var(--green-dark); font-size:14px; }
.priceblock__stock .dot { width:9px; height:9px; border-radius:50%; background: var(--green); box-shadow:0 0 0 4px var(--green-tint); }
.priceblock__stock .ship { color: var(--muted); font-weight:500; }

/* Ausführungen / Variantentabelle */
.varblock { border:1px solid var(--line); border-radius: var(--r); overflow:hidden; margin: 22px 0; }
.varblock__head { display:flex; align-items:center; justify-content:space-between; gap:12px; padding: 14px 18px; background: var(--green-tint); border-bottom:1px solid var(--line); flex-wrap:wrap; }
.varblock__head h3 { font-size:16px; display:flex; align-items:center; gap:8px; }
.varblock__head h3 .icon { width:20px; height:20px; color: var(--green-dark); }
.varblock__head .count { font-size:13px; color: var(--green-700); font-weight:700; }
.varfilter { display:flex; gap:10px; padding: 14px 18px; background: var(--mist); border-bottom:1px solid var(--line); flex-wrap:wrap; }
.varfilter .field { display:flex; flex-direction:column; gap:4px; }
.varfilter label { font-size:11px; font-weight:700; letter-spacing:.03em; text-transform:uppercase; color: var(--muted); }
.varfilter select { padding:9px 12px; border:1.5px solid var(--line); border-radius: var(--r-sm); background:#fff; font-weight:600; min-width:120px; }
.vartable-wrap { max-height: 360px; overflow:auto; }
.vartable { width:100%; border-collapse:collapse; font-size:13.5px; }
.vartable th { position:sticky; top:0; background:#fff; text-align:left; padding:11px 14px; font-family:var(--font-head); font-size:12px; letter-spacing:.02em; color: var(--muted); text-transform:uppercase; border-bottom:2px solid var(--line); z-index:1; }
.vartable td { padding:11px 14px; border-bottom:1px solid var(--line-2); vertical-align:middle; }
.vartable tr:hover td { background: var(--green-tint); }
.vartable .art { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size:12px; color: var(--muted); }
.vartable .dim { font-weight:700; color: var(--ink); font-family:var(--font-head); }
.vartable .vpe { color: var(--ink-2); }
.vartable .base { color: var(--muted); font-size:12px; }
.vartable .pr { font-family:var(--font-head); font-weight:800; color: var(--ink); white-space:nowrap; }
.vartable .stk { display:inline-flex; align-items:center; gap:5px; color: var(--green-dark); font-weight:600; font-size:12px; }
.vartable .stk .dot { width:7px; height:7px; border-radius:50%; background: var(--green); }
.vartable .stk--low { color: var(--yellow-dark); } .vartable .stk--low .dot{ background: var(--yellow-dark); }
.vqty { display:inline-flex; align-items:center; border:1.5px solid var(--line); border-radius: var(--r-sm); overflow:hidden; }
.vqty button { width:28px; height:30px; background: var(--mist); color: var(--ink-2); font-weight:800; }
.vqty button:hover { background: var(--green-tint); color: var(--green-dark); }
.vqty input { width:38px; height:30px; border:none; text-align:center; font-weight:700; border-inline:1px solid var(--line); }
.vrow-add { display:inline-flex; align-items:center; justify-content:center; gap:6px; background: var(--green); color:#fff; border-radius: var(--r-sm); padding:7px 12px; font-family:var(--font-head); font-weight:700; font-size:13px; }
.vrow-add:hover { background: var(--green-dark); }
.vrow-add .icon { width:16px; height:16px; }
.varempty { padding: 30px; text-align:center; color: var(--muted); }

/* Staffel mini table on PDP */
.staffel-mini { border:1px solid var(--line); border-radius: var(--r); overflow:hidden; margin: 0 0 22px; }
.staffel-mini__h { padding:12px 16px; background: var(--mist); border-bottom:1px solid var(--line); font-family:var(--font-head); font-weight:700; font-size:14px; display:flex; align-items:center; gap:8px; }
.staffel-mini__h .icon { width:18px; height:18px; color: var(--green-dark); }
.staffel-mini table { width:100%; border-collapse:collapse; }
.staffel-mini td, .staffel-mini th { padding:10px 16px; text-align:left; font-size:13.5px; border-bottom:1px solid var(--line-2); }
.staffel-mini th { font-family:var(--font-head); font-size:12px; text-transform:uppercase; color: var(--muted); letter-spacing:.03em; }
.staffel-mini tr:last-child td { border-bottom:none; }
.staffel-mini .pr { font-family:var(--font-head); font-weight:800; color: var(--ink); }
.staffel-mini .save { color: var(--green-dark); font-weight:700; }

/* Buy bar */
.buybar { display:flex; gap:12px; align-items:stretch; margin: 6px 0 16px; }
.qtystep { display:inline-flex; align-items:center; border:1.5px solid var(--line); border-radius: var(--r-sm); overflow:hidden; }
.qtystep button { width:46px; font-size:20px; font-weight:700; color: var(--ink-2); background: var(--mist); }
.qtystep button:hover { background: var(--green-tint); color: var(--green-dark); }
.qtystep input { width:58px; text-align:center; border:none; border-inline:1px solid var(--line); font-weight:800; font-family:var(--font-head); font-size:16px; }
.buybar .btn--cart { flex:1; font-size:16.5px; }
.buyextra { display:flex; gap:14px; flex-wrap:wrap; }
.buyextra a { display:inline-flex; align-items:center; gap:7px; font-size:13.5px; font-weight:600; color: var(--ink-2); }
.buyextra a:hover { color: var(--green-dark); }
.buyextra .icon { width:18px; height:18px; }

.pdp__trust { display:flex; gap:18px; flex-wrap:wrap; margin-top:18px; padding-top:18px; border-top:1px solid var(--line); }
.pdp__trust div { display:flex; align-items:center; gap:9px; font-size:13px; font-weight:600; color: var(--ink-2); }
.pdp__trust .icon { width:22px; height:22px; color: var(--green); }

/* Tabs */
.tabs { margin-top: 50px; }
.tabs__nav { display:flex; gap:4px; border-bottom:2px solid var(--line); overflow-x:auto; }
.tabs__btn { padding: 14px 20px; font-family:var(--font-head); font-weight:700; font-size:15.5px; color: var(--muted); border-bottom:3px solid transparent; margin-bottom:-2px; white-space:nowrap; }
.tabs__btn.on { color: var(--ink); border-bottom-color: var(--green); }
.tabs__btn:hover { color: var(--ink-2); }
.tabs__panel { padding: 26px 0; }
.tabs__panel:not(.on) { display:none; }

.spectable { width:100%; border-collapse:collapse; max-width: 720px; }
.spectable th, .spectable td { text-align:left; padding:12px 16px; border-bottom:1px solid var(--line-2); font-size:14px; }
.spectable th { width: 40%; color: var(--muted); font-weight:600; background: var(--mist-2); }
.spectable td { font-weight:600; color: var(--ink); }

.reviews-summary { display:flex; align-items:center; gap:26px; flex-wrap:wrap; margin-bottom:24px; }
.reviews-score { text-align:center; }
.reviews-score b { font-family:var(--font-head); font-size:48px; font-weight:900; color: var(--ink); display:block; line-height:1; }
.review { border-top:1px solid var(--line-2); padding:16px 0; }
.review__head { display:flex; align-items:center; gap:12px; margin-bottom:6px; }
.review__head .name { font-weight:700; color: var(--ink); }
.review__head .verified { font-size:11.5px; color: var(--green-dark); font-weight:700; display:inline-flex; align-items:center; gap:4px; }

/* ---------- 23. Toast / Mini-Cart ---------- */
.toast-wrap { position: fixed; right: 20px; bottom: 20px; z-index: 1000; display:flex; flex-direction:column; gap:10px; }
.toast {
  display:flex; align-items:center; gap:12px; background:#fff; border:1px solid var(--line);
  border-left:4px solid var(--green); border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: 14px 18px; min-width: 280px; max-width: 360px;
  animation: toastIn .3s cubic-bezier(.2,.9,.3,1.2);
}
.toast__ic { width:38px; height:38px; border-radius:50%; background: var(--green-tint); color: var(--green-dark); display:grid; place-items:center; flex:none; }
.toast__ic .icon { width:22px; height:22px; }
.toast b { font-family:var(--font-head); font-size:14px; color: var(--ink); display:block; }
.toast span { font-size:12.5px; color: var(--muted); }
@keyframes toastIn { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform: translateY(0); } }
.toast.out { opacity:0; transform: translateX(20px); transition: .3s; }

/* ---------- 24. Responsive ---------- */
@media (max-width: 1400px){
  .cat__grid { grid-template-columns: repeat(4,1fr); }
  .rail { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 1100px){
  .welten { grid-template-columns: repeat(3,1fr); }
  .rail, .rail--5 { grid-template-columns: repeat(3,1fr); }
  .mega__inner { grid-template-columns: repeat(3,1fr); }
  .mega__promo { display:none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px){
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order:-1; max-width: 460px; }
  .pdp { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .gallery__main { aspect-ratio: 1/1; flex: none; padding: 50px; }
  .gallery__main .screw-illus { width: 70%; height: auto; }
  .staffel__grid { grid-template-columns: 1fr; gap: 24px; padding: 30px; }
  .cat { grid-template-columns: 1fr; }
  .filters { position: static; }
  .filters-toggle { display:flex; }
}
@media (max-width: 860px){
  .search { display:none; }
  .nav__list { display:none; }
  .nav__meta { display:none; }
  .burger { display:grid; place-items:center; width:44px; height:44px; border-radius:8px; color: var(--ink); }
  .burger:hover { background: var(--mist); }
  .topbar__left .hide-sm { display:none; }
  .usp__grid { grid-template-columns: 1fr 1fr; }
  .usp__item:nth-child(3) { border-left:none; }
  .ratgeber { grid-template-columns: 1fr; }
  .welten { grid-template-columns: repeat(2,1fr); }
  .rail, .rail--5 { grid-template-columns: repeat(2,1fr); }
  .hero__promos { grid-template-columns: 1fr; }
  .cat__grid { grid-template-columns: 1fr 1fr; }
  .header__bar { gap:14px; }
}
@media (max-width: 560px){
  .welten, .rail, .rail--5, .cat__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__legal-in { flex-direction:column; align-items:flex-start; }
  .haction span { display:none; }
  .haction { min-width:0; padding:8px; }
  .section { padding: 40px 0; }
  .priceblock .big { font-size:32px; }
  .buybar { flex-wrap:wrap; }
}

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; visibility:hidden; }
.drawer.open { visibility:visible; }
.drawer__scrim { position:absolute; inset:0; background: rgba(20,30,25,.5); opacity:0; transition:.25s; }
.drawer.open .drawer__scrim { opacity:1; }
.drawer__panel { position:absolute; top:0; left:0; bottom:0; width: 86%; max-width: 360px; background:#fff; transform: translateX(-100%); transition: transform .28s ease; overflow-y:auto; padding-bottom: 40px; }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display:flex; align-items:center; justify-content:space-between; padding:16px; border-bottom:1px solid var(--line); }
.drawer__search { padding:14px 16px; }
.drawer__search .search__box { border-width:1.5px; }
.drawer__nav a { display:flex; align-items:center; justify-content:space-between; padding:14px 18px; border-bottom:1px solid var(--line-2); font-family:var(--font-head); font-weight:700; color: var(--ink); }
.drawer__nav a .icon { width:18px; height:18px; color: var(--green-dark); }
.drawer__close { width:40px; height:40px; display:grid; place-items:center; border-radius:8px; }
.drawer__close:hover { background: var(--mist); }

.filters-toggle { display:none; align-items:center; justify-content:center; gap:8px; width:100%; padding:13px; margin-bottom:16px; border:1.5px solid var(--ink-2); border-radius: var(--r-sm); font-family:var(--font-head); font-weight:700; }

/* Section helper */
.center { text-align:center; }
.mt-s{margin-top:10px}.mt{margin-top:18px}.mt-l{margin-top:30px}
.mb{margin-bottom:18px}
.viewall { display:flex; justify-content:center; margin-top:30px; }

/* ---------- 25. Produkt-Karussell ---------- */
.carousel { position: relative; }
.carousel__actions { display:flex; align-items:center; gap:18px; }
.carousel__nav { display:flex; gap:8px; }
.carousel__btn { width:46px; height:46px; border-radius:50%; border:1.5px solid var(--line); background:#fff; display:grid; place-items:center; color:var(--ink); transition: border-color .15s, color .15s, background .15s, box-shadow .15s; }
.carousel__btn:hover:not(:disabled) { border-color: var(--green); color: var(--green-dark); box-shadow: var(--shadow-sm); }
.carousel__btn:disabled { opacity:.32; cursor:default; color: var(--muted); }
.carousel__btn .icon { width:22px; height:22px; }
.carousel__track {
  display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x proximity; scroll-behavior:smooth;
  padding:4px 2px 12px; scrollbar-width:none; -ms-overflow-style:none;
}
.carousel__track::-webkit-scrollbar { display:none; }
.carousel__track > .pcard { flex:0 0 270px; scroll-snap-align:start; }
@media (max-width: 860px){
  .carousel__nav { display:none; }
  .carousel__track > .pcard { flex-basis: 78%; }
}
@media (max-width: 560px){ .carousel__track > .pcard { flex-basis: 86%; } }

/* ---------- 26. Konfigurator ---------- */
.konf-hero { background: linear-gradient(180deg,#fff, var(--mist)); border-bottom:1px solid var(--line); padding: 24px 0 0; }
.konf-hero__eyebrow { display:inline-flex; align-items:center; gap:8px; font-family:var(--font-head); font-weight:800; font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--green-dark); background:var(--green-tint); padding:6px 12px; border-radius:var(--r-pill); }
.konf-hero h1 { font-size: clamp(28px,3.4vw,44px); font-weight:900; letter-spacing:-.02em; margin:14px 0 8px; }
.konf-hero h1 em { color: var(--green); font-style:normal; }
.konf-hero p { color: var(--ink-2); max-width: 64ch; font-size:16px; }
.konf-tabs { display:flex; gap:6px; margin-top:24px; overflow-x:auto; scrollbar-width:none; }
.konf-tabs::-webkit-scrollbar { display:none; }
.konf-tab { display:flex; align-items:center; gap:9px; padding:13px 20px; border:1.5px solid var(--line); border-bottom:none; border-radius:10px 10px 0 0; background:var(--mist-2); font-family:var(--font-head); font-weight:700; font-size:14.5px; color:var(--muted); white-space:nowrap; }
.konf-tab .icon { width:20px; height:20px; }
.konf-tab.is-on { background:#fff; color:var(--ink); box-shadow:0 3px 0 var(--green) inset; }
.konf-tab.is-soon { opacity:.65; cursor:not-allowed; }
.konf-tab .soon { font-size:9.5px; font-weight:800; text-transform:uppercase; letter-spacing:.04em; color:var(--orange-dark); background:#fff3e6; padding:2px 6px; border-radius:5px; }

.konf { display:grid; grid-template-columns: 0.92fr 1.08fr; gap: 40px; align-items:start; padding-top: 30px; }

/* Vorschau */
.konf__preview { position: sticky; top: calc(var(--header-h) + 16px); }
.konf__stage { border:1px solid var(--line); border-radius: var(--r-lg); background: radial-gradient(120% 80% at 50% 8%, #fff, var(--mist)); padding: 20px; display:grid; place-items:center; }
.konf__stage svg { width: 100%; height: 460px; }
.konf__artnr { display:flex; align-items:center; justify-content:space-between; margin-top:14px; font-size:13px; color:var(--muted); flex-wrap:wrap; gap:8px; }
.konf__artnr b { font-family: ui-monospace, Menlo, monospace; color:var(--ink); font-size:14px; }
.konf__chips { display:flex; flex-wrap:wrap; gap:7px; margin-top:14px; }
.konf__chips .c { font-size:12px; font-weight:600; color:var(--ink-2); background:#fff; border:1px solid var(--line); padding:5px 11px; border-radius:var(--r-pill); }
.konf__chips .c b { color:var(--green-dark); font-weight:800; }

.opt-group { padding: 18px 0; border-bottom:1px solid var(--line-2); }
.opt-group:first-child { padding-top:0; }
.opt-head { display:flex; align-items:center; gap:10px; margin-bottom:13px; }
.opt-head h3 { font-size:16px; display:flex; align-items:center; gap:9px; flex:1; }
.opt-head .step { width:25px; height:25px; border-radius:50%; background:var(--green-tint); color:var(--green-dark); display:grid; place-items:center; font-family:var(--font-head); font-weight:800; font-size:12px; flex:none; }
.opt-head .val { font-size:13px; font-weight:700; color:var(--green-dark); text-align:right; }

.opt-tiles { display:grid; grid-template-columns: repeat(3,1fr); gap:10px; }
.opt-tile { display:flex; flex-direction:column; gap:7px; align-items:flex-start; padding:13px; border:1.5px solid var(--line); border-radius:10px; cursor:pointer; transition:.15s; background:#fff; text-align:left; }
.opt-tile .icon { width:26px; height:26px; color:var(--ink-2); }
.opt-tile b { font-size:13.5px; font-family:var(--font-head); color:var(--ink); }
.opt-tile span { font-size:11px; color:var(--muted); }
.opt-tile:hover { border-color:var(--green); }
.opt-tile.is-on { border-color:var(--green); background:var(--green-tint); }
.opt-tile.is-on .icon { color: var(--green-dark); }

.opt-icons { display:grid; grid-template-columns: repeat(4,1fr); gap:10px; }
.opt-ic { display:flex; flex-direction:column; align-items:center; gap:7px; padding:12px 6px; border:1.5px solid var(--line); border-radius:10px; cursor:pointer; transition:.15s; background:#fff; }
.opt-ic .icon { width:30px; height:30px; color:var(--ink-2); }
.opt-ic span { font-size:11px; font-weight:600; color:var(--body); text-align:center; line-height:1.15; }
.opt-ic:hover { border-color:var(--green); }
.opt-ic.is-on { border-color:var(--green); background:var(--green-tint); }
.opt-ic.is-on .icon { color:var(--green-dark); }

.opt-pills { display:flex; flex-wrap:wrap; gap:8px; }
.opt-pill { padding:9px 16px; border:1.5px solid var(--line); border-radius:var(--r-pill); cursor:pointer; font-weight:700; font-family:var(--font-head); font-size:14px; color:var(--ink-2); background:#fff; transition:.15s; }
.opt-pill:hover { border-color:var(--green); }
.opt-pill.is-on { border-color:var(--green); background:var(--green); color:#fff; }

.opt-swatches { display:grid; grid-template-columns: repeat(4,1fr); gap:10px; }
.opt-sw { display:flex; flex-direction:column; gap:7px; align-items:center; padding:11px 8px; border:1.5px solid var(--line); border-radius:10px; cursor:pointer; transition:.15s; background:#fff; }
.opt-sw i { width:34px; height:34px; border-radius:50%; border:1px solid rgba(0,0,0,.12); display:block; }
.opt-sw span { font-size:11px; font-weight:600; color:var(--body); text-align:center; }
.opt-sw:hover { border-color:var(--green); }
.opt-sw.is-on { border-color:var(--green); background:var(--green-tint); }
.opt-sw.is-disabled { opacity:.32; pointer-events:none; }

.opt-seg { display:inline-flex; border:1.5px solid var(--line); border-radius:var(--r-sm); overflow:hidden; }
.opt-seg button { padding:11px 20px; font-family:var(--font-head); font-weight:700; font-size:14px; color:var(--muted); background:#fff; }
.opt-seg button.is-on { background:var(--green); color:#fff; }

.opt-checks { display:flex; flex-wrap:wrap; gap:10px; }
.opt-check { display:flex; align-items:center; gap:9px; padding:11px 15px; border:1.5px solid var(--line); border-radius:10px; cursor:pointer; font-weight:600; font-size:13.5px; color:var(--ink-2); user-select:none; }
.opt-check input { width:18px; height:18px; accent-color:var(--green); }
.opt-check.is-on { border-color:var(--green); background:var(--green-tint); color:var(--green-700); }

.konf__summary { margin-top: 22px; border:1px solid var(--line); border-radius: var(--r); background: var(--mist-2); padding: 20px; position: sticky; bottom: 14px; box-shadow: var(--shadow); }
.konf__sumtop { display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.konf__price .big { font-family:var(--font-head); font-weight:900; font-size:34px; color:var(--ink); line-height:1; }
.konf__price .net { font-size:13px; color:var(--muted); margin-top:6px; }
.konf__price .net b { color:var(--ink-2); }
.konf__stock { display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:700; color:var(--green-dark); }
.konf__stock .dot { width:8px; height:8px; border-radius:50%; background:var(--green); box-shadow:0 0 0 3px var(--green-tint); }
.konf__buy { display:flex; gap:12px; align-items:stretch; margin-top:16px; }
.konf__buy .btn--cart { flex:1; font-size:16px; }
.konf__note { font-size:12px; color:var(--muted); margin-top:11px; display:flex; align-items:center; gap:7px; }
.konf__note .icon { width:15px; height:15px; color:var(--green); }

@media (max-width: 980px){
  .konf { grid-template-columns: 1fr; gap: 26px; }
  .konf__preview { position: static; }
  .konf__stage svg { height: 340px; }
  .konf__summary { position: static; }
}

/* ---------- 25. Warenkorb ---------- */
.cart { display:grid; grid-template-columns: 1fr 384px; gap: 30px; align-items:start; padding: 6px 0 64px; }
.cart__head { display:flex; align-items:baseline; gap:14px; margin-bottom:18px; }
.cart__head h1 { font-size:30px; }
.cart__count { color: var(--muted); font-weight:600; font-size:14px; }

.cart__list { border:1px solid var(--line); border-radius: var(--r); overflow:hidden; background:#fff; box-shadow: var(--shadow-sm); }
.citem { display:grid; grid-template-columns: 92px 1fr auto 96px 40px; gap:18px; align-items:center; padding:16px 18px; border-bottom:1px solid var(--line-2); }
.citem:last-child { border-bottom:none; }
.citem__media { width:92px; height:92px; border:1px solid var(--line); border-radius: var(--r-sm); background: var(--mist-2); display:grid; place-items:center; padding:10px; }
.citem__media .screw-illus { width:100%; height:100%; color: var(--metal-2); }
.citem__name { font-family:var(--font-head); font-weight:700; color: var(--ink); font-size:15.5px; line-height:1.2; }
a.citem__name:hover { color: var(--green-dark); }
.citem__meta { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size:12px; color: var(--muted); margin-top:5px; }
.citem__unit { font-size:13px; color: var(--muted); margin-top:6px; }
.citem__line { font-family:var(--font-head); font-weight:800; font-size:17px; color: var(--ink); white-space:nowrap; text-align:right; }
.citem__rm { width:36px; height:36px; border-radius: var(--r-sm); color: var(--muted); display:grid; place-items:center; transition: background .15s, color .15s; }
.citem__rm:hover { background:#fdeceb; color: var(--danger); }
.citem__rm .icon { width:18px; height:18px; }
.citem__qty .qtystep button { width:38px; font-size:18px; }
.citem__qty .qtystep input { width:46px; font-size:15px; }

.cart__actions { display:flex; justify-content:space-between; align-items:center; gap:14px; margin-top:18px; flex-wrap:wrap; }
.cart__actions .btn .icon { width:18px; height:18px; }
.btn--ghostlink { background:none; border:none; color: var(--muted); font-family:var(--font-body); font-weight:600; padding:8px 4px; }
.btn--ghostlink:hover { color: var(--danger); background:none; }

.cart__empty { border:1px dashed var(--metal-2); border-radius: var(--r); padding:52px 24px; text-align:center; background: var(--mist-2); }
.cart__empty .icon { width:46px; height:46px; color: var(--metal-2); margin:0 auto 14px; }
.cart__empty h2 { font-size:20px; margin-bottom:6px; }
.cart__empty p { color: var(--muted); margin-bottom:18px; }

.cart__aside { position: sticky; top: calc(var(--header-h) + 14px); display:flex; flex-direction:column; gap:16px; }
.summary { border:1px solid var(--line); border-radius: var(--r); padding: 20px; background: var(--mist-2); }
.summary h2 { font-size:18px; margin-bottom:12px; }
.summary__row { display:flex; justify-content:space-between; gap:12px; padding:7px 0; font-size:14.5px; color: var(--ink-2); }
.summary__row span:last-child { font-weight:700; color: var(--ink); white-space:nowrap; }
.summary__row--muted { color: var(--muted); font-size:13px; padding-top:0; }
.summary__row--muted span:last-child { color: var(--muted); font-weight:600; }
.summary__ship { display:flex; flex-direction:column; gap:8px; font-size:12.8px; color: var(--green-dark); font-weight:600; padding:8px 0 4px; }
.summary__ship > span { display:inline-flex; align-items:center; gap:7px; }
.summary__ship .icon { width:16px; height:16px; flex:none; }
.shipbar { height:6px; border-radius:999px; background: var(--line); overflow:hidden; }
.shipbar i { display:block; height:100%; background: var(--green); border-radius:999px; transition: width .35s ease; }
.summary__total { display:flex; justify-content:space-between; align-items:baseline; gap:12px; margin-top:8px; padding-top:14px; border-top:2px solid var(--line); }
.summary__total span:first-child { font-family:var(--font-head); font-weight:800; font-size:16px; color: var(--ink); }
.summary__total span:last-child { font-family:var(--font-head); font-weight:900; font-size:26px; color: var(--ink); letter-spacing:-.01em; white-space:nowrap; }
.summary__net { text-align:right; font-size:12.5px; color: var(--muted); margin:2px 0 16px; }
.summary .btn--block { margin-top:2px; }
.summary__trust { display:grid; grid-template-columns:1fr 1fr; gap:9px 14px; margin-top:18px; }
.summary__trust > div { display:flex; align-items:center; gap:8px; font-size:12.5px; color: var(--body); }
.summary__trust .icon { width:17px; height:17px; flex:none; color: var(--green-dark); }
.summary__pay { display:flex; flex-wrap:wrap; gap:6px; margin-top:16px; padding-top:14px; border-top:1px solid var(--line); }

.summary__voucher { border:1px solid var(--line); border-radius: var(--r); padding:16px 18px; background:#fff; }
.summary__voucher label { display:block; font-family:var(--font-head); font-weight:700; font-size:13px; color: var(--ink); margin-bottom:9px; }
.voucher__box { display:flex; gap:8px; }
.voucher__box input { flex:1; min-width:0; border:1.5px solid var(--line); border-radius: var(--r-sm); padding:9px 12px; font-size:14px; }
.voucher__box input:focus { outline:none; border-color: var(--green); }

@media (max-width: 980px){
  .cart { grid-template-columns: 1fr; }
  .cart__aside { position: static; }
}
@media (max-width: 620px){
  .citem {
    grid-template-columns: 64px 1fr 40px;
    grid-template-areas: "media info rm" "media qty line";
    gap:8px 14px;
  }
  .citem__media { width:64px; height:64px; grid-area:media; align-self:start; }
  .citem__info { grid-area:info; }
  .citem__qty  { grid-area:qty; }
  .citem__line { grid-area:line; align-self:center; }
  .citem__rm   { grid-area:rm; align-self:start; }
}

/* Warenkorb — Grundpreis (PAngV) + Vertrauen/Recht */
.citem__base { font-size:12px; color: var(--muted); margin-top:3px; }
.summary__vlink, .summary__legal a { color: var(--green-dark); text-decoration: underline; }
.summary__vlink { font-size:12px; font-weight:600; }
.summary__legal { font-size:11.5px; line-height:1.55; color: var(--muted); margin:12px 0 0; }
.summary__assure { margin:14px 0 2px; display:flex; flex-direction:column; gap:8px; padding:12px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.assure__row { display:flex; align-items:center; gap:9px; font-size:12.5px; color: var(--ink-2); }
.assure__row b { color: var(--ink); font-weight:700; }
.assure__row .icon { width:18px; height:18px; flex:none; color: var(--green-dark); }
