/* =====================================================================
   mietmaschine24.com – Redesign 2026  ·  styles.css
   ---------------------------------------------------------------------
   Ein Service der Kfz-Service Park GmbH, Naunhof bei Leipzig

   AUFBAU DIESER DATEI (zum schnellen Springen einfach nach "» " suchen)
   » 01  Design-Tokens (Farben, Typo, Abstände, Schatten)  :root
   » 02  Reset & Basis
   » 03  Typografie & Section-Bausteine
   » 04  Layout-Helfer (Container, Grid, Utilities)
   » 05  Buttons
   » 06  Header & Navigation (sticky, Mobile-Burger)
   » 07  Hero
   » 08  Kategorie-Kacheln (Sixt-Stil)
   » 09  "So funktioniert's" – Ablauf in 3 Schritten
   » 10  USP- / Trust- / Statistik-Leisten
   » 11  Produkt-Grid, Filterleiste & Produktkarte
   » 12  Anfrage-Drawer (Slide-in) + Formular  ← wiederverwendbar
   » 13  CTA-Bänder
   » 14  Kundenstimmen
   » 15  Lokaler-SEO-Textblock
   » 16  Verkauf-Listing
   » 17  Footer
   » 18  Mobile Sticky-Action-Bar
   » 19  Reduced Motion / A11y

   FARBSYSTEM: abgeleitet aus dem Logo (Royal-Blau + Orange + Weiß).
   Alle Farben/Abstände sind als CSS-Variablen zentral steuerbar – beim
   späteren Umsetzen einfach hier oben anpassen, der Rest zieht nach.
   ===================================================================== */

/* » 00  SCHRIFT (selbst gehostet – DSGVO-konform, kein Google-Request) =
   Inter, latin-Subset, woff2. Liegt unter /assets/fonts/.                */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/inter-700.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 800; font-display: swap; src: url("/assets/fonts/inter-800.woff2") format("woff2"); }

/* » 01  DESIGN-TOKENS ================================================= */
:root {
  /* --- Markenfarben (aus Logo abgeleitet, final per Color-Picker feinjustierbar) --- */
  --mm-blue:        #1b4f9c;   /* Primär-Blau (Logo-Schrift)            */
  --mm-blue-600:    #163f7e;   /* dunkleres Blau (Hover/Sektionen)      */
  --mm-navy:        #0e2a52;   /* sehr dunkles Blau (Footer/Overlays)   */
  --mm-orange:      #f26321;   /* Akzent / Icons / Logo-Klammer          */
  --mm-orange-600:  #d8500f;   /* Orange Hover                          */
  /* Dunkleres Orange NUR für Flächen mit weißem Text (Buttons) bzw.
     orange Text auf hellem Grund – erfüllt WCAG-AA (≈4,9:1 zu Weiß).   */
  --mm-orange-cta:  #c2480c;
  --mm-orange-cta-600: #a83d0a;
  --mm-orange-text: #c2480c;   /* orange Text auf hellem Hintergrund     */

  /* --- Neutrale Töne --- */
  --mm-ink:         #16202e;   /* Haupttextfarbe                        */
  --mm-muted:       #5a6472;   /* sekundärer Text                       */
  --mm-line:        #e4e8ef;   /* Rahmen/Trennlinien                    */
  --mm-bg:          #ffffff;   /* Standard-Hintergrund                  */
  --mm-bg-soft:     #f4f6f9;   /* hellgrauer Sektions-Hintergrund       */
  --mm-white:       #ffffff;

  /* --- Dunkle Produktkarte (Sixt-Look) – passt zum dunkel­blauen
     Studio-Hintergrund der Fahrzeugfotos, sodass das Fahrzeug nahtlos
     in die Kartenfläche „schwebt". --- */
  --mm-card-top:      #11315f;   /* oberer Verlauf der Karte (zum Foto)  */
  --mm-card-bottom:   #0a1f3e;   /* unterer Verlauf der Karte            */
  --mm-card-line:     rgba(255,255,255,.10);
  --mm-on-dark:       #ffffff;
  --mm-on-dark-muted: #aebed6;   /* sekundärer Text auf dunkler Karte    */

  /* --- Typografie --- */
  --mm-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  /* Optionale Display-Schrift für Headlines (kann gegen eine condensed
     Schrift wie "Archivo"/"Anton" getauscht werden, um dem Sixt-Look
     noch näher zu kommen): */
  --mm-font-display: "Inter", system-ui, sans-serif;

  /* --- Radien & Schatten --- */
  --mm-radius:      14px;
  --mm-radius-sm:   10px;
  --mm-radius-lg:   22px;
  --mm-radius-card: 18px;      /* einheitlicher Karten-Radius            */
  --mm-shadow-sm:   0 1px 2px rgba(14,42,82,.06), 0 2px 6px rgba(14,42,82,.06);
  --mm-shadow-md:   0 6px 18px rgba(14,42,82,.10);
  --mm-shadow-lg:   0 18px 50px rgba(14,42,82,.18);

  /* --- Layout --- */
  --mm-container:   1200px;
  --mm-gap:         clamp(16px, 2.4vw, 28px);
  --mm-section-y:   clamp(48px, 7vw, 104px);   /* vertikale Sektions-Abstände */

  /* --- Sonstiges --- */
  --mm-header-h:    74px;
  --mm-topbar-h:    38px;      /* Topbar klebt mit im Sticky-Header       */
  --mm-orange-on-dark: #ff8a4d; /* Kicker/Akzente auf dunklen Flächen (AA) */
  --mm-ease:        cubic-bezier(.22, .61, .36, 1);
}

/* » 02  RESET & BASIS ================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--mm-font);
  color: var(--mm-ink);
  background: var(--mm-bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Verhindert horizontales Scrollen durch den Off-Canvas-Drawer */
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

/* Sichtbarer Fokusrahmen für Tastatur-Navigation (A11y) */
:focus-visible {
  outline: 3px solid var(--mm-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Sperrt das Scrollen des Hintergrunds, wenn Drawer/Menü offen ist.
   Wird per JS (toggle der Klasse am <body>) gesetzt. position:fixed statt
   nur overflow:hidden, weil iOS Safari letzteres am Body ignoriert –
   main.js merkt sich die Scrollposition und stellt sie wieder her. */
body.is-locked { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }

/* » 03  TYPOGRAFIE & SECTION-BAUSTEINE ================================ */
h1, h2, h3, h4 {
  font-family: var(--mm-font-display);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--mm-ink);
}
h1 { font-size: clamp(2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { color: var(--mm-ink); }

/* "Kicker" = kleine orange Über-Überschrift im Sixt-Stil */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mm-orange-text);   /* WCAG-AA auf hellem Grund */
}
/* Auf dunklen Flächen (Hero/Navy/Blau) helleres Orange nutzen (Kontrast AA) */
.hero .kicker, .section--navy .kicker { color: var(--mm-orange-on-dark); }
.kicker::before {  /* kurzer Strich vor dem Kicker */
  content: "";
  width: 26px; height: 3px;
  background: var(--mm-orange);
  border-radius: 2px;
}

/* Standard-Sektion + zentrierter Kopfbereich */
.section { padding-block: var(--mm-section-y); }
.section--soft { background: var(--mm-bg-soft); }
.section--navy { background: var(--mm-navy); color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 14px; color: var(--mm-muted); font-size: 1.08rem; }
.section--navy .section-head .lead { color: rgba(255,255,255,.85); }

/* » 04  LAYOUT-HELFER ================================================= */
.container {
  width: 100%;
  max-width: var(--mm-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

/* Auto-Fit-Grid – passt Spaltenanzahl automatisch an (Mobile-first) */
.grid { display: grid; gap: var(--mm-gap); }

/* Utility-Klassen */
.mt-2 { margin-top: 12px; } .mt-4 { margin-top: 24px; }
.visually-hidden {            /* nur für Screenreader sichtbar */
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* Skip-Link: bei Tastatur-Fokus sichtbar machen (A11y) */
.visually-hidden:focus {
  position: fixed !important; top: 12px; left: 12px;
  width: auto; height: auto; padding: 12px 22px; margin: 0;
  overflow: visible; clip: auto; clip-path: none; white-space: normal; z-index: 200;
}

/* » 05  BUTTONS ====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  transition: transform .15s var(--mm-ease), background-color .2s, box-shadow .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

/* Primär = Orange (Haupt-CTA "Jetzt anfragen").
   Füllung nutzt das dunklere CTA-Orange, damit weißer Text WCAG-AA erfüllt. */
.btn--primary { background: var(--mm-orange-cta); color: #fff; box-shadow: var(--mm-shadow-sm); }
.btn--primary:hover { background: var(--mm-orange-cta-600); box-shadow: var(--mm-shadow-md); transform: translateY(-2px); }

/* Sekundär = Blau */
.btn--blue { background: var(--mm-blue); color: #fff; }
.btn--blue:hover { background: var(--mm-blue-600); transform: translateY(-2px); }

/* Outline (auf hellem Grund) */
.btn--outline { background: transparent; border-color: var(--mm-line); color: var(--mm-ink); }
.btn--outline:hover { border-color: var(--mm-blue); color: var(--mm-blue); }

/* Ghost-Variante für dunkle Flächen */
.btn--ghost { background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.2); }

.btn--lg { padding: 17px 34px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; }
.btn__icon { width: 18px; height: 18px; }

/* » 06  HEADER & NAVIGATION =========================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--mm-line);
  transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: var(--mm-shadow-sm); }

/* Top-Infoleiste über der Navigation (Telefon / Öffnungszeiten / Region) */
.topbar {
  background: var(--mm-navy);
  color: rgba(255,255,255,.9);
  font-size: .85rem;
}
.topbar .container { display: flex; gap: 22px; align-items: center; justify-content: space-between; min-height: 38px; }
.topbar a { color: #fff; font-weight: 600; display: inline-block; padding-block: 9px; }  /* ≥38px Tap-Ziel */
.topbar a:hover { color: #ffb38a; text-decoration: underline; }  /* helleres Orange + Unterstrich für Kontrast */
.topbar__group { display: flex; gap: 22px; align-items: center; }
.topbar__item { display: inline-flex; gap: 7px; align-items: center; white-space: nowrap; }
.topbar__item svg { width: 15px; height: 15px; opacity: .85; }
/* Auf schmalen Screens nur Telefon + Öffnungszeiten zeigen – die Adresse
   würde sonst hässlich drei­zeilig umbrechen (Footer/Kontakt tragen sie). */
@media (max-width: 819px) {
  .topbar .topbar__group:last-child { display: none; }
  .topbar .container { justify-content: center; }
}

.nav { display: flex; flex-wrap: nowrap; align-items: center; gap: 14px; min-width: 0; min-height: var(--mm-header-h); }
.nav__logo { display: flex; align-items: center; flex: 0 0 auto; }
.nav__logo img { height: 44px; width: auto; border-radius: 6px; }

/* Desktop-Menü: per Media-Query ab 1160px sichtbar (7 lange Labels brauchen Platz) */
.nav__menu { display: none; }
.nav__menu a { white-space: nowrap; }         /* niemals innerhalb eines Links umbrechen */
.nav__spacer { flex: 1 1 auto; }
.nav__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.nav__phone { display: none; white-space: nowrap; font-weight: 800; color: var(--mm-blue); }
/* Kompaktere CTA-Größe im Header (Standard-Button ist für den Header zu groß) */
.nav__actions .btn { padding: 11px 20px; font-size: .95rem; }

/* Burger-Button (nur Mobile) */
.nav__burger {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 46px; height: 46px; align-items: center; justify-content: center;
  background: var(--mm-bg-soft); border: 1px solid var(--mm-line); border-radius: 12px;
}
.nav__burger span { width: 22px; height: 2px; background: var(--mm-ink); border-radius: 2px; transition: .25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiles Off-Canvas-Menü */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
  background: #fff; z-index: 130; padding: 90px 24px 32px;
  transform: translateX(100%); visibility: hidden;
  transition: transform .35s var(--mm-ease), visibility 0s linear .35s;
  box-shadow: var(--mm-shadow-lg); overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; transition: transform .35s var(--mm-ease), visibility 0s linear 0s; }
.mobile-menu a { display: block; padding: 14px 6px; font-size: 1.1rem; font-weight: 600; border-bottom: 1px solid var(--mm-line); }
.mobile-menu a:hover { color: var(--mm-blue); }
.mobile-menu a.is-current { color: var(--mm-blue); box-shadow: inset 3px 0 0 var(--mm-orange-cta); padding-left: 12px; }
.mobile-menu .btn { margin-top: 22px; }
/* Eigener Schließen-Button im Menü (Burger liegt unter dem geöffneten Panel) */
.mobile-menu__close {
  position: absolute; top: 18px; right: 18px;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--mm-bg-soft); border: 1px solid var(--mm-line);
  display: grid; place-items: center; color: var(--mm-ink);
}
.mobile-menu__close svg { width: 20px; height: 20px; }

/* Abdunkelnder Overlay-Layer hinter Menü/Drawer */
.scrim {
  position: fixed; inset: 0; background: rgba(14,42,82,.5);
  opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 120;
}
.scrim.is-visible { opacity: 1; visibility: visible; }

/* » 07  HERO ========================================================= */
.hero { position: relative; background: var(--mm-navy); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
/* Blau-Verlauf sorgt für Lesbarkeit der Schrift (links dunkel → rechts klar) */
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,28,56,.94) 0%, rgba(10,28,56,.78) 38%, rgba(10,28,56,.25) 70%, rgba(10,28,56,.05) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(56px, 9vw, 120px); max-width: 660px; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--mm-orange); }
.hero__sub { margin-top: 18px; font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: rgba(255,255,255,.9); }
.hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Vertrauens-Badges direkt unter dem Hero-CTA */
.hero__badges { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px 26px; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.92); }
.hero__badge svg { width: 20px; height: 20px; color: var(--mm-orange); flex: 0 0 auto; }

/* » 08  KATEGORIE-KACHELN (Sixt-Stil) ================================ */
.cat-grid { grid-template-columns: repeat(2, 1fr); }            /* Mobile: 2 Spalten */
.cat-tile {
  position: relative; display: block; aspect-ratio: 1 / 1;
  border-radius: var(--mm-radius); overflow: hidden;
  background: var(--mm-blue-600); box-shadow: var(--mm-shadow-sm);
  isolation: isolate;
}
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--mm-ease); }
.cat-tile::after {  /* Lese-Verlauf unten */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,42,82,0) 35%, rgba(14,42,82,.85) 100%);
}
.cat-tile__label {
  position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 16px;
  display: block; padding-right: 44px;      /* Platz für den Pfeil-Kreis */
  color: #fff; font-weight: 800; font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.25; hyphens: auto; overflow-wrap: break-word;
}
/* Pfeil absolut positioniert – kann bei langen Wörtern (z. B. „Nutzfahrzeuge")
   nie mehr aus der Kachel herausgedrückt und abgeschnitten werden. */
.cat-tile__label .arrow {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--mm-orange); display: grid; place-items: center;
  transition: transform .25s var(--mm-ease);
}
.cat-tile__label .arrow svg { width: 18px; height: 18px; color: #fff; }
/* Zähler-Badge (z. B. „9 Angebote" auf der Verkaufs-Übersicht) –
   halbtransparentes Navy, damit es auf hellen wie dunklen Fotos lesbar ist */
.cat-tile__badge {
  position: absolute; z-index: 2; top: 12px; left: 12px;
  display: inline-flex; align-items: center;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(14,42,82,.62); border: 1px solid rgba(255,255,255,.25);
  -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.cat-tile:hover img { transform: scale(1.07); }
.cat-tile:hover .arrow { transform: translateY(-50%) translateX(4px); }
/* Sehr schmale 2er-Kacheln (~165px): Label & Pfeil leicht verkleinern,
   damit lange Wörter wie „maschinen" nicht doppelt umbrechen müssen. */
@media (max-width: 560px) {
  .cat-tile__label { font-size: .95rem; padding-right: 38px; left: 14px; right: 14px; }
  .cat-tile__label .arrow { width: 30px; height: 30px; }
  .cat-tile__label .arrow svg { width: 16px; height: 16px; }
}

/* » 09  ABLAUF IN 3 SCHRITTEN ======================================== */
.steps { grid-template-columns: 1fr; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background:#fff; border:1px solid var(--mm-line); border-radius: var(--mm-radius); box-shadow: var(--mm-shadow-sm); }
.step__num {
  counter-increment: step; width: 48px; height: 48px; border-radius: 50%;
  background: var(--mm-blue); color:#fff; font-weight: 800; font-size: 1.2rem;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--mm-muted); }

/* » 10  USP / TRUST / STATISTIK ====================================== */
.usp-grid { grid-template-columns: 1fr; }
.usp { display: flex; gap: 16px; align-items: flex-start; }
.usp__icon {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px;
  background: rgba(242,99,33,.12); color: var(--mm-orange);
  display: grid; place-items: center;
}
.usp__icon svg { width: 26px; height: 26px; }
.usp h3 { font-size: 1.12rem; margin-bottom: 4px; }
.usp p { color: var(--mm-muted); font-size: .98rem; }

/* Kennzahlen-Leiste */
.stats { grid-template-columns: repeat(2, 1fr); text-align: center; }
.stat__num { font-family: var(--mm-font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: var(--mm-orange); line-height: 1; }
.stat__label { margin-top: 8px; font-size: .95rem; color: rgba(255,255,255,.85); }

/* » 11  PRODUKT-GRID, FILTER & PRODUKTKARTE ========================== */
/* Sticky-Filterleiste über dem Produktraster */
.filter-bar {
  /* Sticky-Header = Topbar + Navigation – beides einrechnen */
  position: sticky; top: calc(var(--mm-header-h) + var(--mm-topbar-h)); z-index: 40;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  padding: 14px 0; margin-bottom: 26px;
  background: var(--mm-bg);
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--mm-line);
  background:#fff; font-size: .92rem; font-weight: 600; color: var(--mm-muted);
  transition: .18s;
}
.chip:hover { border-color: var(--mm-blue); color: var(--mm-blue); }
.chip.is-active { background: var(--mm-blue); border-color: var(--mm-blue); color:#fff; }
.filter-sort { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--mm-muted); }
/* 1rem = 16px verhindert den iOS-Auto-Zoom beim Antippen des Selects */
.filter-sort select { padding: 9px 12px; border: 1px solid var(--mm-line); border-radius: 10px; background:#fff; font-weight: 600; font-size: 1rem; }

.product-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr)); }

/* Leer-Zustand bei Filtern ohne Treffer */
.grid-empty { margin-top: 24px; padding: 28px; text-align: center; color: var(--mm-muted); background: var(--mm-bg-soft); border: 1px dashed var(--mm-line); border-radius: var(--mm-radius); }
.grid-empty a { color: var(--mm-blue); font-weight: 700; text-decoration: underline; }

/* Premium-Produktkarte (Sixt-Look): die GANZE Karte ist eine dunkle Fläche.
   Das Fahrzeugfoto (dunkelblauer Studio-Verlauf) verschmilzt nahtlos mit der
   Kartenfläche, sodass das Fahrzeug zu „schweben" scheint. Spec-Pills liegen
   ÜBER dem Bild, darunter folgt der große, fette Preis im Sixt-Stil. */
.product-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--mm-card-top) 0%, var(--mm-card-bottom) 100%);
  border: 1px solid var(--mm-card-line); border-radius: var(--mm-radius-card);
  overflow: hidden; box-shadow: var(--mm-shadow-md);
  transition: transform .28s var(--mm-ease), box-shadow .28s var(--mm-ease), border-color .28s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--mm-shadow-lg); border-color: rgba(242,99,33,.55); }

.product-card__media {
  position: relative; aspect-ratio: 5 / 4; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 38%, #1c4684 0%, var(--mm-card-top) 60%, var(--mm-card-bottom) 100%);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s var(--mm-ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
/* Verlauf am unteren Bildrand → Foto „schmilzt" in den Karten-Body */
.product-card__media::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 38%; z-index: 1;
  background: linear-gradient(180deg, rgba(11,33,64,0) 0%, var(--mm-card-bottom) 96%);
  pointer-events: none;
}

/* Spec-Pills (oben links) – die 3 entscheidenden Fakten je Kategorie */
.product-card__pills {
  position: absolute; top: 10px; left: 10px; right: clamp(118px, 34%, 154px); z-index: 3;
  display: flex; flex-wrap: wrap; gap: 5px;
}
.pc-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  color: #fff; font-size: .72rem; font-weight: 600; line-height: 1.16; white-space: nowrap;
}
.pc-pill svg { width: 12px; height: 12px; flex: 0 0 auto; opacity: .92; }

/* Feature-Badge (oben rechts) – z. B. Automatik / 8-Sitzer / Elektro */
.product-card__badge {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background: var(--mm-orange-cta); color: #fff;
  font-size: .66rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; box-shadow: 0 2px 10px rgba(0,0,0,.3);
  line-height: 1.15; white-space: nowrap;
}

.product-card__body { position: relative; z-index: 2; padding: 4px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.product-card__title { font-size: 1.16rem; font-weight: 800; letter-spacing: -.01em; color: var(--mm-on-dark); }
.product-card__sub { margin-top: 3px; font-size: .82rem; color: var(--mm-on-dark-muted); }

/* Fußzeile: dünne Trennlinie, zweistufiger Preis links, kompakter CTA rechts */
.product-card__foot {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--mm-card-line);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.product-card__cta { padding: 11px 16px; font-size: .92rem; }
.price { line-height: 1.12; }
.price__from { display: block; font-size: .74rem; color: var(--mm-on-dark-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.price__value { font-family: var(--mm-font-display); font-weight: 800; font-size: 1.85rem; color: var(--mm-on-dark); letter-spacing: -.01em; }
.price__value span { font-size: .8rem; font-weight: 600; color: var(--mm-on-dark-muted); }
.price__note { display: block; font-size: .75rem; color: var(--mm-on-dark-muted); margin-top: 2px; }

/* » 12  ANFRAGE-DRAWER (Slide-in) + FORMULAR  ← WIEDERVERWENDBAR =======
   Liegt EINMAL pro Seite im DOM (#enquiry-drawer). Jeder
   "Jetzt anfragen"-Button öffnet ihn per JS und befüllt das Feld
   "Was möchten Sie mieten?" über data-Attribute vor.            */
.drawer {
  position: fixed; inset: 0 0 0 auto; z-index: 140;
  width: min(94vw, 460px);
  background:#fff; box-shadow: var(--mm-shadow-lg);
  transform: translateX(100%); visibility: hidden;
  transition: transform .35s var(--mm-ease), visibility 0s linear .35s;
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); visibility: visible; transition: transform .35s var(--mm-ease), visibility 0s linear 0s; }
.drawer__header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 24px; background: var(--mm-blue); color:#fff;
}
.drawer__header h2 { color:#fff; font-size: 1.2rem; }
.drawer__header p { font-size: .85rem; color: rgba(255,255,255,.85); margin-top: 2px; }
.drawer__close {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.15); color:#fff; border: none;
  display: grid; place-items: center;
}
.drawer__close:hover { background: rgba(255,255,255,.28); }
.drawer__close svg { width: 20px; height: 20px; }
.drawer__body { padding: 22px 24px 28px; overflow-y: auto; }

/* Formular-Bausteine */
.field { margin-bottom: 16px; }
.field > label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; }
.field .req { color: var(--mm-orange-text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius-sm); background:#fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--mm-blue);
  box-shadow: 0 0 0 3px rgba(27,79,156,.15);
}
.field textarea { min-height: 96px; resize: vertical; }
/* Mobile: 1 Spalte (im 460px-Drawer wären 2 Spalten zu eng) – ab 640px 2 Spalten */
.field-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--mm-muted); }
.check input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; }
.check a { color: var(--mm-blue); text-decoration: underline; }
.form-note { font-size: .8rem; color: var(--mm-muted); margin-top: 4px; }
.form-success {
  display: none; padding: 16px; border-radius: var(--mm-radius-sm);
  background: rgba(34,160,90,.1); color: #1d7a4a; font-weight: 600; border: 1px solid rgba(34,160,90,.3);
  margin-bottom: 14px;
}
/* Fehler- & mailto-Status (per JS erzeugt/ein­geblendet, main.js Block 5) */
.form-error {
  display: none; padding: 16px; border-radius: var(--mm-radius-sm);
  background: rgba(194,72,12,.08); color: #a33608; font-weight: 600; border: 1px solid rgba(194,72,12,.35);
  margin-bottom: 14px; font-size: .95rem;
}
.form-error a { color: inherit; text-decoration: underline; }
/* No-JS-Fallback: die Function leitet bei Fehlern auf
   /kontakt?fehler=1#senden-fehlgeschlagen – :target blendet die statische
   Fehlerbox in kontakt.html auch ohne JavaScript ein. */
#senden-fehlgeschlagen:target { display: block; }
.form-mailto {
  display: none; padding: 16px; border-radius: var(--mm-radius-sm);
  background: rgba(27,79,156,.07); color: var(--mm-ink); border: 1px solid rgba(27,79,156,.3);
  margin-bottom: 14px; font-size: .92rem; line-height: 1.55;
}
.form-mailto a { color: var(--mm-blue); font-weight: 600; text-decoration: underline; }
.form-mailto__copy {
  display: inline-block; margin: 6px 6px 6px 0; padding: 8px 14px;
  border: 1px solid var(--mm-blue); border-radius: 999px; background: #fff;
  color: var(--mm-blue); font-weight: 700; font-size: .88rem;
}
.form-mailto__copy:hover { background: var(--mm-blue); color: #fff; }

/* » 13  CTA-BÄNDER =================================================== */
.cta-band { background: var(--mm-blue); color:#fff; border-radius: var(--mm-radius-lg); padding: clamp(32px, 5vw, 56px); }
/* CTA-Orange-Töne: dunkler als das Marken-Orange, damit weißer Text AA erfüllt */
.cta-band--orange { background: linear-gradient(120deg, var(--mm-orange-cta), var(--mm-orange-cta-600)); }
.cta-band__inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 8px; max-width: 540px; }
.cta-band .btn--primary { background:#fff; color: var(--mm-blue); }
.cta-band .btn--primary:hover { background: var(--mm-navy); color:#fff; }

/* » 14  KUNDENSTIMMEN =============================================== */
.testimonials { grid-template-columns: 1fr; }
.testimonial { background:#fff; border:1px solid var(--mm-line); border-radius: var(--mm-radius); padding: 26px; box-shadow: var(--mm-shadow-sm); }
.testimonial__stars { color: var(--mm-orange); letter-spacing: 2px; font-size: 1.05rem; }
.testimonial p { margin: 12px 0 16px; font-size: 1.02rem; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--mm-blue); color:#fff; display: grid; place-items: center; font-weight: 800; }
.testimonial__name { font-weight: 700; font-size: .95rem; }
.testimonial__role { font-size: .82rem; color: var(--mm-muted); }

/* » 14a  SEO-FLIESSTEXT (Kategorie-Prosa) =========================== */
.seo-copy { max-width: 820px; margin-inline: auto; }
.seo-copy h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 14px; }
.seo-copy p { color: var(--mm-muted); margin-bottom: 14px; font-size: 1.02rem; }
.seo-copy p:last-child { margin-bottom: 0; }

/* » 14b  FAQ-ACCORDION (<details>, ohne JS) ========================= */
.faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background:#fff; border:1px solid var(--mm-line); border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow-sm); overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item[open] { border-color: rgba(27,79,156,.35); box-shadow: var(--mm-shadow-md); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; padding: 18px 22px; list-style: none;
  font-weight: 700; font-size: 1.05rem; color: var(--mm-ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q:hover { color: var(--mm-blue); }
.faq__icon { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--mm-bg-soft); display: grid; place-items: center; color: var(--mm-blue); transition: transform .25s var(--mm-ease); }
.faq__icon svg { width: 16px; height: 16px; }
.faq__item[open] .faq__icon { transform: rotate(90deg); background: var(--mm-blue); color: #fff; }
.faq__a { padding: 0 22px 20px; color: var(--mm-muted); }
.faq__a p { color: var(--mm-muted); }

/* » 15  LOKALER-SEO-TEXTBLOCK ======================================= */
.local { display: grid; gap: clamp(28px, 4vw, 48px); grid-template-columns: 1fr; align-items: center; }
.local__map { border-radius: var(--mm-radius); overflow: hidden; border: 1px solid var(--mm-line); min-height: 300px; box-shadow: var(--mm-shadow-sm); }
.local__map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }

/* Karten-Platzhalter (DSGVO-2-Klick): rein lokale Fläche, der Google-iframe
   wird erst nach Klick auf „Karte laden" injiziert (main.js Block 8). */
.map-consent {
  height: 100%; min-height: 300px; display: grid; place-items: center;
  text-align: center; padding: 28px 22px;
  background:
    radial-gradient(circle at 22% 28%, rgba(27,79,156,.12) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 62%, rgba(27,79,156,.12) 0 2px, transparent 3px),
    linear-gradient(120deg, #eef2f8 0%, #e2e8f2 100%);
}
.map-consent.is-loaded { display: block; padding: 0; }
.map-consent iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
.map-consent__pin { width: 44px; height: 44px; margin-inline: auto; color: var(--mm-blue); }
.map-consent__pin svg { width: 100%; height: 100%; }
.map-consent strong { display: block; font-size: 1.1rem; margin-top: 8px; }
.map-consent p { color: var(--mm-muted); margin: 4px 0 14px; }
.map-consent small { display: block; margin-top: 12px; font-size: .78rem; color: var(--mm-muted); max-width: 42ch; margin-inline: auto; }
.local__text h2 { margin-bottom: 14px; }
.local__text p { color: var(--mm-muted); margin-bottom: 12px; }
.local__regions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.local__regions span { font-size: .85rem; font-weight: 600; color: var(--mm-blue); background: rgba(27,79,156,.08); padding: 6px 12px; border-radius: 999px; }

/* » 16  VERKAUF-LISTING ============================================= */
.sale-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.sale-card {
  display: flex; flex-direction: column; background:#fff;
  border:1px solid var(--mm-line); border-radius: 18px; overflow: hidden; box-shadow: var(--mm-shadow-sm);
  transition: transform .28s var(--mm-ease), box-shadow .28s var(--mm-ease), border-color .28s;
}
.sale-card:hover { transform: translateY(-6px); box-shadow: var(--mm-shadow-lg); border-color: transparent; }
.sale-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--mm-navy); }
.sale-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--mm-ease); }
.sale-card:hover .sale-card__media img { transform: scale(1.05); }
.sale-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.sale-card__title { font-weight: 800; font-size: 1.08rem; }
.sale-card__meta { font-size: .9rem; color: var(--mm-muted); }
.sale-card__price { font-family: var(--mm-font-display); font-weight: 800; font-size: 1.25rem; color: var(--mm-blue); }
.sale-card__foot { margin-top: auto; padding-top: 6px; }
.badge-ext { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; color: var(--mm-orange-text); }
.badge-ext svg { width: 14px; height: 14px; }

/* » 17  FOOTER ====================================================== */
.site-footer { background: var(--mm-navy); color: rgba(255,255,255,.82); padding-top: clamp(48px, 6vw, 80px); }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: var(--mm-orange); }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; padding-bottom: 44px; }
.footer__brand img { height: 54px; border-radius: 8px; margin-bottom: 16px; }
.footer__brand p { color: rgba(255,255,255,.7); font-size: .94rem; }
.footer h4 { color:#fff; font-size: 1rem; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; margin-bottom: 12px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--mm-orange); flex: 0 0 auto; margin-top: 3px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.78);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }

/* » 18  MOBILE STICKY-ACTION-BAR ===================================== */
/* Auf kleinen Screens dauerhaft erreichbare "Anrufen / Anfragen"-Leiste */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 10px; padding: 10px 14px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));  /* iPhone-Home-Bar */
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--mm-line);
}
.action-bar .btn { flex: 1; }
.action-bar .btn--call { background: var(--mm-blue); color:#fff; }
/* Solange die Leiste sichtbar ist (< 1200px), Platz am Seitenende freihalten,
   damit sie Footer-Links und letzte CTAs nicht verdeckt. */
@media (max-width: 1199px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

/* » 19  RESPONSIVE BREAKPOINTS ======================================
   Mobile-first: oben Standard = Smartphone. Hier kommen die
   Erweiterungen für Tablet (≥640px), kleines Desktop (≥768/992px)
   und großes Desktop (≥1200px) dazu.                              */

@media (min-width: 640px) {
  .steps     { grid-template-columns: repeat(3, 1fr); }
  .usp-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats     { grid-template-columns: repeat(4, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1.6fr 1fr 1fr; }
}

@media (min-width: 768px) {
  .cat-grid     { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .usp-grid { grid-template-columns: repeat(4, 1fr); }
  .local { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
  .hero__media img { object-position: center; }
}

/* Desktop-Navigation: erst ab 1200px, da 7 lange Labels + Logo + CTA sonst
   nicht nebeneinander passen (sonst Umbruch im Header). Darunter: Burger. */
@media (min-width: 1200px) {
  .nav__menu { display: flex; align-items: center; gap: 2px; }
  .nav__menu a { padding: 9px 11px; border-radius: 10px; font-weight: 600; font-size: .93rem; letter-spacing: -.005em; transition: background-color .15s, color .15s; }
  .nav__menu a:hover { background: var(--mm-bg-soft); color: var(--mm-blue); }
  .nav__menu a.is-current { color: var(--mm-blue); background: var(--mm-bg-soft); }
  .nav__burger { display: none; }
  .action-bar { display: none; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}

/* In-Nav-Telefonnummer erst zeigen, wenn wirklich Platz ist (Topbar trägt sie
   ohnehin immer sichtbar) – verhindert das 3-zeilige Umbrechen im Header. */
@media (min-width: 1320px) {
  .nav__phone { display: inline-flex; gap: 8px; align-items: center; }
}

/* » REDUCED MOTION (A11y) – Animationen für empfindliche Nutzer aus */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* » 20  VERKAUF-ÜBERSICHT & PRODUKT-DETAILSEITEN ======================
   Zweistufiger Verkauf: Übersicht mit Kategorie-Kacheln  ->  Unterseiten
   je Kategorie  ->  eigene Produkt-Detailseiten (PDP) für Startrac,
   Minibagger & Gremac. Startrac wird als Marke gesondert hervorgehoben. */

/* --- Kategorie-Kacheln (Übersichtsseite /verkauf) ---
   Nutzen dieselben .cat-tile-Kacheln wie die Startseite (» 08) – einheit-
   licher Grid-Look. Zusätzlich gibt es dort das Zähler-Badge
   (.cat-tile__badge, definiert bei » 08). */

/* --- Startrac-Marken-Band (Hervorhebung) --- */
.startrac-band { position: relative; overflow: hidden; border-radius: var(--mm-radius); background: linear-gradient(135deg, #12386e 0%, #0a1f3e 100%); color:#fff; box-shadow: var(--mm-shadow-lg); }
.startrac-band__grid { display:grid; grid-template-columns: 1fr; }
.startrac-band__media { position: relative; min-height: 220px; }
.startrac-band__media img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.startrac-band__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,31,62,.15), rgba(10,31,62,.65)); }
.startrac-band__body { padding: clamp(26px, 4vw, 46px); }
.startrac-band__kicker { display:inline-flex; align-items:center; gap:8px; font-size:.78rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color: var(--mm-orange-on-dark); margin-bottom: 14px; }
.startrac-band__kicker::before { content:""; width:26px; height:2px; background: var(--mm-orange-on-dark); }
.startrac-band h2 { color:#fff; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height:1.1; margin-bottom: 12px; }
.startrac-band p { color: var(--mm-on-dark-muted); max-width: 54ch; margin-bottom: 22px; }
.startrac-band__stats { display:flex; flex-wrap:wrap; gap: 10px 26px; margin-bottom: 26px; }
.startrac-band__stat b { font-family: var(--mm-font-display); font-size: 1.5rem; display:block; }
.startrac-band__stat span { font-size:.82rem; color: var(--mm-on-dark-muted); }
.startrac-band__cta { display:flex; flex-wrap:wrap; gap: 12px; }

/* --- Modell-Highlight-Karten (3 Startrac-Modelle mit Detailseite) --- */
.model-grid { grid-template-columns: 1fr; gap: 20px; }
.model-card {
  display:flex; flex-direction:column; overflow:hidden; background:#fff;
  border:1px solid var(--mm-line); border-radius:18px; box-shadow: var(--mm-shadow-sm);
  transition: transform .28s var(--mm-ease), box-shadow .28s var(--mm-ease), border-color .28s;
}
.model-card:hover { transform: translateY(-6px); box-shadow: var(--mm-shadow-lg); border-color: transparent; }
.model-card__media { position:relative; aspect-ratio: 4/3; overflow:hidden; background: linear-gradient(180deg, var(--mm-card-top), var(--mm-card-bottom)); }
.model-card__media img { width:100%; height:100%; object-fit: cover; transition: transform .5s var(--mm-ease); }
.model-card:hover .model-card__media img { transform: scale(1.05); }
.model-card__tag { position:absolute; top:12px; left:12px; z-index:2; background: var(--mm-orange-cta); color:#fff; font-size:.74rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase; padding:5px 11px; border-radius:999px; }
.model-card__price { position:absolute; top:12px; right:12px; z-index:2; background: rgba(255,255,255,.94); color: var(--mm-blue); font-weight:800; font-size:.86rem; padding:5px 11px; border-radius:999px; box-shadow: var(--mm-shadow-sm); }
.model-card__body { padding: 18px; display:flex; flex-direction:column; gap:8px; flex:1; }
.model-card__title { font-family: var(--mm-font-display); font-weight:800; font-size:1.2rem; }
.model-card__meta { font-size:.9rem; color: var(--mm-muted); }
.model-card__specs { display:flex; flex-wrap:wrap; gap:6px; margin:4px 0 2px; }
.model-card__specs span { font-size:.8rem; font-weight:600; color: var(--mm-blue); background: rgba(27,79,156,.08); padding:4px 10px; border-radius:999px; }
.model-card__foot { margin-top:auto; padding-top:8px; }

/* --- Händler-/Vertriebspartner-Band --- */
.dealer-band { display:grid; grid-template-columns:1fr; gap:0; overflow:hidden; border-radius: var(--mm-radius); border:1px solid var(--mm-line); background:#fff; box-shadow: var(--mm-shadow-sm); }
.dealer-band__media { position:relative; min-height: 200px; background: var(--mm-navy); }
.dealer-band__media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.dealer-band__body { padding: clamp(22px, 3vw, 34px); }
.dealer-band__body .kicker { color: var(--mm-orange-text); }
.dealer-band__body h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 4px 0 10px; }
.dealer-band__body p { color: var(--mm-muted); margin-bottom: 18px; max-width: 60ch; }

/* ===================== PRODUKT-DETAILSEITE (PDP) ===================== */
.pdp-hero { position: relative; overflow: hidden; color:#fff;
  background: radial-gradient(120% 130% at 82% 0%, #17417d 0%, #0e2a52 52%, #081a35 100%); }
.pdp-hero__inner { display:grid; grid-template-columns: 1fr; gap: 26px; align-items:center;
  padding: clamp(22px, 3vw, 40px) 0 clamp(30px, 4vw, 52px); }
.pdp-crumbs { font-size:.85rem; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.pdp-crumbs a { color:#fff; font-weight:600; }
.pdp-hero__media { position:relative; border-radius: 20px; overflow:hidden;
  background: linear-gradient(180deg, var(--mm-card-top), var(--mm-card-bottom));
  border:1px solid rgba(255,255,255,.12); aspect-ratio: 4/3; }
.pdp-hero__media img { width:100%; height:100%; object-fit: cover; }
.pdp-hero__media.is-contain img { object-fit: contain; padding: 14px; }
.pdp-badge { position:absolute; top:16px; right:16px; z-index:2; background: var(--mm-orange-cta);
  color:#fff; font-weight:800; border-radius: 14px; padding: 9px 15px; line-height:1.1; text-align:center; box-shadow: 0 8px 22px rgba(0,0,0,.28); }
.pdp-badge small { display:block; font-size:.68rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; opacity:.9; }
.pdp-badge--poa { font-size: .95rem; }   /* „Preis auf Anfrage"-Variante */
.pdp-kicker { display:inline-flex; align-items:center; gap:8px; font-size:.78rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color: var(--mm-orange-on-dark); margin-bottom: 12px; }
.pdp-kicker::before { content:""; width:26px; height:2px; background: var(--mm-orange-on-dark); }
.pdp-hero h1 { color:#fff; font-size: clamp(1.9rem, 4vw, 2.9rem); line-height:1.06; margin-bottom: 12px; }
/* Outline-Buttons sind für helle Flächen gedacht – auf den dunklen
   Hero-/Band-Flächen bekommen sie weiße Schrift + hellen Rahmen. */
.pdp-hero .btn--outline, .startrac-band .btn--outline {
  color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08);
}
.pdp-hero .btn--outline:hover, .startrac-band .btn--outline:hover {
  color: #fff; border-color: #fff; background: rgba(255,255,255,.18);
}
.pdp-lead { color: var(--mm-on-dark-muted); font-size: 1.02rem; max-width: 54ch; }
.pdp-stats { display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.pdp-stat { background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.13); border-radius:14px; padding:14px 10px; text-align:center; }
.pdp-stat__num { font-family: var(--mm-font-display); font-weight:800; font-size: 1.45rem; color:#fff; }
.pdp-stat__label { font-size:.82rem; color: var(--mm-on-dark-muted); margin-top:2px; }
.pdp-hero__cta { display:flex; flex-wrap:wrap; gap: 12px; }
/* Verfügbarkeits-Zeile unter den Hero-CTAs (grüner Punkt = lieferbar) */
.pdp-avail { display:flex; align-items:center; gap:9px; margin-top: 14px; font-size:.9rem; font-weight:600; color: rgba(255,255,255,.88); }
.pdp-avail::before { content:""; flex:0 0 auto; width:9px; height:9px; border-radius:50%; background:#3ddc84; box-shadow: 0 0 0 3px rgba(61,220,132,.22); }
/* Vertrauens-Badges im PDP-Hero (nutzt die Hero-Badge-Optik der Startseite) */
.pdp-hero .hero__badges { margin-top: 22px; gap: 10px 22px; }
.pdp-hero .hero__badge { font-size: .88rem; }

/* Abschnitts-Kopf innerhalb der PDP */
.pdp-sec-head { margin-bottom: 22px; }
.pdp-sec-head .kicker { margin-bottom: 6px; }
.pdp-sec-head h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.pdp-sec-head p { color: var(--mm-muted); margin-top: 8px; max-width: 62ch; }

/* Technische Daten – zweispaltige, gezebrate Liste */
.spec-table { border:1px solid var(--mm-line); border-radius: var(--mm-radius); overflow:hidden; background:#fff; }
.spec-row { display:flex; justify-content:space-between; align-items:baseline; gap:18px; padding: 12px 18px; font-size:.94rem; border-bottom:1px solid var(--mm-line); }
.spec-row:last-child { border-bottom:0; }
.spec-row:nth-child(even) { background: var(--mm-bg-soft); }
.spec-row dt { color: var(--mm-muted); }
.spec-row dd { font-weight:700; text-align:right; color: var(--mm-ink); }

/* Anbaugeräte / Zubehör & Bereifung */
.addon-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
.addon-card { display:flex; flex-direction:column; overflow:hidden; background:#fff; border:1px solid var(--mm-line); border-radius:16px; box-shadow: var(--mm-shadow-sm); transition: transform .22s var(--mm-ease), box-shadow .22s var(--mm-ease); }
.addon-card:hover { transform: translateY(-4px); box-shadow: var(--mm-shadow-lg); }
.addon-card__media { aspect-ratio: 4/3; overflow:hidden; background: var(--mm-bg-soft); }
.addon-card__media img { width:100%; height:100%; object-fit: cover; }
.addon-card__body { padding: 12px 14px 14px; display:flex; flex-direction:column; gap:3px; flex:1; }
.addon-card__row { display:flex; flex-wrap:wrap; justify-content:space-between; align-items:baseline; gap:2px 10px; }
.addon-card__name { font-weight:700; font-size:.94rem; min-width:0; hyphens:auto; overflow-wrap:break-word; }
.addon-card__price { font-weight:800; color: var(--mm-orange-text); white-space:nowrap; font-size:.9rem; }
.addon-card__price--incl { color: var(--mm-blue); }
.addon-card__sub { font-size:.84rem; color: var(--mm-muted); }

/* Highlights (Feature-Liste mit Icon) */
.pdp-highlights { grid-template-columns: 1fr; gap: 16px; }
.pdp-hl { display:flex; gap:14px; align-items:flex-start; }
.pdp-hl__icon { flex:0 0 auto; width:44px; height:44px; border-radius:12px; display:grid; place-items:center; background: rgba(27,79,156,.09); color: var(--mm-blue); }
.pdp-hl__icon svg { width:22px; height:22px; }
.pdp-hl h3 { font-size: 1.02rem; margin-bottom: 3px; }
.pdp-hl p { font-size:.92rem; color: var(--mm-muted); }

/* kleine Preisfußnote */
.price-note-line { font-size:.8rem; color: var(--mm-muted); margin-top: 14px; }

/* Zweispalter „Technische Daten | Vorteile" – stapelt mobil, ab 992px nebeneinander */
.pdp-duo { display:grid; gap: 34px; grid-template-columns: 1fr; }

/* Modell-Vergleichstabelle (Startrac 22 / 26 / 26 HST) */
.cmp-wrap { overflow-x:auto; -webkit-overflow-scrolling: touch; border:1px solid var(--mm-line); border-radius: var(--mm-radius); background:#fff; box-shadow: var(--mm-shadow-sm); }
.cmp { width:100%; min-width: 560px; border-collapse: collapse; font-size:.92rem; }
.cmp th, .cmp td { padding: 12px 16px; text-align:left; border-bottom:1px solid var(--mm-line); }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom:0; }
.cmp thead th { font-size:.98rem; }
.cmp thead th a { color: var(--mm-blue); }
.cmp thead th a:hover { text-decoration: underline; }
.cmp tbody th { font-weight:400; color: var(--mm-muted); white-space:nowrap; }
.cmp td { font-weight:600; }
.cmp .is-current { background: rgba(27,79,156,.06); }
.cmp thead .is-current { box-shadow: inset 0 3px 0 var(--mm-orange); }
.cmp__price { color: var(--mm-blue); font-weight:800; }
.cmp__you { display:inline-block; margin-left:8px; font-size:.68rem; font-weight:800; letter-spacing:.05em; text-transform:uppercase; color:#fff; background: var(--mm-orange-cta); padding:3px 8px; border-radius:999px; vertical-align:middle; }

/* --- Responsive --- */
/* Sehr schmale Screens: große CTAs volle Breite, damit sie nicht aus den
   abgerundeten Bändern (.cta-band/.startrac-band) herauslaufen. */
@media (max-width: 480px) {
  .hero__cta .btn, .startrac-band__cta .btn, .pdp-hero__cta .btn { width: 100%; white-space: normal; }
  .btn--lg { padding: 16px 24px; }
  .product-card__pills {
    top: 9px;
    left: 9px;
    right: clamp(104px, 36vw, 136px);
    gap: 4px;
  }
  .pc-pill {
    gap: 4px;
    padding: 3px 7px;
    font-size: .68rem;
    line-height: 1.15;
  }
  .pc-pill svg { width: 11px; height: 11px; }
  .product-card__badge {
    top: 9px;
    right: 9px;
    padding: 4px 8px;
    font-size: .62rem;
    letter-spacing: .04em;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }
}
@media (min-width: 560px) {
  .addon-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 720px) {
  .model-grid { grid-template-columns: repeat(3, 1fr); }
  .pdp-highlights { grid-template-columns: repeat(2, 1fr); }
  .startrac-band__grid { grid-template-columns: 1.1fr 1fr; }
  .startrac-band__media { min-height: 100%; }
  .dealer-band { grid-template-columns: 1fr 1.4fr; }
  .dealer-band__media { min-height: 100%; }
}
@media (min-width: 860px) {
  .pdp-hero__inner { grid-template-columns: 1.05fr .95fr; gap: 40px; }
}
@media (min-width: 992px) {
  .addon-grid  { grid-template-columns: repeat(4, 1fr); }
  .pdp-duo { grid-template-columns: 1.08fr .92fr; align-items: start; }
  .pdp-highlights { grid-template-columns: 1fr; }
}

/* » 21  PDP: VIDEO, VERTRAUENSBAND, LEAD-FORMULAR & STICKY-KAUFLEISTE ==
   CRO-Bausteine der Produkt-Landingpages (Google-Ads-Ziele):
   • Video-Sektionen (16:9-Produktvideo bzw. Hochformat-Praxis-Reel)
   • „Kaufen beim Fachbetrieb"-Band mit Kontaktkarte
   • sichtbares Anfrageformular (#anfrage) am Seitenende
   • Sticky-Kaufleiste am unteren Rand (nur Desktop ≥1200px)          */

/* --- Video 16:9 (z. B. Gremac-Produktvideo) --- */
.pdp-video { max-width: 940px; margin-inline: auto; }
.pdp-video__player {
  width: 100%; height: auto; aspect-ratio: 16 / 9;
  border-radius: var(--mm-radius-lg); background: var(--mm-navy);
  box-shadow: var(--mm-shadow-lg);
}

/* --- Video-Band: Hochformat-Reel + Nutzenargumente (dunkles Band) --- */
.video-band {
  display: grid; grid-template-columns: 1fr; gap: clamp(24px, 4vw, 48px);
  align-items: center; overflow: hidden;
  border-radius: var(--mm-radius-lg); padding: clamp(24px, 4vw, 52px);
  background: linear-gradient(135deg, #12386e 0%, #0a1f3e 100%);
  color: #fff; box-shadow: var(--mm-shadow-lg);
}
.video-band h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin: 6px 0 12px; }
.video-band > .video-band__body > p { color: var(--mm-on-dark-muted); max-width: 56ch; }
.video-band__points { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.video-band__points li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.92); }
.video-band__points svg { width: 19px; height: 19px; color: var(--mm-orange); flex: 0 0 auto; margin-top: 2px; }
.video-band__media { display: flex; justify-content: center; }
.video-band__player {
  width: min(100%, 320px); height: auto; aspect-ratio: 9 / 16;
  border-radius: 18px; background: #000;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
}

/* --- Hero-Feinschliff: Microcopy unter den CTAs + dezenter KA-Link --- */
.pdp-cta-note { margin-top: 10px; font-size: .82rem; color: rgba(255,255,255,.72); }
.pdp-ka-link { margin-top: 16px; font-size: .88rem; }
.pdp-ka-link a {
  display: inline-flex; gap: 7px; align-items: center;
  color: rgba(255,255,255,.78); text-decoration: underline; text-underline-offset: 3px;
}
.pdp-ka-link a:hover { color: #fff; }
.pdp-ka-link svg { width: 15px; height: 15px; flex: 0 0 auto; }

/* --- „Kaufen beim Fachbetrieb"-Band (Blau, mit weißer Kontaktkarte) --- */
.why-band {
  display: grid; grid-template-columns: 1fr; gap: clamp(24px, 4vw, 48px);
  border-radius: var(--mm-radius-lg); padding: clamp(24px, 4vw, 52px);
  background: linear-gradient(120deg, var(--mm-blue) 0%, var(--mm-blue-600) 100%);
  color: #fff; box-shadow: var(--mm-shadow-lg);
}
.why-band h2 { color: #fff; margin: 6px 0 12px; }
.why-band__body > p { color: rgba(255,255,255,.88); max-width: 60ch; }
.why-band__points { display: grid; gap: 12px; margin-top: 20px; }
.why-band__points li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; font-weight: 600; color: #fff; }
.why-band__points svg { width: 19px; height: 19px; color: var(--mm-orange-on-dark); flex: 0 0 auto; margin-top: 2px; }
.why-band__card {
  background: #fff; color: var(--mm-ink); align-self: center;
  border-radius: var(--mm-radius); padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--mm-shadow-lg);
  display: flex; flex-direction: column; gap: 14px;
}
.why-band__card-kicker { font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--mm-orange-text); }
.why-band__phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mm-font-display); font-weight: 800; font-size: 1.45rem; color: var(--mm-blue); }
.why-band__phone svg { width: 22px; height: 22px; color: var(--mm-orange); flex: 0 0 auto; }
.why-band__meta { display: flex; flex-direction: column; gap: 8px; }
.why-band__meta li { display: flex; gap: 9px; align-items: flex-start; font-size: .9rem; color: var(--mm-muted); }
.why-band__meta svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 3px; color: var(--mm-blue); }
.why-band__meta a { overflow-wrap: anywhere; }
.why-band__meta a:hover { color: var(--mm-blue); text-decoration: underline; }

/* --- Lead-Sektion (#anfrage): Argumente links, Formular-Karte rechts --- */
.lead-wrap { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.lead-intro h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 8px 0 12px; }
.lead-intro__text { color: var(--mm-muted); max-width: 56ch; }
.lead-intro__points { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.lead-intro__points li { display: flex; gap: 10px; align-items: flex-start; font-size: .97rem; font-weight: 600; }
.lead-intro__points svg { width: 19px; height: 19px; color: var(--mm-orange); flex: 0 0 auto; margin-top: 3px; }
.lead-intro__alt {
  margin-top: 28px; padding: 18px 20px;
  border: 1px solid var(--mm-line); border-radius: var(--mm-radius); background: var(--mm-bg-soft);
  display: flex; flex-direction: column; gap: 4px;
}
.lead-intro__alt span { font-size: .85rem; font-weight: 700; color: var(--mm-muted); }
.lead-intro__phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mm-font-display); font-weight: 800; font-size: 1.35rem; color: var(--mm-blue); }
.lead-intro__phone svg { width: 20px; height: 20px; color: var(--mm-orange); flex: 0 0 auto; }
.lead-intro__alt small { color: var(--mm-muted); font-size: .82rem; }
.lead-card {
  background: #fff; border: 1px solid var(--mm-line); border-radius: var(--mm-radius-lg);
  box-shadow: var(--mm-shadow-lg); padding: clamp(22px, 3.4vw, 34px);
}
.lead-card h3 { font-size: 1.3rem; }
.lead-card__sub { color: var(--mm-muted); font-size: .92rem; margin: 6px 0 18px; }
.lead-card .form-success { margin-bottom: 14px; }
.lead-card .form-note { margin-top: 12px; text-align: center; }
.muted-opt { font-weight: 500; color: var(--mm-muted); font-size: .78rem; }

/* --- Sticky-Kaufleiste (nur Desktop – Mobile hat die .action-bar) --- */
.pdp-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--mm-line); box-shadow: 0 -6px 24px rgba(14,42,82,.08);
  transform: translateY(100%); visibility: hidden;
  transition: transform .3s var(--mm-ease), visibility 0s linear .3s;
}
.pdp-bar.is-visible { transform: translateY(0); visibility: visible; transition: transform .3s var(--mm-ease), visibility 0s; }
.pdp-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 10px; }
.pdp-bar__info { display: flex; flex-direction: column; line-height: 1.25; }
.pdp-bar__info strong { font-family: var(--mm-font-display); font-weight: 800; font-size: 1.05rem; }
.pdp-bar__info span { font-size: .85rem; font-weight: 700; color: var(--mm-orange-text); }
.pdp-bar__actions { display: flex; align-items: center; gap: 18px; }
.pdp-bar__phone { display: inline-flex; gap: 8px; align-items: center; font-weight: 800; color: var(--mm-blue); }
.pdp-bar__phone svg { width: 18px; height: 18px; color: var(--mm-orange); flex: 0 0 auto; }
.pdp-bar .btn { padding: 12px 24px; }

/* --- Responsive für » 21 --- */
@media (min-width: 860px) {
  .video-band { grid-template-columns: 1.15fr .85fr; }
  .video-band__player { width: min(100%, 340px); }
}
@media (min-width: 900px) {
  .why-band { grid-template-columns: 1.35fr .65fr; align-items: center; }
  .lead-wrap { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1200px) {
  .pdp-bar { display: block; }
}

/* » 22  CRO-NACHRÜSTUNGEN (2026-07-06) ================================
   Bausteine aus dem Conversion-Audit: Preisanker, Cross-Sell-Band,
   Telefon im Mobilmenü, größere Touch-Ziele, mobile Sticky-Diät. */

/* --- Preisanker-Zeile im Kategorie-Kopf ("9 Angebote · ab 59 €/Tag …") --- */
.page-anchor {
  display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center;
  margin-top: 14px; font-size: .92rem; font-weight: 700; color: var(--mm-blue);
}
.page-anchor span {
  background: rgba(27,79,156,.08); border-radius: 999px; padding: 6px 13px;
}
.page-anchor .is-price { background: var(--mm-orange-cta); color: #fff; }

/* --- Preis-Badge auf den Kategorie-Kacheln der Startseite --- */
.cat-tile__price {
  position: absolute; z-index: 2; top: 12px; left: 12px;
  display: inline-flex; align-items: center;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(14,42,82,.62); border: 1px solid rgba(255,255,255,.25);
  -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  color: #fff; font-size: .74rem; font-weight: 800; letter-spacing: .02em;
}

/* --- Cross-Sell-Band auf den Kategorieseiten ("Passt dazu") --- */
.cross-band {
  display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; justify-content: space-between;
  border: 1px solid var(--mm-line); border-left: 5px solid var(--mm-orange);
  border-radius: var(--mm-radius); background: #fff; box-shadow: var(--mm-shadow-sm);
  padding: clamp(20px, 3vw, 30px);
}
.cross-band h3 { margin: 4px 0 6px; }
.cross-band p { color: var(--mm-muted); max-width: 60ch; }
.cross-band__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- Hero: dezente Kauf-Zeile unter den Badges --- */
.hero__saleline { margin-top: 20px; font-size: .95rem; }
.hero__saleline a {
  display: inline-flex; gap: 8px; align-items: center;
  color: rgba(255,255,255,.88); text-decoration: underline; text-underline-offset: 3px; font-weight: 600;
}
.hero__saleline a:hover { color: #fff; }
.hero__saleline svg { width: 16px; height: 16px; color: var(--mm-orange); flex: 0 0 auto; }

/* --- Telefonzeile im mobilen Off-Canvas-Menü --- */
.mobile-menu__hours { display: block; text-align: center; font-size: .85rem; color: var(--mm-muted); margin-top: 10px; }
.mobile-menu .btn + .btn { margin-top: 12px; }

/* --- FAQ-Abschluss: Handlungsmöglichkeit in jeder Scroll-Tiefe --- */
.faq-more { max-width: 820px; margin: 22px auto 0; text-align: center; color: var(--mm-muted); font-size: .95rem; }
.faq-more a { color: var(--mm-blue); font-weight: 700; }
.faq-more a:hover { text-decoration: underline; }

/* --- Touch-Ziele ≥ 44px (iOS-Empfehlung) --- */
.product-card__cta { padding: 13px 16px; }
.nav__actions .btn { padding: 12px 20px; }

/* --- Drawer: sicherer Abstand zur iPhone-Home-Bar + kein Scroll-Durchrutschen --- */
.drawer__body { padding-bottom: calc(28px + env(safe-area-inset-bottom)); overscroll-behavior: contain; }
.mobile-menu { overscroll-behavior: contain; }

/* --- Mobile Sticky-Diät: Topbar klappt beim Scrollen ein (<1200px).
   Der JS-Hook .is-scrolled existiert bereits (main.js Block 1). --- */
@media (max-width: 1199px) {
  .topbar { max-height: 76px; overflow: hidden; transition: max-height .25s var(--mm-ease); }
  .site-header.is-scrolled .topbar { max-height: 0; }
  .filter-bar { top: var(--mm-header-h); }
}

/* --- Sehr schmale Screens: Topbar einzeilig halten (Sticky-Offsets!) --- */
@media (max-width: 379px) {
  .topbar { font-size: .78rem; }
  .topbar .container, .topbar__group { gap: 10px; }
}
@media (max-width: 344px) {
  .topbar__group:first-child .topbar__item:nth-child(2) { display: none; }
}

/* » 23  COOKIE-/CONSENT-BANNER (Google Consent Mode v2) ================
   Wird von consent.js dynamisch in den <body> gehängt. Bewusst als
   dezente Bottom-Bar (kein blockierendes Overlay) – Rechtstexte im
   Footer bleiben erreichbar, Scrollen bleibt möglich. */
.consent-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9000;
  background: var(--mm-ink, #0a1f3e);
  color: #fff;
  box-shadow: 0 -8px 30px rgba(10, 31, 62, .35);
  padding: 16px clamp(16px, 4vw, 32px);
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  font-size: .92rem;
  line-height: 1.5;
}
.consent-banner__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.consent-banner__text { flex: 1 1 420px; }
.consent-banner__text a { color: #fff; text-decoration: underline; }
.consent-banner__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  flex-wrap: wrap;
}
.consent-banner__actions .btn { min-height: 44px; white-space: nowrap; }
.consent-banner__actions .btn--outline {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  background: transparent;
}
.consent-banner__actions .btn--outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}
@media (max-width: 640px) {
  .consent-banner { font-size: .88rem; }
  .consent-banner__actions { width: 100%; }
  .consent-banner__actions .btn { flex: 1 1 auto; }
}
