/* ==========================================================================
   mgh24.de — Redesign v2 "Steel & Signal"
   Barlow Condensed (Display) + Inter (Text)
   WCAG-AA-geprüfte Farbwerte (Kontraste rechnerisch verifiziert):
     - Text-Rot  #b21807 auf Weiß  = 6.94:1
     - Weiß auf Button-Rot #c21f0d = 6.01:1
     - Akzent-Rot hell #ff7a66 auf Dunkel #16181d = 6.96:1
     - Ink #1a1d23 auf #f4f6f8 = 15.5:1
   ========================================================================== */

:root {
  --ink: #1a1d23;
  --ink-soft: #565d68;        /* 6.6:1 auf Weiß */
  --steel-950: #101216;
  --steel-900: #16181d;
  --steel-800: #22252d;
  --steel-700: #2e323c;
  --line: #dfe3e9;
  --line-dark: #343945;
  --bg: #f4f6f8;
  --card: #ffffff;
  --red: #c21f0d;             /* Buttons, Weiß darauf: 6.0:1 */
  --red-text: #b21807;        /* Links/Text auf Weiß: 6.9:1 */
  --red-deep: #9a1506;
  --red-bright: #dc2410;      /* nur dekorativ / große Flächen */
  --red-on-dark: #ff7a66;     /* Akzent auf dunklem Grund: 7.0:1 */
  --green-text: #0c6b33;      /* 6.6:1 auf Weiß */
  --green-bg: #e5f4ea;
  --on-dark: #e8eaee;
  --on-dark-muted: #b8bec9;
  --focus: #1355c9;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(16,18,22,.06), 0 8px 24px -12px rgba(16,18,22,.18);
  --shadow-lift: 0 2px 4px rgba(16,18,22,.08), 0 18px 40px -16px rgba(16,18,22,.28);
  --font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-text: "Inter", "Segoe UI", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: .01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p { margin: 0 0 1em; }

a { color: var(--red-text); text-underline-offset: 3px; }
a:hover { color: var(--red-deep); }

/* Sichtbarer Fokus überall — niemals outline:none ohne Ersatz */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}
.on-dark :focus-visible, .site-header :focus-visible, .site-footer :focus-visible {
  outline-color: #8ab4ff;
}

.container { width: min(1200px, 100% - 2.5rem); margin-inline: auto; }

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 200;
  background: var(--steel-900);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Topbar (USP) ---------- */
.topbar {
  background: var(--steel-950);
  color: var(--on-dark);
  font-size: .85rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 2.4rem; padding-block: .3rem;
}
.topbar-usp { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.topbar-usp strong { color: #fff; font-weight: 600; }
.topbar-right { display: flex; gap: 1.2rem; white-space: nowrap; }
.topbar-right a { color: var(--on-dark-muted); text-decoration: none; }
.topbar-right a:hover { color: #fff; text-decoration: underline; }

/* Flaggen-Chips (CSS, keine externen Bilder) */
.flag {
  display: inline-block; width: 21px; height: 14px;
  border-radius: 2px; overflow: hidden; flex: none;
  outline: 1px solid rgba(255,255,255,.25); outline-offset: -1px;
}
.flag-de { background: linear-gradient(#000 33%, #d00 33% 66%, #ffce00 66%); }
.flag-at { background: linear-gradient(#ed2939 33%, #fff 33% 66%, #ed2939 66%); }
.flag-ch { background: #d52b1e; position: relative; }
.flag-ch::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(#fff, #fff) center / 8px 2.6px no-repeat,
    linear-gradient(#fff, #fff) center / 2.6px 8px no-repeat;
}
.flag-benelux {
  display: inline-block; padding: 0 .4rem; border-radius: 2px;
  background: var(--steel-700); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; line-height: 14px;
  vertical-align: middle;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--steel-900);
  color: var(--on-dark);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.6rem;
  padding-block: .85rem;
}

/* Logo / Wortmarke */
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: #fff; }
.brand-badge {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem; letter-spacing: .02em;
  background: var(--red-bright); color: #fff;
  padding: .18rem .55rem .22rem;
  border-radius: 6px;
  line-height: 1.15;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.22);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.02rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: #fff;
}
.brand-claim { font-size: .7rem; color: var(--on-dark-muted); letter-spacing: .02em; }

/* Suche */
.search-form { display: flex; max-width: 560px; width: 100%; }
.search-form input[type="search"] {
  flex: 1; min-width: 0;
  font: inherit; font-size: .95rem;
  padding: .65rem .95rem;
  border: 1px solid var(--line-dark);
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: var(--steel-800); color: #fff;
}
.search-form input::placeholder { color: var(--on-dark-muted); }
.search-form input:focus-visible { outline-offset: -3px; }
.search-form button {
  font: inherit; font-weight: 600;
  padding: .65rem 1.1rem;
  border: none; border-radius: 0 8px 8px 0;
  background: var(--red); color: #fff;
  cursor: pointer;
}
.search-form button:hover { background: var(--red-deep); }

/* Header-Aktionen */
.header-actions { display: flex; gap: .4rem; }
.header-actions a {
  display: flex; flex-direction: column; align-items: center; gap: .1rem;
  color: var(--on-dark); text-decoration: none;
  font-size: .72rem; padding: .4rem .6rem; border-radius: 8px;
}
.header-actions a:hover { background: var(--steel-800); color: #fff; }
.header-actions svg { width: 22px; height: 22px; }
.cart-link { position: relative; }
.cart-count {
  position: absolute; top: 0; right: .2rem;
  background: var(--red-bright); color: #fff;
  font-size: .62rem; font-weight: 700;
  min-width: 1.05rem; height: 1.05rem;
  display: grid; place-items: center;
  border-radius: 99px; padding-inline: .2rem;
}

/* ---------- Hauptnavigation ---------- */
.main-nav { border-top: 1px solid var(--line-dark); position: relative; }
.nav-toggle {
  display: none;
  font: inherit; font-weight: 600;
  width: 100%; text-align: left;
  background: none; border: none; color: #fff;
  padding: .8rem 0; cursor: pointer;
  align-items: center; gap: .6rem;
}
.nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: stretch;
}
.nav-list > li { position: relative; }
.nav-list > li > a, .nav-list > li > button {
  display: flex; align-items: center; gap: .4rem;
  font: inherit; font-size: .92rem; font-weight: 500;
  color: var(--on-dark);
  text-decoration: none;
  padding: .78rem .95rem;
  background: none; border: none; cursor: pointer;
  border-bottom: 3px solid transparent;
}
.nav-list > li > a:hover, .nav-list > li > button:hover,
.nav-list > li > a[aria-current="page"] {
  color: #fff; border-bottom-color: var(--red-bright);
}
.nav-list > li > a[aria-current="page"] { font-weight: 700; }

.nav-all-btn { font-weight: 700 !important; color: #fff !important; }
.nav-all-btn .caret { transition: transform .15s ease; }
.nav-all-btn[aria-expanded="true"] .caret { transform: rotate(180deg); }

/* Mega-Menü (Tastatur: Button + JS, plus :focus-within als Netz) */
.mega {
  position: absolute; left: 0; top: 100%;
  width: min(920px, calc(100vw - 2rem));
  background: var(--card); color: var(--ink);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 1.4rem 1.6rem 1.6rem;
  display: none;
  z-index: 90;
}
.mega.open, .nav-item-mega:focus-within .mega { display: grid; }
.mega { grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)); gap: 1.2rem 1.4rem; }
.mega h3 {
  font-size: .82rem; font-family: var(--font-text);
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--ink-soft); margin-bottom: .5rem;
  border-bottom: 2px solid var(--line); padding-bottom: .35rem;
}
.mega ul { list-style: none; margin: 0; padding: 0; }
.mega li a {
  display: block; padding: .28rem 0;
  color: var(--ink); text-decoration: none; font-size: .9rem;
}
.mega li a:hover { color: var(--red-text); text-decoration: underline; }
.mega li a strong { color: var(--red-text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font: inherit; font-weight: 600; font-size: 1rem;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, transform .1s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.06); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }
.btn-ghost { border-color: var(--steel-900); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--steel-900); color: #fff; }
.btn-lg { font-size: 1.08rem; padding: .95rem 2rem; }

/* ---------- Hero ---------- */
.hero { background: var(--steel-900); color: var(--on-dark); overflow: hidden; }
.hero .container {
  display: grid;
  grid-template-columns: minmax(320px, 5fr) 6fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.2rem, 5vw, 4rem);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-on-dark);
  margin-bottom: 1rem;
}
.hero-kicker::before { content: ""; width: 26px; height: 3px; background: var(--red-bright); border-radius: 2px; }
.hero h1 { color: #fff; text-transform: uppercase; letter-spacing: .015em; }
.hero h1 .thin { font-weight: 400; color: var(--on-dark-muted); }
.hero-sub { font-size: 1.05rem; color: var(--on-dark-muted); max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 2.2rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
}
.hero-stats div { line-height: 1.3; }
.hero-stats .num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: #fff;
  display: block;
}
.hero-stats .lbl { font-size: .8rem; color: var(--on-dark-muted); }

/* Slider */
.slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.slides { position: relative; aspect-ratio: 750 / 300; background: var(--steel-800); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.1rem .8rem;
  background: linear-gradient(transparent, rgba(10,12,15,.82));
  color: #fff; font-size: .88rem; font-weight: 600;
}
.slider-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .55rem .7rem;
  background: var(--steel-800);
}
.slider-btn {
  background: none; border: 2px solid var(--line-dark); border-radius: 8px;
  color: var(--on-dark); cursor: pointer;
  width: 2.3rem; height: 2.3rem;
  display: grid; place-items: center; font-size: 1.05rem;
}
.slider-btn:hover { background: var(--steel-700); color: #fff; border-color: var(--on-dark-muted); }
.slider-dots { display: flex; gap: .45rem; list-style: none; margin: 0; padding: 0; }
.slider-dots button {
  width: .8rem; height: .8rem; border-radius: 50%;
  border: 2px solid var(--on-dark-muted); background: transparent; cursor: pointer;
  padding: 0;
}
.slider-dots button[aria-current="true"] { background: var(--red-bright); border-color: var(--red-bright); }
.slider-dots button:hover { border-color: #fff; }
.slider-pause {
  background: none; border: none; color: var(--on-dark-muted);
  font-size: .78rem; cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
  padding: .3rem;
}
.slider-pause:hover { color: #fff; }

/* ---------- USP-Leiste ---------- */
.usp-band { background: var(--card); border-bottom: 1px solid var(--line); }
.usp-band .container {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1rem; padding-block: 1.1rem;
}
.usp {
  display: flex; gap: .8rem; align-items: flex-start;
  font-size: .88rem; line-height: 1.4;
}
.usp svg { width: 26px; height: 26px; flex: none; color: var(--red-text); margin-top: .1rem; }
.usp strong { display: block; font-size: .93rem; }
.usp span { color: var(--ink-soft); }

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem;
}
.section-head h2 { margin: 0; text-transform: uppercase; }
.section-head .accent { color: var(--red-text); }
.section-head p { margin: 0; color: var(--ink-soft); }
.section-link { font-weight: 600; white-space: nowrap; }
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-text); display: block; margin-bottom: .4rem;
  font-family: var(--font-text);
}

/* ---------- Highlight-Kacheln (Bilder nur 100×75 → kompakt einsetzen) ---------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.tile {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  position: relative;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: #c9cfd8; color: var(--ink); }
.tile-thumb {
  width: 84px; height: 66px; flex: none;
  border-radius: 8px; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center;
}
.tile-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tile-body { min-width: 0; }
.tile-body strong { display: block; font-size: 1rem; line-height: 1.3; }
.tile-body span { font-size: .82rem; color: var(--ink-soft); }
.tile-arrow {
  margin-left: auto; flex: none;
  color: var(--red-text); font-weight: 700; font-size: 1.2rem;
  transition: transform .15s ease;
}
.tile:hover .tile-arrow { transform: translateX(4px); }

/* ---------- Sortiments-Verzeichnis ---------- */
.dir-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1rem;
}
.dir-col {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}
.dir-col h3 {
  font-size: 1.1rem; text-transform: uppercase; letter-spacing: .05em;
  border-bottom: 3px solid var(--red-bright);
  padding-bottom: .4rem; margin-bottom: .7rem;
  display: inline-block;
}
.dir-col ul { list-style: none; margin: 0; padding: 0; }
.dir-col li a {
  display: block; padding: .22rem 0;
  color: var(--ink); text-decoration: none; font-size: .9rem;
}
.dir-col li a:hover { color: var(--red-text); text-decoration: underline; }

/* ---------- Produkt-Teaser (Startseite) ---------- */
.feature-product {
  background: var(--steel-900); color: var(--on-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; grid-template-columns: minmax(260px, 2fr) 3fr;
  box-shadow: var(--shadow-lift);
}
.feature-product-img { background: #fff; display: grid; place-items: center; padding: 1rem; }
.feature-product-img img { max-height: 340px; width: auto; }
.feature-product-body { padding: clamp(1.5rem, 3.5vw, 2.8rem); align-self: center; }
.feature-product-body h2 { color: #fff; text-transform: uppercase; }
.feature-product-body .price {
  font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; color: #fff;
}
.feature-product-body .price small { font-size: .85rem; font-family: var(--font-text); font-weight: 400; color: var(--on-dark-muted); }
.feature-specs { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.4rem; padding: 0; }
.feature-specs li {
  font-size: .82rem; padding: .3rem .7rem;
  background: var(--steel-800); border: 1px solid var(--line-dark);
  border-radius: 99px;
}

/* ---------- Über-uns / Text ---------- */
.about { background: var(--card); border-block: 1px solid var(--line); }
.about .container {
  display: grid; grid-template-columns: 2fr 1fr; gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.about-text p { color: #3a404a; max-width: 68ch; }
.about-sign { font-weight: 600; color: var(--ink); }
.about-aside {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem;
  align-self: start;
}
.about-aside h3 { font-size: 1.15rem; text-transform: uppercase; }
.about-aside ul { margin: 0; padding-left: 1.1rem; font-size: .92rem; color: var(--ink-soft); }
.about-aside li { margin-bottom: .45rem; }
.about-aside li::marker { color: var(--red-text); }

/* ---------- Footer ---------- */
.site-footer { background: var(--steel-950); color: var(--on-dark-muted); font-size: .9rem; }
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; padding-block: 2.8rem 2rem;
}
.site-footer h3 {
  color: #fff; font-family: var(--font-text);
  font-size: .82rem; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: .8rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .4rem; }
.site-footer a { color: var(--on-dark-muted); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand .brand-word { font-size: .95rem; }
.footer-usp { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; flex-wrap: wrap; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.1rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .8rem;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding-block: 1rem 0; font-size: .85rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; }
.breadcrumbs li { display: flex; align-items: center; gap: .35rem; }
.breadcrumbs li + li::before { content: "›"; color: var(--ink-soft); }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--red-text); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- Kategorieseite ---------- */
.cat-hero { padding-block: 1.4rem 0; }
.cat-hero h1 { text-transform: uppercase; margin-bottom: .3rem; }
.cat-hero .lead { color: var(--ink-soft); max-width: 72ch; margin-bottom: 0; }
.cat-count { color: var(--red-text); font-weight: 700; }

.filter-bar {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-block: 1.4rem;
}
.filter-chip {
  font: inherit; font-size: .88rem; font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 99px;
  border: 2px solid #c3cad4;
  background: var(--card); color: var(--ink);
  cursor: pointer;
  transition: background .12s ease, border-color .12s ease;
}
.filter-chip:hover { border-color: var(--steel-900); }
.filter-chip[aria-pressed="true"] {
  background: var(--steel-900); border-color: var(--steel-900); color: #fff;
}
.filter-status { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; }

.subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: .9rem;
  padding-bottom: .5rem;
}
.subcat-grid .tile[hidden] { display: none; }
.tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg); border: 1px solid var(--line);
  padding: .1rem .5rem; border-radius: 4px;
  margin-top: .3rem;
}
.tag-hot { color: var(--red-text); border-color: #f0c7c0; background: #fdf1ef; }

/* Cross-Sell-Callout */
.callout {
  margin-block: 2.5rem;
  background: var(--steel-900); color: var(--on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  box-shadow: var(--shadow-lift);
}
.callout-img {
  width: 130px; height: 130px; flex: none;
  background: #fff; border-radius: var(--radius);
  display: grid; place-items: center; overflow: hidden;
}
.callout-img img { width: 100%; height: 100%; object-fit: cover; }
.callout-body { flex: 1 1 300px; }
.callout-body h2 { color: #fff; font-size: 1.5rem; text-transform: uppercase; margin-bottom: .3rem; }
.callout-body p { color: var(--on-dark-muted); margin-bottom: 0; }

/* ---------- Produktseite ---------- */
.product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 7fr) minmax(300px, 5fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
  padding-block: 1.5rem 0;
}

/* Galerie */
.gallery-main {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.gallery-main img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #fff; }
.gallery-badge {
  position: absolute; top: .9rem; left: .9rem;
  background: var(--red-bright); color: #fff;
  font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 6px;
}
.gallery-thumbs { display: flex; gap: .7rem; margin-top: .8rem; }
.gallery-thumbs button {
  flex: 1; max-width: 120px;
  padding: 0; background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
}
.gallery-thumbs button img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.gallery-thumbs button:hover { border-color: var(--ink-soft); }
.gallery-thumbs button[aria-current="true"] { border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }

/* Kauf-Box */
.buy-box h1 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: .2rem; }
.product-meta { font-size: .84rem; color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: .3rem 1.1rem; margin-bottom: 1.1rem; }
.product-meta dt { display: inline; font-weight: 600; }
.product-meta dd { display: inline; margin: 0; }
.product-meta > div { display: inline; }

.stock {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green-bg); color: var(--green-text);
  font-weight: 600; font-size: .9rem;
  padding: .4rem .9rem; border-radius: 99px;
  margin-bottom: 1.1rem;
}
.stock::before {
  content: ""; width: .6rem; height: .6rem; border-radius: 50%;
  background: #14903f;
  box-shadow: 0 0 0 3px rgba(20,144,63,.2);
}

.price-row { display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; margin-bottom: .2rem; }
.price-big {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.3rem, 4vw, 3rem);
  color: var(--ink); line-height: 1;
}
.price-note { font-size: .82rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.price-note a { color: var(--ink-soft); }

.buy-controls { display: flex; gap: .8rem; align-items: stretch; margin-bottom: 1rem; flex-wrap: wrap; }
.qty {
  display: flex; align-items: center;
  border: 2px solid #c3cad4; border-radius: var(--radius);
  background: #fff; overflow: hidden;
}
.qty button {
  font: inherit; font-size: 1.15rem; font-weight: 600;
  width: 2.6rem; align-self: stretch;
  background: none; border: none; cursor: pointer; color: var(--ink);
}
.qty button:hover { background: var(--bg); }
.qty input {
  width: 3rem; text-align: center;
  font: inherit; font-weight: 600;
  border: none; -moz-appearance: textfield; appearance: textfield;
}
.qty input::-webkit-inner-spin-button, .qty input::-webkit-outer-spin-button { appearance: none; margin: 0; }
.btn-cart { flex: 1 1 220px; }
.btn-cart svg { width: 20px; height: 20px; }

.buy-usps { list-style: none; margin: 1.2rem 0 0; padding: 1.1rem 0 0; border-top: 1px solid var(--line); }
.buy-usps li { display: flex; gap: .6rem; align-items: flex-start; font-size: .89rem; margin-bottom: .55rem; color: #3a404a; }
.buy-usps svg { width: 19px; height: 19px; flex: none; color: var(--green-text); margin-top: .15rem; }
.buy-usps .flags { display: inline-flex; gap: .3rem; vertical-align: middle; margin-left: .2rem; }

/* Produktdetails */
.product-details { padding-block: clamp(2rem, 4vw, 3rem); }
.detail-grid {
  display: grid; grid-template-columns: 3fr 2fr; gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.detail-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.3rem, 2.5vw, 2rem);
  box-shadow: var(--shadow);
}
.detail-card h2 { text-transform: uppercase; font-size: 1.5rem; }

.spec-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.spec-table caption { text-align: left; font-weight: 600; padding-bottom: .5rem; position: absolute; clip: rect(0 0 0 0); }
.spec-table th, .spec-table td { text-align: left; padding: .6rem .4rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { font-weight: 600; width: 46%; color: var(--ink); }
.spec-table td { color: #3a404a; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

.key-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: .8rem; margin-bottom: 1.6rem; }
.key-fact {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .8rem .9rem;
  box-shadow: var(--shadow);
}
.key-fact .num { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; display: block; line-height: 1.1; }
.key-fact .lbl { font-size: .76rem; color: var(--ink-soft); }

.back-row { padding-bottom: 2.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero .container { grid-template-columns: 1fr; }
  .feature-product { grid-template-columns: 1fr; }
  .feature-product-img img { max-height: 260px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .header-main {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand actions" "search search";
  }
  .brand { grid-area: brand; }
  .search-form { grid-area: search; max-width: none; }
  .header-actions { grid-area: actions; }

  .nav-toggle { display: flex; }
  .nav-list { display: none; flex-direction: column; padding-bottom: .8rem; }
  .nav-list.open { display: flex; }
  .nav-list > li > a, .nav-list > li > button { width: 100%; border-bottom: none; border-left: 3px solid transparent; }
  .nav-list > li > a:hover, .nav-list > li > a[aria-current="page"] { border-left-color: var(--red-bright); }
  .mega { position: static; width: auto; box-shadow: none; border-radius: var(--radius); margin: .3rem 0 .6rem; }

  .product-layout { grid-template-columns: 1fr; }
  .about .container { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
}

@media (max-width: 560px) {
  .header-main { grid-template-columns: minmax(0, 1fr) auto; }
  .brand { gap: .55rem; min-width: 0; }
  .brand-badge { font-size: 1.2rem; }
  .brand-word { font-size: .78rem; letter-spacing: .13em; }
  .brand-claim { font-size: .6rem; }
  .header-actions a { padding: .35rem .4rem; font-size: .66rem; }
  .footer-main { grid-template-columns: 1fr; gap: 1.4rem; }
  .hero-stats { gap: 1.2rem; }
  .buy-controls { flex-direction: column; align-items: stretch; }
  .qty { justify-content: space-between; }
}

/* ---------- Print: schlank ---------- */
@media print {
  .topbar, .main-nav, .header-actions, .search-form, .slider-controls, .site-footer { display: none !important; }
}
