/* =====================================================================
   Zweirad Experte Frerichs – Shop-Seiten (Listing + Produkt)
   Baut auf styles.css auf (Tokens, Header, Footer, Action-Bar)
   ===================================================================== */

/* Header: kurzes CTA-Label auf Mobil (verhindert Überlappung mit Öffnungszeiten) */
.cta-s { display: none; }
@media (max-width: 899px) {
  .cta-l { display: none; }
  .cta-s { display: inline; }
}

/* ---------- Mobile Navigation (Burger + Panel) ---------- */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 9px; margin-left: 0.5rem;
  border: 0; background: none; cursor: pointer; flex: 0 0 auto;
}
.nav-burger span {
  display: block; height: 2.5px; width: 100%; border-radius: 2px;
  background: var(--ink); transition: transform 0.28s var(--ease), opacity 0.2s;
}
.nav-burger.offen span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.offen span:nth-child(2) { opacity: 0; }
.nav-burger.offen span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-panel {
  position: fixed; inset: var(--header-h) 0 0; z-index: 60;
  background: #fff; isolation: isolate;
  opacity: 0; pointer-events: none; transition: opacity 0.22s var(--ease);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.nav-panel.offen { opacity: 1; pointer-events: auto; }
.np-inner {
  background: #fff; padding: 0.5rem 1.25rem 2.5rem; min-height: 100%;
  transform: translateY(-10px); transition: transform 0.28s var(--ease);
}
.nav-panel.offen .np-inner { transform: none; }
.np-item {
  display: grid; grid-template-columns: 1fr 18px; align-items: center;
  gap: 0 0.8rem; padding: 0.85rem 0.2rem;
  border-bottom: 1px solid var(--surface);
}
.np-item svg { grid-column: 2; grid-row: 1 / span 2; width: 18px; height: 18px; color: var(--hairline); }
.np-label { grid-column: 1; grid-row: 1; font-size: 1.05rem; font-weight: 900; letter-spacing: -0.01em; }
.np-sub { grid-column: 1; grid-row: 2; font-size: 0.82rem; color: var(--ink-soft); }
.np-item.akzent .np-label { color: var(--accent); }
.np-item:active { background: var(--surface); }
.np-trenner { height: 0.6rem; }
.np-kontakt { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1rem; }
.np-tel {
  text-align: center; font-size: 0.9rem; font-weight: 700;
  padding: 0.7rem 0.5rem; border-radius: var(--r-pill);
  background: var(--surface); color: var(--ink);
}
body.nav-offen { overflow: hidden; }

@media (max-width: 899px) {
  .nav-burger { display: flex; margin-left: 0.15rem; width: 38px; padding: 0 8px; }
  /* Kompakter Header: Logo · Öffnungszeiten · Shop · Burger */
  .site-header .container { gap: 0.4rem; padding: 0 0.8rem; }
  .site-header img.logo { height: 36px; }
  .site-header .header-hours {
    display: block; position: static; transform: none;
    margin: 0 auto 0 0.5rem; font-size: 0.82rem; white-space: nowrap;
  }
  .site-header .header-cta {
    display: inline-flex; font-size: 0.85rem;
    padding: 0.42rem 0.9rem; min-height: 36px; flex: 0 0 auto;
  }
}
@media (max-width: 359px) {
  /* Sehr schmale Geräte: Öffnungszeiten weichen dem Shop-Button */
  .site-header .header-hours { display: none; }
}
@media (min-width: 900px) {
  .nav-panel { display: none; }
}

/* ---------- Listing-Kopf ---------- */
.shop-head { padding: 2.2rem 0 0.4rem; }
.shop-head h1 { font-size: clamp(1.7rem, 5vw, 2.6rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; }
.shop-head h1 span { color: var(--ink-soft); }
.shop-head .shop-count { margin-top: 0.4rem; color: var(--ink-soft); font-size: 0.95rem; }

.crumbs { padding-top: 1.1rem; font-size: 0.85rem; color: var(--ink-soft); }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--ink); }
.crumbs span { margin: 0 0.35rem; }

/* ---------- Filter-Leiste ---------- */
.filter-bar {
  position: sticky; top: var(--header-h); z-index: 30;
  background: rgba(245, 245, 247, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px);
  padding: 0.7rem 0; margin-top: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.filter-inner {
  /* Gleiche Breite und Innenabstand wie Überschrift und Produktraster */
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 1rem 1.4rem;
}

/* Beschriftetes Auswahlmenü */
.filter-felder { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.filter-feld { display: flex; flex-direction: column; gap: 0.28rem; }
.filter-titel {
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--ink-soft);
}
.filter-feld select {
  appearance: none; -webkit-appearance: none;
  font-family: inherit; font-size: 0.9rem; font-weight: 700; color: var(--ink);
  border: 1.5px solid var(--hairline); border-radius: var(--r-pill);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.7rem center; background-size: 15px;
  padding: 0.55rem 2.1rem 0.55rem 1rem; cursor: pointer; min-width: 12rem;
  transition: border-color 0.2s;
}
.filter-feld select:hover { border-color: var(--ink); }
.filter-feld select:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
/* Gewählte Marke sichtbar hervorheben */
.filter-feld select.gesetzt {
  background-color: var(--ink); border-color: var(--ink); color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

/* Suchfeld: Lupe links, Zurücksetzen rechts */
.filter-feld-suche { flex: 1 1 20rem; max-width: 26rem; }
.suchfeld { position: relative; display: block; }
.suchfeld input {
  width: 100%; box-sizing: border-box;
  font-family: inherit; font-size: 0.95rem; font-weight: 700; color: var(--ink);
  border: 1.5px solid var(--hairline); border-radius: var(--r-pill); background: #fff;
  padding: 0.55rem 2.4rem 0.55rem 2.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.suchfeld input::placeholder { color: var(--ink-soft); font-weight: 400; }
.suchfeld input::-webkit-search-cancel-button { display: none; }
.suchfeld input:hover { border-color: var(--ink); }
.suchfeld input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(237, 108, 43, 0.18);
}
.such-lupe {
  position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--ink-soft); pointer-events: none;
}
.suchfeld input:focus + .such-leeren, .such-leeren { color: var(--ink-soft); }
.such-leeren {
  position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border: 0; border-radius: 50%;
  background: var(--surface); color: var(--ink-soft);
  font-size: 1.15rem; line-height: 1; cursor: pointer;
}
.such-leeren:hover { background: var(--ink); color: #fff; }

/* Vorschlagsliste unter dem Suchfeld */
.such-vorschlaege {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 40;
  background: #fff; border: 1.5px solid var(--hairline); border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  max-height: 21rem; overflow-y: auto; overscroll-behavior: contain;
  padding: 0.4rem;
}
.sv-gruppe {
  font-size: 0.68rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); padding: 0.5rem 0.75rem 0.25rem;
}
.sv-eintrag {
  display: flex; align-items: center; gap: 0.6rem; width: 100%;
  border: 0; background: none; cursor: pointer; text-align: left;
  font-family: inherit; font-size: 0.92rem; color: var(--ink);
  padding: 0.5rem 0.75rem; border-radius: 10px;
}
.sv-eintrag:hover, .sv-eintrag.aktiv { background: var(--surface); }
.sv-eintrag b { font-weight: 900; }
.sv-eintrag .sv-marke { color: var(--ink-soft); font-weight: 700; }
.sv-eintrag .sv-anzahl { margin-left: auto; font-size: 0.78rem; color: var(--ink-soft); white-space: nowrap; }
.sv-eintrag .sv-punkt { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto; }
.sv-eintrag .sv-punkt.in { background: #1e9e50; }
.sv-eintrag .sv-punkt.out { background: var(--hairline); }

/* Hinweis, wenn die Suche die Kategorie überschreibt */
.such-hinweis {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  max-width: 1200px; margin: 0 auto; padding: 0.7rem 1.25rem 0;
  font-size: 0.9rem; color: var(--ink-soft);
}
.such-hinweis b { color: var(--ink); }
.such-hinweis button {
  border: 1.5px solid var(--hairline); border-radius: var(--r-pill); background: #fff;
  font-family: inherit; font-size: 0.82rem; font-weight: 700; color: var(--ink);
  padding: 0.28rem 0.8rem; cursor: pointer;
}
.such-hinweis button:hover { border-color: var(--ink); }

.filter-schalter { display: flex; flex-direction: column; gap: 0.28rem; }
.filter-schalter-reihe { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.chip {
  flex: 0 0 auto; border: 1.5px solid var(--hairline); border-radius: var(--r-pill);
  background: #fff; color: var(--ink); cursor: pointer;
  font-family: inherit; font-size: 0.88rem; font-weight: 700;
  padding: 0.5rem 1rem; white-space: nowrap;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip.chip-accent.active { background: var(--accent); border-color: var(--accent); }

@media (max-width: 700px) {
  .filter-inner { gap: 0.85rem; }
  .filter-felder { width: 100%; gap: 0.6rem; }
  .filter-feld { flex: 1 1 46%; min-width: 0; }
  /* Suche bekommt mobil eine eigene, volle Zeile */
  .filter-feld-suche { flex: 1 1 100%; max-width: none; }
  .suchfeld input { font-size: 1rem; }
  .filter-feld select {
    min-width: 0; width: 100%; font-size: 0.85rem;
    padding-left: 0.85rem; padding-right: 1.9rem;
    /* Lange Bezeichnungen sauber auslaufen lassen statt hart abschneiden */
    text-overflow: ellipsis;
  }
  .filter-schalter { width: 100%; }
  /* Schnellfilter bleiben als scrollbare Reihe, damit die Leiste flach bleibt */
  .filter-schalter-reihe {
    flex-wrap: nowrap; overflow-x: auto;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    margin: 0 -1.25rem; padding: 0 1.25rem;
  }
  .filter-schalter-reihe::-webkit-scrollbar { display: none; }
}

/* ---------- Produkt-Raster ---------- */
.shop-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  max-width: 1200px; margin: 0 auto; padding: 1.3rem 1.25rem 2.5rem;
}
@media (min-width: 600px) { .shop-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .shop-grid { grid-template-columns: 1fr 1fr 1fr; } }

.shop-grid .product-card { position: relative; }
.badge-sale {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  background: #c6303e; color: #fff; font-size: 0.72rem; font-weight: 900;
  padding: 0.22rem 0.6rem; border-radius: var(--r-pill); letter-spacing: 0.02em;
}
.badge-stock {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.78rem; font-weight: 700; margin-top: 0.25rem;
}
.badge-stock .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge-stock.in { color: #1e9e50; }
.badge-stock.out { color: var(--ink-soft); }
.p-price .uvp { text-decoration: line-through; font-weight: 400; color: var(--ink-soft); font-size: 0.85rem; margin-left: 0.3rem; }

.shop-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; }
.load-more-wrap { display: flex; justify-content: center; padding: 0 0 2.6rem; }

/* ---------- Produktseite ---------- */
.pdp { max-width: 1200px; margin: 0 auto; padding: 1.2rem 1.25rem 2.6rem; }
.pdp-grid { display: grid; gap: 1.2rem; }
@media (min-width: 900px) { .pdp-grid { grid-template-columns: 1.15fr 1fr; align-items: start; } }

.pdp-media {
  background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-rest);
  padding: 1.5rem; position: relative;
}
.pdp-media img { width: 100%; aspect-ratio: 3/2; object-fit: contain; }
.pdp-media .badge-sale { top: 1.2rem; left: 1.2rem; }

.pdp-info { display: flex; flex-direction: column; gap: 0.55rem; }
.pdp-info .p-brand { font-size: 0.95rem; font-weight: 700; color: var(--ink-soft); }
.pdp-info h1 { font-size: clamp(1.5rem, 4.5vw, 2.2rem); font-weight: 900; letter-spacing: -0.015em; line-height: 1.12; }
.pdp-price { display: flex; align-items: baseline; gap: 0.6rem; margin-top: 0.2rem; }
.pdp-price .now { font-size: 1.7rem; font-weight: 900; }
.pdp-price .now.is-sale { color: #c6303e; }
.pdp-price .uvp { text-decoration: line-through; color: var(--ink-soft); }
.pdp-price small { color: var(--ink-soft); font-weight: 400; font-size: 0.8rem; }

.pdp-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.6rem; }
.fact {
  background: #fff; border-radius: var(--r-tile); padding: 0.7rem 0.9rem;
  box-shadow: var(--shadow-rest);
}
.fact b { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); margin-bottom: 0.15rem; }
.fact span { font-size: 0.92rem; font-weight: 700; }

.pdp-desc { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.5rem; }

.pdp-ctas { display: grid; gap: 0.7rem; margin-top: 1rem; }
.pdp-ctas .btn { width: 100%; }
.pdp-note { font-size: 0.82rem; color: var(--ink-soft); text-align: center; }

.pdp-hinweis {
  margin-top: 0.8rem; background: var(--accent-tint); border-radius: var(--r-tile);
  padding: 0.85rem 1rem; font-size: 0.9rem;
}
.pdp-hinweis b { color: var(--accent-dark); }

/* Ähnliche Räder */
.pdp-related { padding-top: 1.2rem; }
.pdp-related h2 { font-size: 1.3rem; font-weight: 900; letter-spacing: -0.01em; margin: 1.4rem 0 1rem; }

/* Skeleton beim Laden */
.skeleton {
  background: linear-gradient(90deg, #ececee 25%, #f6f6f8 50%, #ececee 75%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite;
  border-radius: var(--r-card); min-height: 300px;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- Unterseiten (Werkstatt, Leasing, Finanzierung, Probefahrt) ---------- */
.page-hero { padding: 2.6rem 0 1.2rem; }
.page-hero h1 { font-size: clamp(1.9rem, 5.5vw, 3rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; }
.page-hero h1 span { color: var(--ink-soft); }
.page-hero .lead { margin-top: 0.7rem; color: var(--ink-soft); max-width: 62ch; font-size: 1.08rem; }

.steps-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .steps-grid { grid-template-columns: 1fr 1fr 1fr; } }
.step-card { background: var(--card); border-radius: var(--r-card); padding: 1.4rem 1.3rem; box-shadow: var(--shadow-rest); }
.step-card .nr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-dark);
  font-weight: 900; margin-bottom: 0.6rem;
}
.step-card h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 0.3rem; }
.step-card p { color: var(--ink-soft); font-size: 0.95rem; }

.check-list { display: grid; gap: 0.6rem; margin-top: 0.8rem; }
.check-list li {
  list-style: none; display: flex; gap: 0.6rem; align-items: flex-start;
  background: var(--card); border-radius: var(--r-tile); padding: 0.8rem 1rem;
  box-shadow: var(--shadow-rest); font-size: 0.98rem;
}
.check-list .ok { color: var(--accent); font-weight: 900; flex: 0 0 auto; }

.cta-band {
  background: var(--navy); color: #fff; border-radius: var(--r-card);
  padding: 2rem 1.6rem; text-align: center;
}
.cta-band h2 { font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 900; letter-spacing: -0.015em; }
.cta-band p { margin: 0.5rem auto 1.2rem; color: rgba(255,255,255,0.85); max-width: 50ch; }
.cta-band .btn-row { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }

.rechen-tile { background: var(--card); border-radius: var(--r-card); padding: 1.5rem 1.4rem; box-shadow: var(--shadow-rest); }
.rechen-tile .monat { font-size: 2.2rem; font-weight: 900; color: var(--accent); }
.rechen-tile .monat small { font-size: 1rem; color: var(--ink-soft); font-weight: 400; }
.raten-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 0.6rem; margin-top: 0.9rem; }
.rate { background: var(--surface); border-radius: var(--r-tile); padding: 0.7rem; text-align: center; }
.rate b { display: block; font-size: 1.05rem; font-weight: 900; }
.rate span { font-size: 0.78rem; color: var(--ink-soft); }
.kleingedruckt { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.9rem; }

.zwei-spalten { display: grid; gap: 1rem; }
@media (min-width: 800px) { .zwei-spalten { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ---------- Verfügbarkeits-Ampel (grün = da, rot = anfragen) ---------- */
.stock-zusatz { display: block; font-size: 0.75rem; color: var(--ink-soft); margin-top: 1px; }
.stock-anfrage { display: block; font-size: 0.8rem; font-weight: 700; color: var(--accent); margin-top: 2px; }

.store-avail {
  border: 1px solid var(--hairline); border-radius: var(--r-tile);
  padding: 0.85rem 1rem 0.7rem; margin-top: 0.35rem;
}
.store-avail .sa-head { display: flex; align-items: center; gap: 0.55rem; font-size: 1rem; }
.store-avail .sa-head .dot { width: 11px; height: 11px; border-radius: 50%; background: currentColor; flex: 0 0 auto; }
.store-avail .sa-head strong { font-weight: 900; letter-spacing: -0.005em; }
.store-avail.in { color: #1e9e50; border-color: rgba(30, 158, 80, 0.35); background: #f4fbf6; }
.store-avail.out { color: #c6303e; border-color: rgba(198, 48, 62, 0.3); background: #fdf5f5; }
.store-avail .sa-zusatz { color: var(--ink); font-size: 0.88rem; margin: 0.4rem 0 0; }
.store-avail .sa-btn { width: 100%; margin-top: 0.75rem; min-height: 46px; font-size: 0.95rem; }
.store-avail .sa-stand { font-size: 0.72rem; color: var(--ink-soft); margin: 0.6rem 0 0; }

/* Footer: Filialnamen als Links */
.footer-stores .fs-block strong a { color: inherit; }
.footer-stores .fs-block strong a:hover { color: var(--accent); }

/* Formularfelder auf Unterseiten */
.field { margin-bottom: 0.9rem; }
.field label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.35rem; }
.field input[type=text], .field input[type=email] {
  width: 100%; font: inherit; font-size: 1rem; padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--hairline); border-radius: var(--r-tile); background: #fff;
}
.field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(237,108,43,0.15); }
.check { display: flex; gap: 0.7rem; align-items: flex-start; background: var(--surface);
  border-radius: var(--r-tile); padding: 0.8rem 0.9rem; margin: 0.9rem 0; }
.check input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px; accent-color: var(--accent); }
.check label { font-size: 0.88rem; line-height: 1.45; }
.check label a { color: var(--accent); text-decoration: underline; }

/* ---------- Probefahrt-Buchung ---------- */
.sheet.buchung { max-height: 88vh; overflow-y: auto; }
.bu-rad { color: var(--ink-soft); font-size: 0.92rem; margin: -0.5rem 0 1rem; }
.bu-label { display: block; font-size: 0.85rem; font-weight: 700; margin: 0.9rem 0 0.4rem; }
.bu-label small { font-weight: 400; color: var(--ink-soft); }
.bu-filialen { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.bu-filiale {
  border: 1.5px solid var(--hairline); border-radius: var(--r-tile); background: #fff;
  padding: 0.7rem 0.8rem; text-align: left; cursor: pointer; font-family: inherit;
  transition: border-color 0.2s, background-color 0.2s;
}
.bu-filiale strong { display: block; font-weight: 900; }
.bu-filiale span { font-size: 0.78rem; color: var(--ink-soft); }
.bu-filiale.active { border-color: var(--accent); background: var(--accent-tint); }
.sheet.buchung input[type=date], .sheet.buchung input[type=text],
.sheet.buchung input[type=tel], .sheet.buchung input[type=email] {
  width: 100%; font: inherit; font-size: 1rem; padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--hairline); border-radius: var(--r-tile); background: #fff;
}
.sheet.buchung input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(237,108,43,0.15); }
.bu-slotgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.45rem; }
.bu-slot {
  border: 1.5px solid var(--hairline); border-radius: var(--r-pill); background: #fff;
  font-family: inherit; font-size: 0.88rem; font-weight: 700; padding: 0.45rem 0;
  cursor: pointer; transition: all 0.15s;
}
.bu-slot.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.bu-senden { width: 100%; margin-top: 1rem; }
.bu-hinweis { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.6rem; text-align: center; }
.bu-fehler { background: #fdf2f2; border-left: 3px solid #c6303e; color: #8f1d17;
  font-size: 0.88rem; padding: 0.55rem 0.8rem; border-radius: 8px; margin-top: 0.8rem; }
.bu-erfolg { text-align: center; padding: 0.5rem 0 0.8rem; }
.bu-haken {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; background: #1e9e50; color: #fff;
  font-size: 1.6rem; font-weight: 900; margin-bottom: 0.7rem;
}
.bu-erfolg h4 { font-size: 1.2rem; font-weight: 900; margin-bottom: 0.4rem; }
.bu-erfolg p { font-size: 0.92rem; color: var(--ink-soft); }
.bu-zusammenfassung {
  background: var(--surface); border-radius: var(--r-tile); padding: 0.9rem 1rem;
  margin: 0.8rem 0; font-size: 0.95rem; line-height: 1.5;
}
.bu-zusammenfassung strong { display: block; font-weight: 900; }
.bu-zusammenfassung small { color: var(--ink-soft); }

/* Buchung: Schritt-Nummern, feste Filiale, Sperr-Zustand */
.bu-nr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 900;
  margin-right: 0.45rem; vertical-align: -3px;
}
.bu-filiale-fix {
  background: #f4fbf6; border: 1.5px solid rgba(30, 158, 80, 0.35);
  border-radius: var(--r-tile); padding: 0.7rem 0.9rem;
  font-size: 0.92rem; color: #1e6b3a;
}
.bu-filiale-fix strong { font-weight: 900; }
.bu-block.gesperrt input { opacity: 0.45; pointer-events: none; background: var(--surface); }
.bu-sperr-hinweis {
  background: var(--accent-tint); border-left: 3px solid var(--accent);
  color: var(--accent-dark); font-size: 0.85rem; font-weight: 700;
  padding: 0.5rem 0.8rem; border-radius: 8px; margin-top: 0.5rem;
}
.bu-filiale.pulse { animation: buPulse 0.4s ease-in-out 2; border-color: var(--accent); }
@keyframes buPulse { 50% { transform: scale(1.04); box-shadow: 0 0 0 5px rgba(237,108,43,0.18); } }

/* ---------- Standort-Buchung (Probefahrt-Seite) ---------- */
.standort-buchung { display: grid; gap: 1rem; }
@media (min-width: 700px) { .standort-buchung { grid-template-columns: 1fr 1fr; } }
.sb-karte {
  background: var(--card); border-radius: var(--r-card); padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-rest); display: flex; flex-direction: column;
}
.sb-karte h3 { font-size: 1.35rem; font-weight: 900; letter-spacing: -0.015em; }
.sb-adresse { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.15rem; }
.sb-zeiten {
  background: var(--surface); border-radius: var(--r-tile); padding: 0.7rem 0.9rem;
  margin: 0.9rem 0 1.1rem; font-size: 0.95rem; line-height: 1.5;
}
.sb-btn { width: 100%; margin-bottom: 0.55rem; }
.sb-btn:last-child { margin-bottom: 0; }
.sb-hinweis { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-top: 1.2rem; }
