/* =============================================================
   KönigShield Vorbestell-Funnel — Mobile-First
   Erbt Tokens aus colors_and_type.css / kw-styles.css.
   ============================================================= */

@import url("./colors_and_type.css");

/* === GLOBAL RESET / PAGE === */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--kw-bg-alt); }
body { font-family: var(--kw-font-body); color: var(--kw-body-text); -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* Visually-hidden helper — for real <input> tags inside styled <label> cards (Fluent Forms-ready) */
.fn-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* === CHECKOUT HEADER ===
   Reduzierter Header — nur Logo, Trust-Strip, Telefon. Keine Navigation
   im Checkout (Konversions-Best-Practice). */
.fn-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--kw-border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.fn-header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.fn-header-logo img { width: 130px; height: auto; }
.fn-header-trust {
  display: none;  /* zu eng auf mobile, Logo + Phone reichen */
  align-items: center; gap: 6px;
  font-family: var(--kw-font-display);
  font-size: 11px; font-weight: 600;
  color: var(--kw-text-muted);
  letter-spacing: 0.3px;
}
.fn-header-trust svg { color: var(--kw-success); }
.fn-header-phone {
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  font-family: var(--kw-font-display);
  font-size: 13px; font-weight: 700;
  color: var(--kw-bordeaux);
  text-decoration: none;
}

@media (min-width: 720px) {
  .fn-header-inner { padding: 14px 32px; }
  .fn-header-logo img { width: 170px; }
  .fn-header-trust { display: inline-flex; font-size: 12px; }
}

/* === COUNTDOWN BANNER ===
   Schmal, sand-Hintergrund, durchgehend sichtbar — kein Marketing-Schrei,
   aber präsent in jedem Schritt. */
.fn-countdown {
  background: var(--kw-body-text);
  color: #fff;
  padding: 10px 16px;
}
.fn-countdown-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-family: var(--kw-font-display);
  font-size: 12px; letter-spacing: 0.3px;
}
.fn-countdown-pulse {
  display: inline-flex; flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--kw-bordeaux-light);
  animation: fn-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(176,42,74,0.7);
}
@keyframes fn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176,42,74,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(176,42,74,0); }
}
.fn-countdown-label { opacity: 0.7; font-weight: 400; font-family: var(--kw-font-body); font-size: 13px; }
.fn-countdown-value { color: var(--kw-sand); font-weight: 700; font-size: 13px; }
.fn-countdown-date { margin-left: auto; opacity: 0.5; font-weight: 400; font-family: var(--kw-font-body); font-size: 12px; display: none; }

@media (min-width: 720px) {
  .fn-countdown { padding: 12px 32px; }
  .fn-countdown-inner { font-size: 13px; }
  .fn-countdown-label, .fn-countdown-value, .fn-countdown-date { font-size: 14px; }
  .fn-countdown-date { display: inline; }
}

/* === PAGE LAYOUT === */
.fn-page { min-height: 100vh; display: flex; flex-direction: column; }
.fn-main { flex: 1; }
.fn-shell {
  max-width: 1280px; margin: 0 auto;
  padding: 0 16px 200px;  /* bottom-padding für sticky summary bar mobile */
}
@media (min-width: 720px) {
  .fn-shell { padding: 0 32px 80px; }
}
@media (min-width: 1024px) {
  .fn-shell {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
    padding-bottom: 80px;
  }
}

/* === HERO HEADLINE STRIP (mobile + desktop) === */
.fn-hero {
  padding: 28px 0 8px;
  grid-column: 1 / -1;
}
.fn-hero-overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--kw-font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--kw-bordeaux);
  margin-bottom: 10px;
}
.fn-hero-overline::before {
  content: ''; width: 24px; height: 2px;
  background: var(--kw-bordeaux); border-radius: 1px;
}
.fn-hero h1 {
  font-family: var(--kw-font-display);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 8px;
  color: var(--kw-body-text);
}
.fn-hero-sub {
  font-family: var(--kw-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--kw-text-muted);
  margin: 0;
  max-width: 540px;
}
@media (min-width: 720px) {
  .fn-hero { padding: 40px 0 12px; }
  .fn-hero h1 { font-size: clamp(36px, 5vw, 48px); }
  .fn-hero-sub { font-size: 17px; }
}

/* === STEPPER ===
   Mobile: kompakter Counter "Schritt 2 / 5" + dünne Progress-Linie.
   Desktop: numerische Pills mit Label nebeneinander. */
.fn-stepper {
  margin: 18px 0 22px;
  grid-column: 1 / -1;
}
.fn-stepper-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 8px;
  font-family: var(--kw-font-display);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--kw-text-muted);
}
.fn-stepper-meta-current { color: var(--kw-bordeaux); }
.fn-stepper-track {
  height: 4px;
  background: var(--kw-border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.fn-stepper-fill {
  position: absolute; inset: 0 auto 0 0;
  background: var(--kw-bordeaux);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.fn-stepper-tabs { display: none; }

@media (min-width: 720px) {
  .fn-stepper { margin: 28px 0 32px; }
  .fn-stepper-meta { display: none; }
  .fn-stepper-track { display: none; }
  .fn-stepper-tabs {
    display: flex;
    gap: 4px;
    position: relative;
  }
  .fn-stepper-tab {
    flex: 1 1 0; min-width: 0;
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px 12px 12px;
    border: 0; background: transparent;
    text-align: left;
    border-top: 3px solid var(--kw-border);
    transition: border-color var(--kw-transition);
  }
  .fn-stepper-tab-num {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--kw-cream-dark);
    color: var(--kw-text-muted);
    font-family: var(--kw-font-display);
    font-size: 12px; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all var(--kw-transition);
  }
  .fn-stepper-tab-label {
    font-family: var(--kw-font-display);
    font-size: 13px; font-weight: 600;
    color: var(--kw-text-muted);
    line-height: 1.2;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .fn-stepper-tab.is-done { border-top-color: var(--kw-bordeaux); cursor: pointer; }
  .fn-stepper-tab.is-done .fn-stepper-tab-num { background: var(--kw-bordeaux); color: #fff; }
  .fn-stepper-tab.is-done .fn-stepper-tab-label { color: var(--kw-body-text); }
  .fn-stepper-tab.is-current { border-top-color: var(--kw-bordeaux); }
  .fn-stepper-tab.is-current .fn-stepper-tab-num {
    background: var(--kw-bordeaux); color: #fff;
    box-shadow: 0 0 0 4px rgba(151,35,63,0.15);
  }
  .fn-stepper-tab.is-current .fn-stepper-tab-label { color: var(--kw-body-text); }
}

/* === STEP CARD (container für die Step-Inhalte) === */
.fn-step {
  background: #fff;
  border: 1px solid var(--kw-border);
  border-radius: var(--kw-radius);
  padding: 24px 20px;
  box-shadow: var(--kw-shadow-sm);
}
@media (min-width: 720px) {
  .fn-step { padding: 36px 40px; }
}

.fn-step-head { margin-bottom: 24px; }
.fn-step-eyebrow {
  font-family: var(--kw-font-display);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.8px;
  color: var(--kw-bordeaux);
  margin: 0 0 8px;
}
.fn-step h2 {
  font-family: var(--kw-font-display);
  font-size: clamp(22px, 5.5vw, 28px);
  font-weight: 700; line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 8px;
  color: var(--kw-body-text);
}
.fn-step-lead {
  font-family: var(--kw-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--kw-text-muted);
  margin: 0;
}

/* === SECTION LABEL inside step === */
.fn-section { margin-top: 28px; }
.fn-section:first-child { margin-top: 0; }
.fn-section-label {
  font-family: var(--kw-font-display);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--kw-body-text);
  margin: 0 0 12px;
  display: flex; align-items: baseline; justify-content: space-between;
}
.fn-section-label-hint {
  font-family: var(--kw-font-body);
  font-size: 12px; font-weight: 400;
  color: var(--kw-text-muted);
  text-transform: none;
  letter-spacing: 0;
}

/* === PRODUCT PICKER (Schritt 1, Größe) ===
   Reduziert: nur Größe + Preis. Kein Bild, keine Specs. */
.fn-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fn-product {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  background: var(--kw-bg-alt);
  border: 2px solid var(--kw-border);
  border-radius: var(--kw-radius);
  padding: 28px 16px;
  cursor: pointer;
  transition: all var(--kw-transition);
  min-height: 130px;
  gap: 8px;
}
.fn-product:hover { border-color: rgba(151,35,63,0.4); }
.fn-product.is-selected {
  border-color: var(--kw-bordeaux);
  background: #fff;
  box-shadow: 0 8px 24px rgba(151,35,63,0.12);
}
.fn-product-name {
  font-family: var(--kw-font-display);
  font-size: 28px; font-weight: 700;
  color: var(--kw-body-text);
  line-height: 1;
  letter-spacing: -0.3px;
}
.fn-product-price-now {
  font-family: var(--kw-font-display);
  font-size: 17px; font-weight: 700;
  color: var(--kw-bordeaux);
  letter-spacing: -0.2px;
  line-height: 1;
}
.fn-product-radio {
  position: absolute; top: 12px; right: 12px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--kw-border);
  background: #fff;
  transition: all var(--kw-transition);
}
.fn-product.is-selected .fn-product-radio {
  border-color: var(--kw-bordeaux);
  background: var(--kw-bordeaux);
  box-shadow: inset 0 0 0 3px #fff;
}

/* === DELIVERY CALLOUT — Frühbucher-Versprechen "Lieferung November 2026" === */
.fn-delivery-callout {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--kw-body-text);
  color: #fff;
  padding: 16px 18px;
  border-radius: var(--kw-radius);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.fn-delivery-callout::before {
  content: '';
  position: absolute; right: -40px; top: -40px;
  width: 140px; height: 140px;
  background: var(--kw-bordeaux);
  opacity: 0.6;
  border-radius: 50%;
  filter: blur(40px);
}
.fn-delivery-callout-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--kw-bordeaux);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative; z-index: 1;
}
.fn-delivery-callout > div {
  position: relative; z-index: 1;
  font-family: var(--kw-font-body);
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.fn-delivery-callout strong {
  font-family: var(--kw-font-display);
  font-size: 15px; font-weight: 700;
  color: var(--kw-sand);
  letter-spacing: 0.2px;
}

/* === SAVINGS BANNER — am Ende Step 1 dick auf den Tisch === */
.fn-savings-banner {
  margin-top: 24px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #97233F 0%, #7A1C33 100%);
  color: #fff;
  border-radius: var(--kw-radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(151,35,63,0.25);
}
.fn-savings-banner::before {
  content: '';
  position: absolute; left: -60px; top: -60px;
  width: 200px; height: 200px;
  background: var(--kw-sand);
  opacity: 0.1;
  border-radius: 50%;
}
.fn-savings-banner::after {
  content: '';
  position: absolute; right: -40px; bottom: -40px;
  width: 160px; height: 160px;
  background: var(--kw-sand);
  opacity: 0.06;
  border-radius: 50%;
}
.fn-savings-banner-label {
  font-family: var(--kw-font-display);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--kw-sand);
  margin-bottom: 6px;
  position: relative; z-index: 1;
}
.fn-savings-banner-amount {
  font-family: var(--kw-font-display);
  font-size: clamp(38px, 9vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0 0 10px;
  position: relative; z-index: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.fn-savings-banner-breakdown {
  font-family: var(--kw-font-body);
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,0.88);
  position: relative; z-index: 1;
  max-width: 460px;
  margin: 0 auto;
}
.fn-savings-banner-plus {
  display: inline-block;
  margin: 0 8px;
  font-family: var(--kw-font-display);
  font-weight: 700;
  color: var(--kw-sand);
}

/* === PACKAGE PICKER ===
 * Mobile: column-reverse (Array ist bronze→silber→gold → Mobile-Render gold oben).
 * Desktop ≥600 px: 3-Spalten-Grid, Reihenfolge wie Array (bronze links, gold rechts).
 *
 * Prefix `body.fn-standalone-body` schlägt wizard.css `.fn-pkg-grid { display:grid }`
 * via Specificity (Plugin lädt seine CSS auch auf der Funnel-Seite).
 */
body.fn-standalone-body .fn-pkg-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
@media (min-width: 600px) {
  body.fn-standalone-body .fn-pkg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
}

.fn-pkg {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--kw-bg-alt);
  border: 2px solid var(--kw-border);
  border-radius: var(--kw-radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--kw-transition);
}
.fn-pkg:hover { border-color: rgba(151,35,63,0.4); }
.fn-pkg.is-selected {
  border-color: var(--kw-bordeaux);
  background: #fff;
  box-shadow: 0 8px 24px rgba(151,35,63,0.12);
}

.fn-pkg-percent {
  flex-shrink: 0;
  width: 68px;
  display: flex; align-items: baseline; justify-content: center;
  font-family: var(--kw-font-display);
  color: var(--kw-text-muted);
  letter-spacing: -1px;
  transition: color var(--kw-transition);
}
.fn-pkg-percent-num { font-size: 36px; font-weight: 700; line-height: 1; }
.fn-pkg-percent-sym { font-size: 20px; font-weight: 600; margin-left: 1px; }
.fn-pkg.is-selected .fn-pkg-percent { color: var(--kw-bordeaux); }

.fn-pkg-info {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 3px;
}
.fn-pkg-label {
  font-family: var(--kw-font-display);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.6px;
  color: var(--kw-body-text);
}
.fn-pkg-benefits {
  display: flex; flex-direction: column;
  gap: 1px;
}
.fn-pkg-discount {
  font-family: var(--kw-font-display);
  font-size: 15px; font-weight: 700;
  color: var(--kw-bordeaux);
  letter-spacing: 0;
}
.fn-pkg-voucher {
  font-family: var(--kw-font-body);
  font-size: 12.5px;
  color: var(--kw-text-muted);
  line-height: 1.3;
}

.fn-pkg-radio {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--kw-border);
  background: #fff;
  transition: all var(--kw-transition);
}
.fn-pkg.is-selected .fn-pkg-radio {
  border-color: var(--kw-bordeaux);
  background: var(--kw-bordeaux);
  box-shadow: inset 0 0 0 4px #fff;
}

/* Desktop: 3-Spalten-Grid → Karten vertikal stapeln, Radio in Ecke */
@media (min-width: 600px) {
  .fn-pkg {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 16px 18px;
  }
  .fn-pkg-percent { width: auto; justify-content: center; }
  .fn-pkg-percent-num { font-size: 44px; }
  .fn-pkg-percent-sym { font-size: 22px; }
  .fn-pkg-info { align-items: center; flex: none; }
  .fn-pkg-benefits { align-items: center; text-align: center; }
  .fn-pkg-radio {
    position: absolute;
    top: 12px; right: 12px;
  }
}

/* === BUTTONS / CTAs === */
.fn-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}
.fn-nav-primary-desktop { display: none; }
@media (min-width: 1024px) {
  /* Issue #695: Weiter/Zurück Desktop direkt unter Bezahlungsüberblick sichtbar
     halten. Sticky-Bottom im Viewport, damit Buttons immer ohne Scroll erreichbar
     sind — auch wenn Step-Body sehr lang ist. Mobile bleibt unberührt. */
  .fn-nav {
    margin-top: 28px;
    padding: 16px 18px;
    border: 1px solid var(--kw-border);
    border-radius: var(--kw-radius);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: var(--kw-shadow-md);
    position: sticky;
    bottom: 20px;
    z-index: 5;
  }
  .fn-nav-primary-desktop { display: inline-flex; }
}
.fn-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--kw-font-display);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.3px;
  padding: 14px 22px;
  min-height: 52px;
  border-radius: 8px;
  border: 0;
  text-decoration: none;
  transition: all var(--kw-transition);
  cursor: pointer;
}
.fn-btn-primary {
  background: var(--kw-bordeaux);
  color: #fff;
  box-shadow: 0 4px 16px rgba(151,35,63,0.25);
  flex: 1;
  max-width: 280px;
}
.fn-btn-primary:hover {
  background: var(--kw-bordeaux-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(151,35,63,0.35);
}
.fn-btn-primary:disabled,
.fn-btn-primary.is-disabled {
  background: var(--kw-cream-dark);
  color: var(--kw-text-light);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.fn-btn-ghost {
  background: transparent;
  color: var(--kw-text-muted);
  border: 0;
  padding: 14px 12px;
}
.fn-btn-ghost:hover { color: var(--kw-bordeaux); }

/* === ZUBEHÖR-LIGHTBOX-SLIDER ===
 * Hauptbild + Prev/Next-Pfeile + Counter + Thumbnail-Strip.
 * Mobile: Swipe via onTouchStart/End in JS. Tastatur: ←/→ + Esc.
 * Tracking: kw_acc_lightbox_open + kw_acc_lightbox_image_switch (Matomo via Browser-Bus). */
.fn-lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  padding: 20px;
  cursor: zoom-out;
}
.fn-lightbox-box {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 14px;
  max-width: min(960px, 95vw);
  max-height: 95vh;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  cursor: auto;
  display: flex; flex-direction: column;
}
.fn-lightbox-close {
  position: absolute; top: -14px; right: -14px;
  width: 36px; height: 36px;
  border-radius: 50%; border: none;
  background: #1A1A1A; color: #fff;
  font-size: 22px; line-height: 1; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.fn-lightbox-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 0;
}
.fn-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 70vh;
  border-radius: 4px;
  margin: 0 auto;
  user-select: none;
  -webkit-user-drag: none;
}
.fn-lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%; border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #1A1A1A;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: background var(--kw-transition);
}
.fn-lightbox-nav:hover { background: #fff; }
.fn-lightbox-nav--prev { left: 8px; }
.fn-lightbox-nav--next { right: 8px; }
.fn-lightbox-counter {
  position: absolute;
  bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55); color: #fff;
  font-family: var(--kw-font-display);
  font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 12px;
}
.fn-lightbox-name {
  margin-top: 10px;
  text-align: center;
  font-family: var(--kw-font-display);
  font-size: 15px; font-weight: 600; font-style: normal;
  color: #1A1A1A;
}
.fn-lightbox-tagline {
  margin-top: 6px;
  text-align: center;
  font-family: var(--kw-font-display);
  font-size: 13px; line-height: 1.45; font-style: normal;
  color: var(--kw-text-muted);
}
.fn-lightbox-thumbs {
  margin-top: 12px;
  display: flex; flex-wrap: nowrap; gap: 6px;
  overflow-x: auto;
  padding: 4px 2px;
  -webkit-overflow-scrolling: touch;
}
.fn-lightbox-thumb {
  flex: 0 0 auto;
  width: 60px; height: 60px;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 0; cursor: pointer;
  background: #f6f7f7;
  overflow: hidden;
  transition: border-color var(--kw-transition);
}
.fn-lightbox-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.fn-lightbox-thumb:hover { border-color: var(--kw-bordeaux); }
.fn-lightbox-thumb.is-active { border-color: var(--kw-bordeaux); }

@media (max-width: 640px) {
  .fn-lightbox-box { padding: 10px; max-width: 96vw; }
  .fn-lightbox-img { max-height: 60vh; }
  .fn-lightbox-nav { width: 36px; height: 36px; }
  .fn-lightbox-nav--prev { left: 4px; }
  .fn-lightbox-nav--next { right: 4px; }
  .fn-lightbox-thumb { width: 50px; height: 50px; }
}

/* === ACCESSORY CHECKBOX CARDS === */
.fn-acc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .fn-acc-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

.fn-acc {
  position: relative;
  display: flex; align-items: stretch; gap: 12px;
  background: var(--kw-bg-alt);
  border: 2px solid var(--kw-border);
  border-radius: var(--kw-radius);
  padding: 14px;
  cursor: pointer;
  transition: all var(--kw-transition);
}
.fn-acc:hover { border-color: rgba(151,35,63,0.4); }
.fn-acc.is-selected {
  border-color: var(--kw-bordeaux);
  background: rgba(151,35,63,0.04);
}
.fn-acc-thumb {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--kw-cream-dark);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--kw-text-light);
  overflow: hidden;
}
.fn-acc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.fn-acc-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.fn-acc-name {
  font-family: var(--kw-font-display);
  font-size: 15px; font-weight: 700;
  color: var(--kw-body-text);
  line-height: 1.2;
}
.fn-acc-desc {
  font-family: var(--kw-font-body);
  font-size: 12px; line-height: 1.4;
  color: var(--kw-text-muted);
}
.fn-acc-price {
  font-family: var(--kw-font-display);
  font-size: 13px; font-weight: 700;
  color: var(--kw-bordeaux);
  margin-top: 4px;
}
.fn-acc-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 4px;
  border: 2px solid var(--kw-border);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  align-self: flex-start;
  margin-top: 2px;
  transition: all var(--kw-transition);
}
.fn-acc.is-selected .fn-acc-check {
  background: var(--kw-bordeaux);
  border-color: var(--kw-bordeaux);
}
.fn-acc-check svg { opacity: 0; color: #fff; transition: opacity 0.15s; }
.fn-acc.is-selected .fn-acc-check svg { opacity: 1; }

/* === Händler-Pill (sichtbar bei hid-Lock im Funnel-Header) === */
.fn-dealer-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(151,35,63,0.04);
  border: 1.5px solid rgba(151,35,63,0.25);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 12px 0 18px;
  font-family: var(--kw-font-body);
}
.fn-dealer-pill-icon {
  flex-shrink: 0;
  color: var(--kw-bordeaux);
  display: inline-flex; align-items: center; justify-content: center;
}
.fn-dealer-pill-body { flex: 1; min-width: 0; }
.fn-dealer-pill-label {
  font-family: var(--kw-font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--kw-text-muted);
  line-height: 1;
  margin-bottom: 3px;
}
.fn-dealer-pill-name {
  font-family: var(--kw-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--kw-body-text);
  line-height: 1.2;
}
@media (max-width: 480px) {
  .fn-dealer-pill { padding: 9px 14px 9px 12px; gap: 10px; }
  .fn-dealer-pill-name { font-size: 13px; }
}

/* === Gewicht-Card (Modal-Trigger statt Checkbox) === */
.fn-acc--gewicht {
  align-items: center;
  cursor: pointer;             /* ganze Karte ist klickbar (öffnet Modal) */
  grid-column: 1 / -1;
}
.fn-acc--gewicht:hover { border-color: rgba(151,35,63,0.6); }
.fn-acc--gewicht:focus-visible { outline: 2px solid var(--kw-bordeaux); outline-offset: 2px; }
.fn-acc--gewicht .fn-acc-check { display: none; }
.fn-acc-action {
  flex-shrink: 0;
  align-self: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid var(--kw-bordeaux);
  background: #fff;
  color: var(--kw-bordeaux);
  font-family: var(--kw-font-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all var(--kw-transition);
  white-space: nowrap;
}
.fn-acc-action:hover { background: var(--kw-bordeaux); color: #fff; }
.fn-acc-action.is-edit { background: var(--kw-bordeaux); color: #fff; }
.fn-acc-action.is-edit:hover { background: #7a1b30; }
.fn-acc--gewicht.is-selected .fn-acc-price { color: var(--kw-bordeaux); font-weight: 700; }

/* === Modal (Gewichtsplatten-Auswahl) === */
.fn-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: fnFadeIn 0.18s ease-out;
}
@keyframes fnFadeIn { from { opacity: 0; } to { opacity: 1; } }
.fn-modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--kw-radius);
  max-width: 440px; width: 100%;
  padding: 28px 24px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  animation: fnSlideUp 0.22s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}
@keyframes fnSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.fn-modal-close {
  position: absolute; top: 8px; right: 10px;
  width: 32px; height: 32px;
  border: none; background: transparent;
  font-size: 28px; line-height: 1;
  color: var(--kw-text-muted);
  cursor: pointer; padding: 0;
}
.fn-modal-close:hover { color: var(--kw-bordeaux); }
.fn-modal-title {
  font-family: var(--kw-font-display);
  font-size: 22px; font-weight: 700;
  color: var(--kw-body-text);
  margin: 0 0 8px;
  line-height: 1.2;
}
.fn-modal-lead {
  font-family: var(--kw-font-body);
  font-size: 15px; line-height: 1.45;
  color: var(--kw-body-text);
  margin: 0 0 20px;
}
.fn-modal-lead .fn-modal-lead-detail {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--kw-text-muted);
}
.fn-modal-spinner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  padding: 12px;
  background: var(--kw-bg-alt);
  border-radius: var(--kw-radius);
  margin-bottom: 16px;
}
.fn-modal-spinner-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--kw-bordeaux);
  background: #fff;
  color: var(--kw-bordeaux);
  font-family: var(--kw-font-display);
  font-size: 24px; font-weight: 700;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--kw-transition);
  padding: 0;
}
.fn-modal-spinner-btn:hover:not(:disabled) { background: var(--kw-bordeaux); color: #fff; }
.fn-modal-spinner-btn:active:not(:disabled) { transform: scale(0.94); }
.fn-modal-spinner-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.fn-modal-spinner-val {
  min-width: 110px;
  text-align: center;
  display: flex; flex-direction: column;
}
.fn-modal-spinner-num {
  font-family: var(--kw-font-display);
  font-size: 32px; font-weight: 700;
  color: var(--kw-body-text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.fn-modal-spinner-unit {
  font-family: var(--kw-font-body);
  font-size: 12px; letter-spacing: 0.8px;
  color: var(--kw-text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.fn-modal-sum {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  border-top: 1px solid var(--kw-border);
  font-family: var(--kw-font-body);
  font-size: 14px;
  color: var(--kw-text-light);
  margin-bottom: 16px;
}
.fn-modal-sum strong {
  font-family: var(--kw-font-display);
  font-size: 18px;
  color: var(--kw-bordeaux);
}
.fn-modal-actions { display: flex; gap: 10px; justify-content: flex-end; }
.fn-modal-btn {
  padding: 10px 22px;
  border-radius: var(--kw-radius);
  border: 2px solid var(--kw-border);
  background: #fff;
  color: var(--kw-text-muted);
  font-family: var(--kw-font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all var(--kw-transition);
}
.fn-modal-btn--ghost:hover { border-color: var(--kw-text-muted); color: var(--kw-body-text); }
.fn-modal-btn--primary { background: var(--kw-bordeaux); border-color: var(--kw-bordeaux); color: #fff; }
.fn-modal-btn--primary:hover { background: #7a1b30; border-color: #7a1b30; }
@media (max-width: 480px) {
  .fn-modal-box { padding: 24px 18px 16px; }
  .fn-modal-title { font-size: 20px; }
  .fn-modal-spinner-btn { width: 48px; height: 48px; }
}

/* === FORM === */
.fn-form-section-title {
  font-family: var(--kw-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--kw-text-muted);
  margin: 22px 0 10px;
}
.fn-form-section-title:first-child { margin-top: 6px; }
.fn-form-section-title small {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  opacity: 0.7;
  margin-left: 4px;
}
.fn-form { display: grid; grid-template-columns: 1fr; gap: 12px; }
/* Mobile: Strasse+Hausnr in 1 Reihe (Strasse breit, Hausnr schmal); PLZ+Ort in 1 Reihe */
.fn-form { grid-template-columns: repeat(6, 1fr); }
.fn-form > .fn-field { grid-column: 1 / -1; }      /* Default: full width */
.fn-form > .fn-field-strasse { grid-column: 1 / span 4; }
.fn-form > .fn-field-hausnr  { grid-column: 5 / span 2; }
.fn-form > .fn-field-plz     { grid-column: 1 / span 2; }
.fn-form > .fn-field-ort     { grid-column: 3 / span 4; }
@media (min-width: 600px) {
  .fn-form > .fn-field { grid-column: span 3; }    /* 2-Spalten Desktop */
  .fn-form > .fn-form-full { grid-column: 1 / -1; }
  .fn-form > .fn-field-strasse { grid-column: 1 / span 4; }
  .fn-form > .fn-field-hausnr  { grid-column: 5 / span 2; }
  .fn-form > .fn-field-plz     { grid-column: 1 / span 2; }
  .fn-form > .fn-field-ort     { grid-column: 3 / span 4; }
}

/* Firmenkunde-Card (Modal-Trigger, Pattern wie Gewicht-Card) */
.fn-firma-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--kw-bg-alt);
  border: 2px solid var(--kw-border);
  border-radius: var(--kw-radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--kw-transition);
}
.fn-firma-card:hover { border-color: rgba(151,35,63,0.5); }
.fn-firma-card:focus-visible { outline: 2px solid var(--kw-bordeaux); outline-offset: 2px; }
.fn-firma-card.is-selected { border-color: var(--kw-bordeaux); background: rgba(151,35,63,0.04); }
.fn-firma-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.fn-firma-name {
  font-family: var(--kw-font-display);
  font-size: 15px; font-weight: 700;
  color: var(--kw-body-text);
  line-height: 1.2;
}
.fn-firma-uid {
  font-family: var(--kw-font-body);
  font-size: 12.5px;
  color: var(--kw-text-muted);
  line-height: 1.3;
}
.fn-field { display: flex; flex-direction: column; gap: 6px; }
.fn-field label {
  font-family: var(--kw-font-display);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.3px;
  color: var(--kw-text-muted);
}
.fn-field input,
.fn-field select {
  font-family: var(--kw-font-body);
  font-size: 16px; /* 16px verhindert iOS-Zoom */
  padding: 13px 14px;
  min-height: 52px;
  border: 1.5px solid var(--kw-border);
  border-radius: 8px;
  background: #fff;
  color: var(--kw-body-text);
  transition: border-color var(--kw-transition);
  -webkit-appearance: none; appearance: none;
}
.fn-field input:focus,
.fn-field select:focus {
  outline: none;
  border-color: var(--kw-bordeaux);
  box-shadow: 0 0 0 3px rgba(151,35,63,0.12);
}
.fn-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* === DEALER PICKER === */
.fn-dealer-suggest {
  background: linear-gradient(135deg, rgba(151,35,63,0.04) 0%, rgba(151,35,63,0.0) 100%);
  border: 1.5px solid rgba(151,35,63,0.15);
  border-radius: var(--kw-radius);
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 12px;
}
.fn-dealer-suggest-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--kw-bordeaux);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.fn-dealer-suggest-body {
  font-family: var(--kw-font-body);
  font-size: 13px; line-height: 1.4;
  color: var(--kw-body-text);
}
.fn-dealer-suggest-body strong { font-family: var(--kw-font-display); font-weight: 700; }

.fn-dealer-list { display: flex; flex-direction: column; gap: 10px; }
.fn-dealer {
  position: relative;
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff;
  border: 2px solid var(--kw-border);
  border-radius: var(--kw-radius);
  padding: 16px;
  cursor: pointer;
  text-align: left;
  transition: all var(--kw-transition);
}
.fn-dealer:hover { border-color: rgba(151,35,63,0.4); }
.fn-dealer.is-selected {
  border-color: var(--kw-bordeaux);
  background: rgba(151,35,63,0.03);
}
.fn-dealer-badge {
  position: absolute; top: -8px; left: 14px;
  background: var(--kw-bordeaux);
  color: #fff;
  font-family: var(--kw-font-display);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 3px;
}
.fn-dealer-pin {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--kw-cream);
  color: var(--kw-bordeaux);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.fn-dealer.is-selected .fn-dealer-pin { background: var(--kw-bordeaux); color: #fff; }

.fn-dealer-body { flex: 1; min-width: 0; }
.fn-dealer-name {
  font-family: var(--kw-font-display);
  font-size: 16px; font-weight: 700;
  color: var(--kw-body-text);
  margin: 0 0 2px;
}
.fn-dealer-addr {
  font-family: var(--kw-font-body);
  font-size: 13px; line-height: 1.4;
  color: var(--kw-text-muted);
  margin: 0 0 6px;
}
.fn-dealer-meta {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  font-family: var(--kw-font-body);
  font-size: 12px; color: var(--kw-text-light);
}
.fn-dealer-meta strong { color: var(--kw-body-text); font-weight: 700; }

/* Region-Pill: zeigt Bundesland des Händlers (subtil, kein lautes Tag) */
.fn-dealer-region {
  display: inline-flex; align-items: center;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--kw-cream-dark, rgba(151,35,63,0.06));
  font-family: var(--kw-font-display);
  font-size: 11px; font-weight: 600; letter-spacing: 0.3px;
  color: var(--kw-body-text);
  text-transform: uppercase;
}

/* Match-Highlight: Händler im Kunden-Bundesland bekommen kleinen Bordeaux-Balken links */
.fn-dealer.is-match-region {
  border-color: var(--kw-bordeaux-light, #B02A4A);
  background: linear-gradient(to right, rgba(151,35,63,0.04) 0, transparent 60%);
}
.fn-dealer.is-match-region .fn-dealer-region {
  background: var(--kw-bordeaux, #97233F);
  color: #fff;
}

/* Step-Meta: kleine Zeile unter Lead, "X Händler in Bundesland · Y weitere" */
.fn-step-meta {
  margin: 8px 0 0;
  font-family: var(--kw-font-display);
  font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
  color: var(--kw-text-muted);
  text-transform: uppercase;
}
.fn-step-meta strong { color: var(--kw-bordeaux, #97233F); font-weight: 700; }

/* holzquelle Brand-Markup (immer klein, Poppins) — site-weit, hier nochmal
   defensiv falls Theme-CSS nicht geladen ist. */
.kw-holzquelle {
  font-family: 'Poppins', var(--kw-font-display);
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0;
  color: #2C4B3A;
}
/* Auf grünem Forest/Hunter-Background erbt der Text die Farbe vom Parent
   (Parent setzt typischerweise color:#fff für Kontrast). */
[style*="background:#2C4B3A"] .kw-holzquelle,
[style*="background: #2C4B3A"] .kw-holzquelle,
[style*="background:#4A6B4E"] .kw-holzquelle,
.has-bg-forest .kw-holzquelle {
  color: inherit;
}

/* Holzquelle-Brand-Tokens — offizielles Forest/Hunter Green
 *   --hq-forest  #2C4B3A (Hauptgrün, Pills, Headings)
 *   --hq-hunter  #4A6B4E (heller Akzent, Hover)
 *   --hq-mist    abgemischtes 8%-Tint als Slot-Hintergrund
 */
.fn-bonus-slot {
  display: flex; align-items: center; gap: 12px;
  margin: 14px 0 0;
  padding: 12px 14px;
  background: #eaf0ec;            /* hq-mist */
  border: 1px solid #c5d4c8;
  border-radius: 8px;
}
.fn-bonus-slot-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: #fff; border-radius: 50%;
  color: #2C4B3A;                 /* hq-forest */
  flex-shrink: 0;
}
.fn-bonus-slot-text {
  flex: 1;
  font-family: var(--kw-font-display);
  font-size: 15px; font-weight: 600;
  color: var(--kw-body-text);
}

/* Gratis-Pill: holzquelle-Forest-Green Badge (offizielle Brand-Farbe) */
.fn-pill {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: 12px;
  font-family: var(--kw-font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.fn-pill--free {
  background: #2C4B3A;            /* hq-forest */
  color: #fff;
}

/* Bonus-Card (Step 2 oben bei Holzquelle-Edition) — locked, immer dabei */
.fn-acc.is-bonus {
  background: rgba(151,35,63,0.06);
  border-color: var(--kw-bordeaux-light, #B02A4A);
  cursor: default;
  pointer-events: none;
  margin-bottom: 8px;
}
.fn-acc-price--free {
  color: var(--kw-bordeaux, #97233F);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.fn-acc-check--locked {
  background: var(--kw-bordeaux, #97233F);
  color: #fff;
  border-color: var(--kw-bordeaux, #97233F);
}

/* Sidebar-Hinweis bei Holzquelle-Edition (analog zu fn-summary-voucher) */
.fn-summary-holzquelle {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 12px; padding: 12px;
  background: rgba(151,35,63,0.06);
  border-left: 3px solid var(--kw-bordeaux, #97233F);
  border-radius: 4px;
  font-family: var(--kw-font-body);
  font-size: 13px;
  color: var(--kw-body-text);
  line-height: 1.4;
}
.fn-summary-holzquelle svg { flex-shrink: 0; color: var(--kw-bordeaux, #97233F); margin-top: 2px; }
.fn-summary-holzquelle small { display: block; margin-top: 2px; color: var(--kw-text-muted); font-size: 11px; }

/* Such-Feld: Step 4 Volltext-Filter (Name/Ort/PLZ/Region) */
.fn-search {
  position: relative;
  display: flex; align-items: center;
  margin: 0 0 16px;
  background: #fff;
  border: 1px solid var(--kw-border);
  border-radius: 8px;
  transition: border-color var(--kw-transition), box-shadow var(--kw-transition);
}
.fn-search:focus-within {
  border-color: var(--kw-bordeaux, #97233F);
  box-shadow: 0 0 0 3px rgba(151,35,63,0.12);
}
.fn-search-icon {
  flex-shrink: 0;
  margin: 0 0 0 12px;
  color: var(--kw-text-muted);
}
.fn-search-input {
  flex: 1;
  border: 0; outline: none;
  background: transparent;
  padding: 12px 12px;
  font-family: var(--kw-font-body);
  font-size: 15px;
  color: var(--kw-body-text);
}
.fn-search-input::placeholder { color: var(--kw-text-muted); }
.fn-search-clear {
  flex-shrink: 0;
  margin-right: 6px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 0; background: var(--kw-bg-alt, #f0eee8);
  color: var(--kw-text-muted);
  font-size: 18px; line-height: 1;
  cursor: pointer;
  transition: all var(--kw-transition);
}
.fn-search-clear:hover { background: var(--kw-bordeaux); color: #fff; }

/* Empty-State: keine Händler im gewählten Land */
.fn-empty {
  padding: 24px;
  border: 1px dashed var(--kw-border);
  border-radius: 8px;
  background: var(--kw-bg-alt, #fafaf7);
  font-family: var(--kw-font-body);
  color: var(--kw-text-muted);
  text-align: center;
}
.fn-empty a { color: var(--kw-bordeaux); font-weight: 700; }
.fn-dealer-radio {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--kw-border);
  background: #fff;
  transition: all var(--kw-transition);
  margin-top: 8px;
}
.fn-dealer.is-selected .fn-dealer-radio {
  border-color: var(--kw-bordeaux);
  background: var(--kw-bordeaux);
  box-shadow: inset 0 0 0 4px #fff;
}

/* === CONFIRM STEP — Summary review === */
.fn-review {
  display: flex; flex-direction: column; gap: 10px;
}
.fn-review-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--kw-border);
  font-family: var(--kw-font-body);
}
.fn-review-row:last-child { border-bottom: 0; }
.fn-review-row-label {
  font-size: 13px;
  color: var(--kw-text-muted);
}
.fn-review-row-value {
  font-family: var(--kw-font-display);
  font-size: 14px; font-weight: 600;
  color: var(--kw-body-text);
  text-align: right;
}
.fn-review-edit {
  font-family: var(--kw-font-display);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--kw-bordeaux);
  background: none; border: 0; padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fn-stripe-info {
  font-family: var(--kw-font-body);
  font-size: 14px; line-height: 1.55;
  color: var(--kw-text-muted);
  background: var(--kw-cream);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 12px 0 0;
}

/* ---------- Step 5: Zahlung ---------------------------------------- */

/* Trust-Element oben: Werkshalle-Foto + Firmen-Story.
 * Desktop: Foto links (160px), Text rechts.
 * Mobile: Foto oben (16:9), Text drunter — Quick-Scan. */
.fn-payment-trust {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--kw-cream);
  border-radius: 12px;
  padding: 16px;
  margin: 0 0 24px;
}
.fn-payment-trust-img {
  width: 100%; aspect-ratio: 3/2;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
}
.fn-payment-trust-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.fn-payment-trust-text { font-family: var(--kw-font-display); font-style: normal; }
.fn-payment-trust-name {
  display: block;
  font-family: var(--kw-font-display);
  font-size: 16px; font-weight: 700; font-style: normal;
  color: var(--kw-body-text);
  margin: 0 0 6px;
}
.fn-payment-trust-line {
  margin: 0;
  font-family: var(--kw-font-display);
  font-size: 14px; line-height: 1.5;
  font-style: normal; font-weight: 500;
  color: var(--kw-text-muted);
}

@media (max-width: 640px) {
  .fn-payment-trust {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }
  .fn-payment-trust-img { aspect-ratio: 16/9; }
}

/* Anzahlungsbetrag prominent — invertiert: weiße Fläche, roter Rand+Schrift */
.fn-payment-amount {
  background: #fff;
  color: var(--kw-bordeaux);
  border: 2px solid var(--kw-bordeaux);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 0 0 24px;
}
.fn-payment-amount-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
}
.fn-payment-amount-label {
  font-family: var(--kw-font-display);
  font-size: 15px; font-weight: 700; font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fn-payment-amount-value {
  font-family: var(--kw-font-display);
  font-size: 28px; font-weight: 700; font-style: normal;
  line-height: 1;
}
.fn-payment-amount-rest {
  margin-top: 6px;
  font-family: var(--kw-font-display);
  font-size: 13px; font-weight: 500; font-style: normal;
  opacity: 0.85;
}

/* Dein-Vorteil-Box direkt unter „Du zahlst jetzt".
 * Dezent: subtiler Tint-Hintergrund, kein voller Bordeaux-Fill —
 * darf nicht mit der „Du zahlst jetzt"-Box konkurrieren. */
.fn-payment-benefit {
  background: rgba(151, 35, 63, 0.06);
  color: var(--kw-bordeaux);
  border-radius: 10px;
  padding: 12px 18px;
  margin: -8px 0 24px;
}
.fn-payment-benefit-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
}
.fn-payment-benefit-label {
  font-family: var(--kw-font-display);
  font-size: 14px; font-weight: 600; font-style: normal;
  letter-spacing: 0.04em; text-transform: uppercase;
  opacity: 0.85;
}
.fn-payment-benefit-value {
  font-family: var(--kw-font-display);
  font-size: 18px; font-weight: 700; font-style: normal;
  line-height: 1;
}
.fn-payment-benefit-note {
  margin-top: 5px;
  font-family: var(--kw-font-display);
  font-size: 13px; font-weight: 500; font-style: normal;
  line-height: 1.45;
  color: var(--kw-text-muted);
}

/* Non-AT-Hinweis */
.fn-payment-intl-note {
  margin: 0 0 16px;
  padding: 12px 14px;
  background: #fff7e6;
  border-left: 3px solid #d4a341;
  border-radius: 6px;
  font-family: var(--kw-font-body);
  font-size: 14px; line-height: 1.5;
  color: var(--kw-body-text);
}

/* Karten-Grid */
.fn-payment-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 0 8px;
}
@media (max-width: 640px) {
  .fn-payment-cards { grid-template-columns: 1fr; }
}

/* Einzelne Karte */
.fn-payment-card {
  position: relative;
  display: block;
  background: #fff;
  border: 2px solid var(--kw-border);
  border-radius: 12px;
  padding: 18px 16px 16px;
  cursor: pointer;
  transition: all var(--kw-transition);
}
.fn-payment-card:hover { border-color: var(--kw-bordeaux); }
.fn-payment-card.is-selected {
  border-color: var(--kw-bordeaux);
  background: #fff;
  box-shadow: 0 0 0 1px var(--kw-bordeaux) inset;
}
.fn-payment-card-radio {
  position: absolute; top: 14px; right: 14px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--kw-border);
  background: #fff;
  transition: all var(--kw-transition);
}
.fn-payment-card.is-selected .fn-payment-card-radio {
  border-color: var(--kw-bordeaux);
  background: radial-gradient(circle, var(--kw-bordeaux) 0 5px, #fff 6px 100%);
}
.fn-payment-card-head {
  display: flex; align-items: flex-start; gap: 12px;
  padding-right: 32px;
}
.fn-payment-card-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--kw-bordeaux);
}
.fn-payment-card-titles { min-width: 0; }
.fn-payment-card-label {
  font-family: var(--kw-font-body);
  font-size: 15px; font-weight: 700;
  color: var(--kw-body-text);
  line-height: 1.3;
}
.fn-payment-card-desc {
  margin-top: 3px;
  font-family: var(--kw-font-body);
  font-size: 13px; line-height: 1.4;
  color: var(--kw-text-muted);
  font-weight: 400;
}
.fn-payment-card-note {
  margin-top: 8px;
  font-family: var(--kw-font-body);
  font-size: 13px; line-height: 1.45;
  font-weight: 700;
}
.fn-payment-card-note--positive {
  color: var(--kw-bordeaux, #97233f);
}
.fn-payment-card-note--warn {
  color: var(--kw-bordeaux, #97233f);
}
.fn-payment-card-badges {
  margin-top: 12px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.fn-payment-badge {
  display: inline-block;
  font-family: var(--kw-font-body);
  font-size: 11px; font-weight: 600;
  color: var(--kw-text-muted);
  background: var(--kw-cream);
  border-radius: 4px;
  padding: 3px 8px;
  letter-spacing: 0.02em;
}

/* FAQ-Akkordeon */
.fn-payment-faq {
  margin: 20px 0 0;
  font-family: var(--kw-font-body);
}
.fn-payment-faq summary {
  cursor: pointer;
  font-size: 14px; font-weight: 600;
  color: var(--kw-bordeaux);
  padding: 10px 0;
  list-style: none;
}
.fn-payment-faq summary::-webkit-details-marker { display: none; }
.fn-payment-faq summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
}
.fn-payment-faq[open] summary::after { content: '−'; }
.fn-payment-faq dl {
  margin: 6px 0 0;
  padding: 12px 14px;
  background: var(--kw-cream);
  border-radius: 8px;
}
.fn-payment-faq dt {
  font-size: 13px; font-weight: 700;
  color: var(--kw-body-text);
  margin-top: 8px;
}
.fn-payment-faq dt:first-of-type { margin-top: 0; }
.fn-payment-faq dd {
  margin: 2px 0 0;
  font-size: 13px; line-height: 1.45;
  color: var(--kw-text-muted);
}

/* Bestätigen: Zahlungsart-Edit-Button */
.fn-review-edit {
  display: inline-block;
  margin-left: 10px;
  font-family: var(--kw-font-body);
  font-size: 12px; font-weight: 600;
  color: var(--kw-bordeaux);
  background: none; border: 0; padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fn-check-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-family: var(--kw-font-body);
  font-size: 14px; line-height: 1.5;
  color: var(--kw-body-text);
  cursor: pointer;
}
.fn-check-row input { display: none; }
.fn-check-box {
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 4px;
  border: 2px solid var(--kw-border);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--kw-transition);
}
.fn-check-row.is-checked .fn-check-box {
  background: var(--kw-bordeaux);
  border-color: var(--kw-bordeaux);
}
.fn-check-box svg { color: #fff; opacity: 0; transition: opacity 0.15s; }
.fn-check-row.is-checked .fn-check-box svg { opacity: 1; }
.fn-check-row a { color: var(--kw-bordeaux); }

/* === SUMMARY BONUS (Gutschein-Wert prominent) === */
.fn-summary-bonus {
  margin: 12px -22px 0;
  padding: 14px 22px;
  background: linear-gradient(135deg, #97233F 0%, #7A1C33 100%);
  color: #fff;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.fn-summary-bonus::before {
  content: '';
  position: absolute; right: -40px; top: -40px;
  width: 120px; height: 120px;
  background: var(--kw-sand);
  opacity: 0.08;
  border-radius: 50%;
}
.fn-summary-bonus-label {
  font-family: var(--kw-font-display);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.8px;
  color: var(--kw-sand);
  margin-bottom: 4px;
  position: relative; z-index: 1;
}
.fn-summary-bonus-value {
  font-family: var(--kw-font-display);
  font-size: 28px; font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
  position: relative; z-index: 1;
}
.fn-summary-bonus-note {
  font-family: var(--kw-font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
  position: relative; z-index: 1;
}

/* === SUMMARY SIDEBAR (Desktop) === */
.fn-summary-strike {
  text-decoration: line-through;
  text-decoration-color: var(--kw-bordeaux);
  text-decoration-thickness: 1.5px;
  color: var(--kw-text-light) !important;
  font-weight: 400 !important;
}
.fn-summary-savings {
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(135deg, rgba(151,35,63,0.95) 0%, rgba(122,28,51,0.95) 100%);
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  margin: 14px -22px 0;
}
.fn-summary-savings-label {
  font-family: var(--kw-font-display);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--kw-sand);
}
.fn-summary-savings-value {
  font-family: var(--kw-font-display);
  font-size: 22px; font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}
.fn-summary-delivery {
  display: flex; align-items: center; gap: 8px;
  margin: 10px -22px 0;
  padding: 10px 22px;
  background: var(--kw-cream);
  border-top: 1px dashed var(--kw-border);
  border-bottom: 1px dashed var(--kw-border);
  font-family: var(--kw-font-body);
  font-size: 12.5px;
  color: var(--kw-body-text);
  font-weight: 600;
}
.fn-summary-delivery svg { color: var(--kw-bordeaux); flex-shrink: 0; }

.fn-summary-side {
  display: none;
}
@media (min-width: 1024px) {
  .fn-summary-side {
    display: block;
    position: sticky; top: 110px;
    background: #fff;
    border: 1px solid var(--kw-border);
    border-radius: var(--kw-radius);
    overflow: hidden;
    box-shadow: var(--kw-shadow-md);
  }
}
.fn-summary-head {
  background: var(--kw-body-text);
  color: #fff;
  padding: 18px 22px;
}
.fn-summary-head-label {
  font-family: var(--kw-font-display);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  opacity: 0.6;
  margin: 0 0 4px;
}
.fn-summary-head-product {
  font-family: var(--kw-font-display);
  font-size: 20px; font-weight: 700;
  color: var(--kw-sand);
  line-height: 1.15;
}
.fn-summary-body { padding: 20px 22px; }
.fn-summary-line {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--kw-font-body);
  font-size: 14px;
  padding: 6px 0;
  color: var(--kw-text-muted);
}
.fn-summary-line strong { font-family: var(--kw-font-display); font-weight: 600; color: var(--kw-body-text); }
.fn-summary-line.is-discount strong { color: var(--kw-bordeaux); }
.fn-summary-divider { height: 1px; background: var(--kw-border); margin: 10px 0; }
.fn-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0 4px;
  border-top: 2px solid var(--kw-body-text);
  margin-top: 8px;
}
.fn-summary-total-label {
  font-family: var(--kw-font-display);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.4px;
  color: var(--kw-body-text);
}
.fn-summary-total-value {
  font-family: var(--kw-font-display);
  font-size: 26px; font-weight: 700;
  color: var(--kw-bordeaux);
  letter-spacing: -0.3px;
}
.fn-summary-deposit-note {
  font-family: var(--kw-font-body);
  font-size: 12px;
  color: var(--kw-text-muted);
  margin-top: 4px;
  text-align: right;
}
.fn-summary-voucher {
  margin: 14px -22px -20px;
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(184,134,11,0.10) 0%, rgba(184,134,11,0.03) 100%);
  border-top: 1px dashed rgba(184,134,11,0.4);
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--kw-font-body);
  font-size: 13px; line-height: 1.4;
  color: var(--kw-body-text);
}
.fn-summary-voucher-icon { flex-shrink: 0; color: #B8860B; }
.fn-summary-voucher strong { font-family: var(--kw-font-display); }

/* === STICKY BOTTOM SUMMARY (Mobile) === */
.fn-summary-mobile {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: #fff;
  border-top: 1px solid var(--kw-border);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
  transform: translateY(0);
  transition: transform 0.3s var(--kw-transition);
}
@media (min-width: 1024px) {
  .fn-summary-mobile { display: none; }
}
.fn-summary-mobile-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  user-select: none;
}
.fn-summary-mobile-text { flex: 1; min-width: 0; }
.fn-summary-mobile-label {
  font-family: var(--kw-font-display);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.3px;
  color: var(--kw-text-muted);
  margin: 0 0 2px;
}
.fn-summary-mobile-amount {
  font-family: var(--kw-font-display);
  font-size: 22px; font-weight: 700;
  color: var(--kw-bordeaux);
  letter-spacing: -0.3px;
  line-height: 1;
}
.fn-summary-mobile-amount small {
  font-family: var(--kw-font-body);
  font-size: 11px; font-weight: 400;
  color: var(--kw-text-muted);
  margin-left: 6px;
  letter-spacing: 0;
}
.fn-summary-mobile-toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--kw-cream);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--kw-text-muted);
  transition: transform var(--kw-transition);
}
.fn-summary-mobile.is-open .fn-summary-mobile-toggle { transform: rotate(180deg); }

.fn-summary-mobile-cta {
  flex-shrink: 0;
}
.fn-summary-mobile-cta .fn-btn {
  padding: 12px 18px;
  min-height: 44px;
  font-size: 12px;
}

.fn-summary-mobile-sheet {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--kw-transition);
}
.fn-summary-mobile.is-open .fn-summary-mobile-sheet {
  max-height: 50vh;
  overflow-y: auto;
}
.fn-summary-mobile-sheet-inner {
  padding: 4px 16px 16px;
  border-top: 1px dashed var(--kw-border);
}

/* === SUMMARY-CARD im Confirm-Step (mobile) === */
.fn-summary-card {
  background: var(--kw-cream);
  border-radius: var(--kw-radius);
  padding: 18px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  /* desktop confirm step already shows sidebar; hide inline card to avoid double */
  .fn-summary-card { display: none; }
}

/* === SUCCESS PAGE === */
.fn-success {
  background: #fff;
  border: 1px solid var(--kw-border);
  border-radius: var(--kw-radius);
  padding: 40px 24px;
  text-align: center;
  max-width: 640px; margin: 24px auto 80px;
  font-style: normal;
}
.fn-success * { font-style: normal; }
.fn-success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  background: var(--kw-success);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 20px;
}
.fn-success h2 {
  font-family: var(--kw-font-display);
  font-size: 28px; font-weight: 700;
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: 0;
}
.fn-success p,
.fn-success .fn-success-lead {
  font-family: var(--kw-font-body);
  font-size: 15px; line-height: 1.6;
  color: var(--kw-text-muted);
  margin: 0 0 18px;
}
.fn-success-lead strong { color: var(--kw-text); font-weight: 700; }

.fn-success-list {
  margin: 24px 0 18px;
  padding: 16px 0;
  border-top: 1px solid var(--kw-border);
  border-bottom: 1px solid var(--kw-border);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fn-success-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--kw-font-body);
  font-size: 14px;
  line-height: 1.5;
}
.fn-success-row dt {
  color: var(--kw-text-light);
  font-weight: 400;
  flex: 0 0 auto;
  margin: 0;
}
.fn-success-row dd {
  margin: 0;
  text-align: right;
  color: var(--kw-text);
  word-break: break-word;
}
.fn-success-row dd strong { font-weight: 700; color: var(--kw-text); }

@media (max-width: 520px) {
  .fn-success-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .fn-success-row dd { text-align: left; }
}

.fn-success-contact {
  font-size: 13px !important;
  margin-top: 16px !important;
}

/* === SMALL HELPERS === */
.fn-hr {
  height: 1px; background: var(--kw-border);
  margin: 24px 0;
  border: 0;
}
.fn-help {
  font-family: var(--kw-font-body);
  font-size: 12px; line-height: 1.5;
  color: var(--kw-text-light);
  margin: 8px 0 0;
}
.fn-error {
  font-family: var(--kw-font-body);
  font-size: 13px;
  color: var(--kw-error);
  margin-top: 6px;
}

/* ===== Test/Live-Mode-Banner (Staging-only) =====
 * Memory: stripe_test_mode_pflicht.md
 * Farbe: KEIN reines Grün (feedback_farben.md) — Bordeaux/Wein für Test. */
.kw-funnel-test-mode-banner {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  font-family: var(--kw-font-body, sans-serif);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  box-sizing: border-box;
}
.kw-funnel-banner--test {
  background: #6b2d3c; /* Bordeaux/Wein */
}
.kw-funnel-banner--live {
  background: #c41e3a; /* Warnrot — LIVE-Modus auf Staging ist gefährlich */
}
@media (max-width: 768px) {
  .kw-funnel-test-mode-banner {
    font-size: 12px;
    padding: 8px 12px;
    line-height: 18px;
  }
}

/* ===== Intercept-Modal (AT + Rechnung „Bist du sicher?") ===== *
 * Erscheint beim Klick „Weiter" auf Zahlungs-Step wenn AT-Kunde Rechnung gewählt.
 * Tracking-Events: payment_intercept_shown/_to_stripe/_persisted_invoice (siehe funnel.js).
 * Mobile-first: 1-Spalten-Layout, Buttons vollbreit gestapelt. */
.fn-intercept-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.65);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000; /* über Test-Mode-Banner (9999) */
  padding: 24px;
}
.fn-intercept-box {
  background: #fff;
  border-top: 6px solid var(--kw-bordeaux, #97233f);
  border-radius: 8px;
  max-width: 460px;
  width: 100%;
  padding: 32px 24px 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
  text-align: center;
  font-family: var(--kw-font-body, sans-serif);
}
.fn-intercept-title {
  font-family: var(--kw-font-display, serif);
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--kw-bordeaux, #97233f);
}
.fn-intercept-body {
  font-size: 15px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0 0 14px;
}
.fn-intercept-body + .fn-intercept-body {
  margin-bottom: 22px;
}
.fn-intercept-body--bold {
  font-weight: 700;
  color: var(--kw-body-text, #2a2a2a);
}
.fn-intercept-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.fn-intercept-btn {
  width: auto;
  min-width: 240px;
  max-width: 320px;
  justify-content: center;
}
@media (min-width: 540px) {
  .fn-intercept-box {
    padding: 40px 36px 32px;
  }
  .fn-intercept-title {
    font-size: 32px;
  }
  .fn-intercept-body {
    font-size: 16px;
  }
}

/* === STRIPE-CANCEL-RECOVERY-BANNER (Gregor 2026-06-03) === */
.fn-cancel-recovery {
  max-width: 720px;
  margin: 48px auto;
  padding: 40px 32px;
  background: var(--kw-cream, #F5F0EB);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  text-align: center;
}
.fn-cancel-recovery h2 {
  font-family: var(--kw-font-display, 'Josefin Sans', sans-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--kw-bordeaux, #7A1C33);
}
.fn-cancel-recovery p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 28px;
  color: var(--kw-body-text, #1A1A1A);
}
.fn-cancel-recovery__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.fn-cancel-recovery__actions .fn-btn {
  min-width: 200px;
}
.fn-cancel-recovery--success h2 { color: #245C3D; }
.fn-cancel-recovery--error h2 { color: var(--kw-bordeaux, #7A1C33); }
@media (max-width: 640px) {
  .fn-cancel-recovery { padding: 28px 18px; margin: 24px 12px; }
  .fn-cancel-recovery__actions { flex-direction: column; }
  .fn-cancel-recovery__actions .fn-btn { width: 100%; min-width: 0; }
}
