/* =========================================================
   arni-womo.de – Fahrzeugseiten
   Zentrale bereinigte CSS-Datei

   Bereiche:
   0.  Design-Basis
   1.  Fahrzeug-Intro
   2.  Preise & Saisonzeiten
   3.  Galerie
   4.  Preisrechner
   5.  Preisrechner-Ergebnis / Anfrage
   6.  GLightbox
   7.  Fahrzeugdaten / Ausstattung / Zubehör
   8.  Fahrzeugdetails – gemeinsame Section-Struktur
   9.  Kopierte Miethinweise
   10. Wohnmobile – Scrollverhalten
   11. Responsive Anpassungen
   ========================================================= */


/* =========================================================
   0. Design-Basis
   ========================================================= */

:root {
  --aw-blue: #17304f;
  --aw-text: #25364a;

  --aw-orange: #e87722;
  --aw-orange-hover: #c95f14;

  --aw-light: #f5f7fa;
  --aw-white: #ffffff;

  --aw-border: rgba(23, 48, 79, 0.12);

  --aw-shadow:
    0 8px 24px
    rgba(23, 48, 79, 0.08);

  --aw-radius-section: 16px;
  --aw-radius-card: 18px;

  --aw-inner-max: 1600px;
  --aw-inner-padding: 40px;
  --aw-inner-padding-mobile: 18px;
}


/* ---------------------------------------------------------
   Einheitliche Abschnittsköpfe
   --------------------------------------------------------- */

.fahrzeug-section-head {
  max-width: 900px;

  margin: 0 auto 34px;

  text-align: center;
}

.fahrzeug-section-head h2 {
  margin: 0 0 12px;

  color: var(--aw-blue);

  font-size:
    clamp(28px, 2.4vw, 38px);

  font-weight: 800;
  line-height: 1.2;
}

.fahrzeug-section-head p {
  max-width: 860px;

  margin: 0 auto;

  color: var(--aw-text);

  font-size: 17px;
  line-height: 1.65;
}


/* ---------------------------------------------------------
   Gemeinsame Buttons
   --------------------------------------------------------- */

.fahrzeug-button-primary,
.fahrzeug-button-secondary {
  display: inline-block;

  padding: 14px 28px;

  border-radius: 999px;

  font-weight: 700;
  line-height: 1.2;

  text-decoration: none;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}


.fahrzeug-button-primary {
  background: var(--aw-orange);
  color: var(--aw-white);

  box-shadow:
    0 8px 20px
    rgba(232, 119, 34, 0.25);
}

.fahrzeug-button-primary:hover,
.fahrzeug-button-primary:focus-visible {
  background: var(--aw-orange-hover);
  color: var(--aw-white);

  transform: translateY(-1px);
}


.fahrzeug-button-secondary {
  background: var(--aw-white);
  color: var(--aw-blue);

  border:
    1px solid
    rgba(23, 48, 79, 0.18);

  box-shadow:
    0 8px 20px
    rgba(23, 48, 79, 0.08);
}

.fahrzeug-button-secondary:hover,
.fahrzeug-button-secondary:focus-visible {
  background: var(--aw-blue);
  color: var(--aw-white);

  transform: translateY(-1px);
}


/* =========================================================
   1. Fahrzeug-Intro
   ========================================================= */

.fahrzeug-intro-section {
  width: calc(100% - 60px);
  max-width: var(--aw-inner-max);

  margin: 30px auto 20px;

  padding: 42px 0;

  background: var(--aw-light);

  border-radius: var(--aw-radius-section);

  box-sizing: border-box;

  overflow: hidden;
}


.fahrzeug-intro-inner {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(460px, 660px);

  gap: 72px;

  align-items: center;

  width: 100%;
  max-width: var(--aw-inner-max);

  margin: 0 auto;
  padding:
    0
    var(--aw-inner-padding);

  box-sizing: border-box;
}


.fahrzeug-intro-text h2 {
  margin: 0 0 18px;

  color: var(--aw-blue);

  font-size:
    clamp(30px, 2.6vw, 40px);

  font-weight: 800;
  line-height: 1.16;
}


.fahrzeug-intro-text p {
  margin: 0 0 18px;

  color: var(--aw-text);

  font-size: 17px;
  line-height: 1.7;
}


.fahrzeug-intro-text p + p {
  margin-top: 14px;
}


/* ---------------------------------------------------------
   Intro-Fakten
   --------------------------------------------------------- */

.fahrzeug-facts-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}


.fahrzeug-fact-card {
  padding: 24px 22px;

  background: var(--aw-white);

  border:
    1px solid
    rgba(23, 48, 79, 0.14);

  border-radius:
    var(--aw-radius-card);

  box-shadow:
    var(--aw-shadow);

  box-sizing: border-box;
}


.fahrzeug-fact-card strong,
.fahrzeug-fact-card .fact-label {
  display: block;

  margin: 0 0 6px;

  color: var(--aw-blue);

  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;

  letter-spacing: 0.04em;

  text-transform: uppercase;
}


.fahrzeug-fact-card .fact-value {
  display: block;

  margin: 0;

  color: var(--aw-orange);

  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}


.fahrzeug-fact-card p {
  margin: 0;

  color: var(--aw-text);

  font-size: 15px;
  line-height: 1.5;
}


/* =========================================================
   2. Preise & Saisonzeiten
   ========================================================= */

.fahrzeug-prices-section {
  width: 100%;

  margin-top: 0;
  margin-bottom: 30px;

  padding: 44px 0 52px;

  background: var(--aw-white);

  box-sizing: border-box;
}


.fahrzeug-prices-inner {
  width: 100%;
  max-width: var(--aw-inner-max);

  margin: 0 auto;
  padding:
    0
    var(--aw-inner-padding);

  box-sizing: border-box;
}


/* ---------------------------------------------------------
   Preiskarten
   --------------------------------------------------------- */

.fahrzeug-price-cards {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 22px;

  margin-top: 34px;
}


.fahrzeug-price-card {
  padding: 28px 24px;

  background: var(--aw-light);

  border:
    1px solid
    var(--aw-border);

  border-radius:
    var(--aw-radius-card);

  box-shadow:
    var(--aw-shadow);

  box-sizing: border-box;
}


.fahrzeug-price-card h3 {
  margin: 0 0 10px;

  color: var(--aw-blue);

  font-size: 22px;
  line-height: 1.25;
}


.price-period {
  margin: 0 0 22px;

  color: var(--aw-text);

  font-size: 15px;
  line-height: 1.45;
}


.price-value {
  color: var(--aw-orange);
}


.price-main {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
}


.price-sub {
  margin-top: 4px;

  color: var(--aw-text);

  font-size: 15px;
}


.price-week {
  margin-top: 10px;

  color: var(--aw-blue);

  font-size: 15px;
  font-weight: 700;
}


.price-unavailable {
  color: var(--aw-text);

  font-size: 24px;
}


/* ---------------------------------------------------------
   Miethinweise
   --------------------------------------------------------- */

.fahrzeug-price-note {
  margin-top: 28px;

  padding: 28px 30px;

  background: var(--aw-light);

  border:
    1px solid
    var(--aw-border);

  border-radius:
    var(--aw-radius-card);

  box-shadow:
    0 8px 24px
    rgba(23, 48, 79, 0.06);

  color: var(--aw-text);

  box-sizing: border-box;
}


.price-note-title {
  margin-bottom: 18px;

  color: var(--aw-blue);

  font-size: 20px;
  font-weight: 800;
}


.price-note-list {
  column-count: 2;
  column-gap: 48px;
}


.price-note-item {
  display: grid;

  grid-template-columns:
    26px minmax(0, 1fr);

  gap: 10px;

  align-items: start;

  margin-bottom: 14px;

  break-inside: avoid;

  color: var(--aw-text);

  font-size: 15.5px;
  line-height: 1.5;
}


.price-note-item:last-child {
  margin-bottom: 0;
}


.price-note-icon {
  font-size: 18px;
  line-height: 1.35;
}


.price-note-item strong {
  color: var(--aw-blue);
}


.fahrzeug-price-note-extra {
  margin-top: 14px;
}


.fahrzeug-price-note-extra
.price-note-item {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   Preis-CTA
   --------------------------------------------------------- */

.fahrzeug-price-cta {
  margin-top: 30px;

  text-align: center;
}


.fahrzeug-price-cta-grid {
  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 14px;
}


/* =========================================================
   3. Galerie
   ========================================================= */

.fahrzeug-gallery-section {
  width: calc(100% - 60px);
  max-width: var(--aw-inner-max);

  margin: 30px auto;

  padding: 44px 0 52px;

  background: var(--aw-light);

  border-radius:
    var(--aw-radius-section);

  box-sizing: border-box;

  overflow: hidden;
}


.fahrzeug-gallery-inner {
  width: 100%;
  max-width: var(--aw-inner-max);

  margin: 0 auto;
  padding:
    0
    var(--aw-inner-padding);

  box-sizing: border-box;
}


/* ---------------------------------------------------------
   Obere Reihe – zwei große Bilder
   --------------------------------------------------------- */

.fahrzeug-gallery-top {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;

  margin-top: 34px;
}


.fahrzeug-gallery-top
.fahrzeug-gallery-item {
  height: 420px;
}


/* ---------------------------------------------------------
   Untere Galerie
   --------------------------------------------------------- */

.fahrzeug-gallery-small-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  grid-auto-rows: 260px;

  gap: 22px;

  margin-top: 22px;
}


/* ---------------------------------------------------------
   Galerie-Karten
   --------------------------------------------------------- */

.fahrzeug-gallery-item {
  position: relative;

  margin: 0;

  background: var(--aw-white);

  border-radius:
    var(--aw-radius-card);

  box-shadow:
    var(--aw-shadow);

  overflow: hidden;
}


.fahrzeug-gallery-link {
  display: block;

  width: 100%;
  height: 100%;

  color: inherit;

  cursor: zoom-in;

  text-decoration: none;
}


.fahrzeug-gallery-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.35s ease;

  pointer-events: none;

  user-select: none;
  -webkit-user-select: none;

  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}


.fahrzeug-gallery-item:hover img {
  transform: scale(1.04);
}


/* ---------------------------------------------------------
   Bildbeschriftungen
   --------------------------------------------------------- */

.fahrzeug-gallery-item figcaption {
  position: absolute;

  left: 16px;
  right: 16px;
  bottom: 16px;

  z-index: 2;

  padding: 10px 14px;

  background:
    rgba(23, 48, 79, 0.82);

  color: var(--aw-white);

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;

  text-align: center;

  backdrop-filter: blur(4px);

  pointer-events: none;
}


/* ---------------------------------------------------------
   Grundrisse
   --------------------------------------------------------- */

.fahrzeug-gallery-item-diagram {
  background: var(--aw-white);
}


.fahrzeug-gallery-item-diagram img {
  padding: 18px;

  background: var(--aw-white);

  object-fit: contain;

  box-sizing: border-box;
}


/* =========================================================
   4. Preisrechner
   ========================================================= */

.fahrzeug-calculator-section {
  width: 100%;

  margin-top: 30px;
  margin-bottom: 30px;

  padding: 44px 0 52px;

  background: var(--aw-white);

  border-radius:
    var(--aw-radius-section);

  box-sizing: border-box;

  overflow: hidden;
}


.fahrzeug-calculator-inner {
  width: 100%;
  max-width: var(--aw-inner-max);

  margin: 0 auto;
  padding:
    0
    var(--aw-inner-padding);

  box-sizing: border-box;
}


.fahrzeug-calculator-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 520px)
    minmax(0, 1fr);

  gap: 30px;

  align-items: start;

  margin-top: 34px;
}


/* ---------------------------------------------------------
   Rechner-Karten
   --------------------------------------------------------- */

.fahrzeug-calculator-card,
.fahrzeug-calculator-result {
  padding: 30px;

  background: var(--aw-white);

  border:
    1px solid
    rgba(23, 48, 79, 0.14);

  border-radius:
    var(--aw-radius-card);

  box-shadow:
    0 12px 32px
    rgba(23, 48, 79, 0.11);

  box-sizing: border-box;
}


.fahrzeug-calculator-result {
  min-height: 100%;
}


/* ---------------------------------------------------------
   Fahrzeugauswahl
   --------------------------------------------------------- */

.calculator-vehicle-label {
  margin-bottom: 6px;

  color: var(--aw-text);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.05em;

  text-transform: uppercase;
}


.calculator-vehicle-name {
  margin-bottom: 24px;

  color: var(--aw-blue);

  font-size: 26px;
  font-weight: 800;
}


.calculator-vehicle-switch {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 10px;

  margin: 0 0 24px;
}


.calculator-vehicle-button {
  padding: 10px 14px;

  background: var(--aw-light);
  color: var(--aw-blue);

  border:
    1px solid
    rgba(23, 48, 79, 0.18);

  border-radius: 999px;

  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;

  cursor: pointer;

  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}


.calculator-vehicle-button:hover,
.calculator-vehicle-button:focus-visible {
  background:
    rgba(232, 119, 34, 0.12);

  border-color:
    rgba(232, 119, 34, 0.35);

  color: var(--aw-orange);

  transform: translateY(-1px);
}


.calculator-vehicle-button.is-active {
  background: var(--aw-orange);
  color: var(--aw-white);

  border-color:
    var(--aw-orange);

  box-shadow:
    0 8px 18px
    rgba(232, 119, 34, 0.24);
}


/* ---------------------------------------------------------
   Formular
   --------------------------------------------------------- */

.calculator-form-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 16px;
}


.calculator-field {
  margin-bottom: 18px;
}


.calculator-field label {
  display: block;

  margin-bottom: 7px;

  color: var(--aw-blue);

  font-size: 14px;
  font-weight: 700;
}


.calculator-field label span {
  color: var(--aw-text);

  font-size: 13px;
  font-weight: 400;
}


.calculator-field input {
  width: 100%;

  padding: 13px 14px;

  background: var(--aw-white);
  color: var(--aw-blue);

  border:
    1px solid
    rgba(23, 48, 79, 0.22);

  border-radius: 12px;

  font-size: 16px;

  box-sizing: border-box;
}


.calculator-field input:focus {
  outline: none;

  border-color:
    var(--aw-orange);

  box-shadow:
    0 0 0 3px
    rgba(232, 119, 34, 0.16);
}


.calculator-mini-info {
  margin-top: 4px;
  margin-bottom: 22px;

  padding: 16px 18px;

  background: var(--aw-light);

  border-radius: 14px;

  color: var(--aw-text);

  font-size: 15px;
  line-height: 1.55;
}


.calculator-mini-info div + div {
  margin-top: 6px;
}


/* ---------------------------------------------------------
   Berechnen-Button
   --------------------------------------------------------- */

.calc-submit-button {
  width: 100%;

  padding: 15px 26px;

  background: var(--aw-orange);
  color: var(--aw-white);

  border: none;
  border-radius: 999px;

  box-shadow:
    0 8px 20px
    rgba(232, 119, 34, 0.25);

  font-size: 16px;
  font-weight: 800;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}


.calc-submit-button:hover,
.calc-submit-button:focus-visible {
  background:
    var(--aw-orange-hover);

  transform:
    translateY(-1px);
}


/* ---------------------------------------------------------
   Zubehör ein-/ausblenden
   --------------------------------------------------------- */

.calculator-zubehoer-toggle {
  display: flex;

  align-items: center;

  gap: 10px;

  width: fit-content;

  margin-top: 16px;

  color: var(--aw-blue);

  font-size: 16px;
  font-weight: 700;

  cursor: pointer;

  user-select: none;
}


.calculator-zubehoer-toggle input {
  width: 20px;
  height: 20px;

  margin: 0;

  accent-color:
    var(--aw-orange);

  cursor: pointer;
}


.calculator-zubehoer-toggle span {
  line-height: 1.4;
}


.js-calculator-zubehoer {
  margin-top: 18px;
}


.js-calculator-zubehoer[hidden] {
  display: none !important;
}


/* ---------------------------------------------------------
   Leeres Rechner-Ergebnis
   --------------------------------------------------------- */

.calculator-result-empty {
  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  min-height: 260px;
  height: 100%;

  padding: 34px;

  background:
    linear-gradient(
      135deg,
      rgba(23, 48, 79, 0.06),
      rgba(232, 119, 34, 0.06)
    );

  color: var(--aw-text);

  border-radius: 14px;

  text-align: center;

  box-sizing: border-box;
}


.calculator-result-empty h3 {
  margin: 0 0 10px;

  color: var(--aw-blue);

  font-size: 24px;
}


.calculator-result-empty p {
  max-width: 520px;

  margin: 0;

  font-size: 16px;
  line-height: 1.6;
}


/* =========================================================
   5. Preisrechner – Ergebnisdarstellung / Anfrage
   ========================================================= */

.calculator-result-box {
  padding: 30px;

  background:
    linear-gradient(
      135deg,
      rgba(23, 48, 79, 0.96),
      rgba(23, 48, 79, 0.88)
    );

  color: var(--aw-white);

  border-radius: 16px;

  box-sizing: border-box;
}


.calculator-result-label {
  margin-bottom: 8px;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  opacity: 0.82;
}


.calculator-result-total {
  font-size:
    clamp(38px, 5vw, 58px);

  font-weight: 900;
  line-height: 1;
}


.calculator-result-sub {
  margin-top: 10px;

  font-size: 15px;
  line-height: 1.5;

  opacity: 0.86;
}


.calculator-result-breakdown {
  margin-top: 24px;

  padding-top: 18px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.22);
}


.calculator-result-line {
  display: flex;

  justify-content: space-between;

  gap: 18px;

  margin-bottom: 10px;

  font-size: 15px;
  line-height: 1.45;
}


.calculator-result-line strong {
  white-space: nowrap;
}


.calculator-result-line.muted {
  opacity: 0.82;
}


.calculator-result-final {
  margin-top: 14px;

  padding-top: 14px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.28);

  font-size: 17px;
  font-weight: 800;
}


/* ---------------------------------------------------------
   Zuschläge / Rabatte
   --------------------------------------------------------- */

.calculator-result-surcharge,
.calculator-result-discount {
  margin-right: -10px;
  margin-left: -10px;

  padding: 8px 10px;

  border-radius: 10px;
}


.calculator-result-surcharge {
  background:
    rgba(232, 119, 34, 0.14);
}


.calculator-result-surcharge strong {
  color: #ffb26b;
}


.calculator-result-discount {
  background:
    rgba(126, 226, 168, 0.10);
}


.calculator-result-discount strong {
  color: #7ee2a8;
}


.calculator-result-surcharge span,
.calculator-result-discount span {
  color:
    rgba(255, 255, 255, 0.94);
}


/* ---------------------------------------------------------
   Ergebnis-Hinweis
   --------------------------------------------------------- */

.calculator-result-note {
  margin-top: 20px;

  padding: 14px 16px;

  background:
    rgba(255, 255, 255, 0.13);

  border-radius: 12px;

  font-size: 14px;
  line-height: 1.55;
}


.calculator-result-error {
  background:
    linear-gradient(
      135deg,
      rgba(232, 119, 34, 0.10),
      rgba(23, 48, 79, 0.06)
    );
}


/* ---------------------------------------------------------
   Anfrage-Button
   --------------------------------------------------------- */

.calculator-request-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 48px;

  margin-top: 18px;

  background: var(--aw-orange);
  color: var(--aw-white);

  border-radius: 999px;

  box-shadow:
    0 10px 24px
    rgba(232, 119, 34, 0.28);

  font-size: 16px;
  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}


.calculator-request-button:hover,
.calculator-request-button:focus,
.calculator-request-button:focus-visible {
  background: var(--aw-orange-hover);
  color: var(--aw-white);

  transform: translateY(-1px);

  box-shadow:
    0 14px 30px
    rgba(232, 119, 34, 0.34);

  text-decoration: none;
}


/* ---------------------------------------------------------
   Anfrage-Modal
   --------------------------------------------------------- */

.aw-request-modal-overlay {
  position: fixed;

  inset: 0;

  z-index: 999999;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;

  background:
    rgba(23, 48, 79, 0.62);

  box-sizing: border-box;
}


.aw-request-modal-overlay.is-visible {
  display: flex;
}


.aw-request-modal {
  width: 100%;
  max-width: 520px;

  padding: 30px;

  background: var(--aw-white);
  color: var(--aw-text);

  border-radius: 18px;

  box-shadow:
    0 24px 70px
    rgba(0, 0, 0, 0.28);

  box-sizing: border-box;
}


.aw-request-modal h3 {
  margin: 0 0 14px;

  color: var(--aw-blue);

  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}


.aw-request-modal p {
  margin: 0 0 18px;

  font-size: 16px;
  line-height: 1.6;
}


.aw-request-modal-summary {
  margin: 20px 0;

  padding: 18px;

  background: var(--aw-light);

  border:
    1px solid
    var(--aw-border);

  border-radius: 14px;
}


.aw-request-modal-line {
  display: flex;

  justify-content: space-between;

  gap: 18px;

  margin-bottom: 10px;

  font-size: 15px;
  line-height: 1.45;
}


.aw-request-modal-line:last-child {
  margin-bottom: 0;
}


.aw-request-modal-line span:first-child {
  color: var(--aw-text);
}


.aw-request-modal-line strong {
  color: var(--aw-blue);

  text-align: right;
}


.aw-request-modal-actions {
  display: flex;

  gap: 12px;

  margin-top: 22px;
}


.aw-request-modal-confirm,
.aw-request-modal-cancel {
  flex: 1;

  padding: 13px 18px;

  border-radius: 999px;

  font-size: 15px;
  font-weight: 800;

  cursor: pointer;
}


.aw-request-modal-confirm {
  background: var(--aw-orange);
  color: var(--aw-white);

  border: none;
}


.aw-request-modal-confirm:hover,
.aw-request-modal-confirm:focus-visible {
  background:
    var(--aw-orange-hover);
}


.aw-request-modal-cancel {
  background: var(--aw-light);
  color: var(--aw-blue);

  border:
    1px solid
    var(--aw-border);
}


/* =========================================================
   6. GLightbox
   ========================================================= */

.glightbox-clean .gslide-title {
  color: var(--aw-blue);

  font-weight: 700;
}


.glightbox-clean .gslide-desc {
  color: var(--aw-text);
}


.glightbox-container .gslide-image {
  position: relative;
}


/* Schutz-Layer über dem großen Bild */

.glightbox-container
.gslide-image::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;

  background: transparent;
}


/* Großbild nicht direkt anwählbar */

.glightbox-container
.gslide-image img,

.glightbox-container
.ginner-container img,

.glightbox-container
.gslide-media img {
  pointer-events: none !important;

  user-select: none !important;
  -webkit-user-select: none !important;

  -webkit-user-drag: none !important;
  -webkit-touch-callout: none !important;
}


/* Navigation über dem Schutz-Layer */

.glightbox-container .gprev,
.glightbox-container .gnext,
.glightbox-container .gclose {
  z-index: 999999 !important;
}


/* =========================================================
   7. Fahrzeugdaten / Ausstattung / Zubehör
   ========================================================= */

/* ---------------------------------------------------------
   Inklusiv-Hinweis
   --------------------------------------------------------- */

.fahrzeugdaten-included-box {
  display: flex;

  align-items: flex-start;

  gap: 16px;

  margin: 0 0 28px;

  padding: 18px 22px;

  background: var(--aw-white);

  border-left:
    5px solid
    var(--aw-orange);

  border-radius: 16px;

  box-shadow:
    0 8px 22px
    rgba(37, 54, 74, 0.08);
}


.fahrzeugdaten-included-box strong {
  flex: 0 0 auto;

  color: var(--aw-blue);

  font-size: 16px;
  font-weight: 900;
}


.fahrzeugdaten-included-box span {
  color:
    rgba(37, 54, 74, 0.78);

  font-size: 15px;
  line-height: 1.55;
}


/* ---------------------------------------------------------
   Datengruppen
   --------------------------------------------------------- */

.fahrzeugdaten-list {
  display: grid;

  grid-template-columns: 1fr;

  gap: 18px;
}


.fahrzeugdaten-group {
  padding: 24px 26px;

  background: var(--aw-white);

  border-radius: 18px;

  box-shadow:
    0 10px 26px
    rgba(37, 54, 74, 0.08);
}


.fahrzeugdaten-group h3 {
  margin: 0 0 18px;

  color: var(--aw-blue);

  font-size: 21px;
  font-weight: 900;
}


.fahrzeugdaten-rows {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  column-gap: 34px;
  row-gap: 0;
}


.fahrzeugdaten-row {
  display: grid;

  grid-template-columns:
    minmax(150px, 0.9fr)
    minmax(180px, 1.1fr);

  gap: 16px;

  padding: 11px 0;

  border-top:
    1px solid
    rgba(37, 54, 74, 0.10);
}


.fahrzeugdaten-row:nth-child(1),
.fahrzeugdaten-row:nth-child(2) {
  border-top: 0;
}


.fahrzeugdaten-label {
  color:
    rgba(37, 54, 74, 0.68);

  font-size: 14px;
  font-weight: 800;
}


.fahrzeugdaten-value {
  color: var(--aw-blue);

  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}


.fahrzeugdaten-muted {
  color:
    rgba(37, 54, 74, 0.48);

  font-weight: 600;
}


/* ---------------------------------------------------------
   Fahrzeug-Zubehör
   --------------------------------------------------------- */

.fahrzeug-zubehoer-head {
  margin-top: 54px;
}


.fahrzeug-zubehoer-list {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}


.fahrzeug-zubehoer-card {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 22px 24px;

  background: var(--aw-white);

  border:
    1px solid
    rgba(37, 54, 74, 0.08);

  border-radius: 18px;

  box-shadow:
    0 10px 26px
    rgba(37, 54, 74, 0.08);
}


.fahrzeug-zubehoer-card h3 {
  margin: 0 0 6px;

  color: var(--aw-blue);

  font-size: 18px;
  font-weight: 900;
}


.fahrzeug-zubehoer-card p {
  margin: 0 0 6px;

  color:
    rgba(37, 54, 74, 0.72);

  font-size: 14px;
  line-height: 1.45;
}


.fahrzeug-zubehoer-card small {
  display: block;

  color:
    rgba(37, 54, 74, 0.58);

  font-size: 13px;
  line-height: 1.4;
}


.fahrzeug-zubehoer-price {
  flex: 0 0 auto;

  color: var(--aw-orange);

  text-align: right;
}


.fahrzeug-zubehoer-price strong {
  display: block;

  font-size: 18px;
  font-weight: 900;

  white-space: nowrap;
}


.fahrzeug-zubehoer-price span {
  display: block;

  margin-top: 3px;

  color:
    rgba(37, 54, 74, 0.58);

  font-size: 13px;

  white-space: nowrap;
}


/* ---------------------------------------------------------
   Zubehör im Preisrechner
   --------------------------------------------------------- */

.calculator-zubehoer-block {
  margin-top: 28px;

  padding: 24px;

  background: var(--aw-light);

  border:
    1px solid
    rgba(37, 54, 74, 0.08);

  border-radius: 18px;
}


.calculator-zubehoer-block h3 {
  margin: 0 0 8px;

  color: var(--aw-blue);

  font-size: 22px;
  font-weight: 900;
}


.calculator-zubehoer-block p {
  margin: 0 0 18px;

  color:
    rgba(37, 54, 74, 0.72);

  font-size: 15px;
  line-height: 1.55;
}


.calculator-zubehoer-list {
  display: grid;

  gap: 12px;
}


.calculator-zubehoer-item {
  display: grid;

  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 16px;

  padding: 16px 18px;

  background: var(--aw-white);

  border:
    1px solid
    rgba(37, 54, 74, 0.08);

  border-radius: 14px;

  cursor: pointer;

  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}


.calculator-zubehoer-item:hover {
  transform: translateY(-1px);

  box-shadow:
    0 8px 22px
    rgba(37, 54, 74, 0.10);

  border-color:
    rgba(232, 119, 34, 0.35);
}


.calculator-zubehoer-input
input[type="checkbox"] {
  width: 20px;
  height: 20px;

  accent-color:
    var(--aw-orange);
}


.calculator-zubehoer-input
input[type="number"] {
  width: 74px;
  min-height: 40px;

  padding: 6px 8px;

  border:
    1px solid
    rgba(37, 54, 74, 0.18);

  border-radius: 10px;

  font-weight: 800;

  text-align: center;
}


.calculator-zubehoer-main strong {
  display: block;

  color: var(--aw-blue);

  font-size: 16px;
  font-weight: 900;
}


.calculator-zubehoer-main small {
  display: block;

  margin-top: 3px;

  color:
    rgba(37, 54, 74, 0.60);

  font-size: 13px;
  line-height: 1.35;
}


.calculator-zubehoer-price {
  color: var(--aw-orange);

  text-align: right;
}


.calculator-zubehoer-price strong {
  display: block;

  font-size: 16px;
  font-weight: 900;

  white-space: nowrap;
}


.calculator-zubehoer-price small {
  display: block;

  margin-top: 3px;

  color:
    rgba(37, 54, 74, 0.58);

  font-size: 12px;

  white-space: nowrap;
}


/* =========================================================
   8. Fahrzeugdetails – gemeinsame Section-Struktur
   ========================================================= */

/*
 * Diese Klassen bleiben vorerst erhalten.
 * Sie können noch von vorhandenem Fahrzeugseiten-HTML
 * verwendet werden.
 */

.fahrzeug-details-section {
  width: 100%;

  margin-top: 0;
  margin-bottom: 20px;

  padding: 44px 0 52px;

  background: var(--aw-white);

  box-sizing: border-box;
}


.fahrzeug-details-inner {
  width: 100%;
  max-width: var(--aw-inner-max);

  margin: 0 auto;
  padding:
    0
    var(--aw-inner-padding);

  box-sizing: border-box;
}


.fahrzeug-details-layout {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;

  align-items: start;
}


.fahrzeug-detail-box {
  padding: 32px 34px;

  background: var(--aw-light);

  border:
    1px solid
    var(--aw-border);

  border-radius:
    var(--aw-radius-card);

  box-shadow:
    0 8px 24px
    rgba(23, 48, 79, 0.06);

  box-sizing: border-box;
}


.fahrzeug-detail-box h3 {
  margin: 0 0 22px;

  color: var(--aw-blue);

  font-size: 24px;
  line-height: 1.25;
}


.fahrzeug-data-list {
  display: grid;

  gap: 0;
}


.data-row {
  display: flex;

  justify-content: space-between;

  gap: 24px;

  padding: 13px 0;

  border-bottom:
    1px solid
    var(--aw-border);
}


.data-row:first-child {
  padding-top: 0;
}


.data-row:last-child {
  padding-bottom: 0;

  border-bottom: none;
}


.data-row span {
  color: var(--aw-text);

  font-size: 16px;
  line-height: 1.45;
}


.data-row strong {
  color: var(--aw-orange);

  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;

  text-align: right;
}


/* =========================================================
   9. Preisrechner – kopierte Miethinweise
   ========================================================= */

.calculator-notes-copy {
  margin-top: 28px;
}


.calculator-notes-copy
.fahrzeug-price-note {
  margin-top: 0;

  background: var(--aw-light);
}


.calculator-notes-copy
.fahrzeug-price-note
+ .fahrzeug-price-note {
  margin-top: 14px;
}


.calculator-notes-copy
.fahrzeug-price-note-extra {
  margin-top: 14px;
}

/* =========================================================
   Anfragebereich – Fahrzeugseiten
   ========================================================= */

.wohnmobile-request-section {
  width: calc(100% - 60px);
  max-width: 1550px;

  margin: 28px auto;
  padding: 34px 32px;

  background:
    linear-gradient(
      135deg,
      rgba(23, 48, 79, 0.98),
      rgba(23, 48, 79, 0.91)
    );

  border-radius: var(--aw-radius-section);

  color: var(--aw-white);

  box-sizing: border-box;
  overflow: hidden;
}


.wohnmobile-request-inner {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;

  display: grid;

  grid-template-columns:
    minmax(0, 1.7fr)
    minmax(260px, 0.7fr);

  gap: 30px;

  align-items: stretch;

  box-sizing: border-box;
}


.wohnmobile-request-content {
  max-width: none;
}


/* =========================================================
   Überschriften / Text
   ========================================================= */

.wohnmobile-request-eyebrow {
  display: block;

  margin-bottom: 12px;

  color: #ffb26b;

  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}


.wohnmobile-request-content h2 {
  margin: 0 0 18px;

  color: var(--aw-white);

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 800;
}


.wohnmobile-request-content > p {
  max-width: none;

  margin: 0;

  color: rgba(255, 255, 255, 0.9);

  font-size: 17px;
  line-height: 1.7;
}


/* =========================================================
   Button-Zeile
   ========================================================= */

.wohnmobile-request-actions {
  display: flex;

  flex-wrap: nowrap;

  align-items: stretch;

  gap: 12px;

  margin-top: 28px;
}


/* Gemeinsame Basis */

.wohnmobile-request-primary,
.wohnmobile-request-secondary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 13px 20px;

  border-radius: 999px;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;

  text-align: center;

  text-decoration: none;

  white-space: nowrap;

  box-sizing: border-box;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}


/* =========================================================
   Button 1 und 3:
   Preise + unverbindliche Anfrage
   dunkelblau / weißer Rand
   ========================================================= */

.wohnmobile-request-actions
a:nth-child(1),

.wohnmobile-request-actions
a:nth-child(3) {
  background: var(--aw-blue);

  color: var(--aw-white);

  border: 2px solid var(--aw-white);

  box-shadow: none;
}


.wohnmobile-request-actions
a:nth-child(1):hover,

.wohnmobile-request-actions
a:nth-child(1):focus-visible,

.wohnmobile-request-actions
a:nth-child(3):hover,

.wohnmobile-request-actions
a:nth-child(3):focus-visible {
  background: var(--aw-white);

  color: var(--aw-blue);

  border-color: var(--aw-white);

  transform: translateY(-1px);

  text-decoration: none;
}


/* =========================================================
   Button 2:
   Mietbedingungen
   orange / weißer Text
   ========================================================= */

.wohnmobile-request-actions
a:nth-child(2) {
  background: var(--aw-orange);

  color: var(--aw-white);

  border: 2px solid var(--aw-orange);
}


.wohnmobile-request-actions
a:nth-child(2):hover,

.wohnmobile-request-actions
a:nth-child(2):focus-visible {
  background: var(--aw-white);

  color: var(--aw-orange);

  border-color: var(--aw-orange);

  transform: translateY(-1px);

  text-decoration: none;
}


/* =========================================================
   Hinweistext
   ========================================================= */

.wohnmobile-request-note {
  margin-top: 16px !important;

  color:
    rgba(255, 255, 255, 0.72) !important;

  font-size: 14px !important;
  line-height: 1.5 !important;
}


/* =========================================================
   Rechte Info-Box
   ========================================================= */

.wohnmobile-request-info {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 26px 24px;

  background:
    rgba(255, 255, 255, 0.1);

  border:
    1px solid
    rgba(255, 255, 255, 0.18);

  border-radius:
    var(--aw-radius-card);

  backdrop-filter:
    blur(6px);

  box-sizing:
    border-box;
}


.wohnmobile-request-info h3 {
  margin: 0 0 14px;

  color: var(--aw-white);

  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}


.wohnmobile-request-info p {
  margin: 0 0 14px;

  color:
    rgba(255, 255, 255, 0.9);

  font-size: 15px;
  line-height: 1.6;
}


/* =========================================================
   FAQ-Button rechts
   Stil wie Mietbedingungen
   ========================================================= */

.wohnmobile-request-info a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  align-self: flex-start;

  min-height: 46px;

  padding: 12px 20px;

  background: var(--aw-orange);
  color: var(--aw-white) !important;

  border: 2px solid var(--aw-orange);

  border-radius: 999px;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;

  text-decoration: none;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}


.wohnmobile-request-info a:visited {
  color: var(--aw-white) !important;
}


.wohnmobile-request-info a:hover,
.wohnmobile-request-info a:focus-visible {
  background: var(--aw-white);

  color: var(--aw-orange) !important;

  border-color: var(--aw-orange);

  transform: translateY(-1px);

  text-decoration: none;
}


/* =========================================================
   Fokus
   ========================================================= */

.wohnmobile-request-primary:focus-visible,
.wohnmobile-request-secondary:focus-visible,
.wohnmobile-request-info a:focus-visible {
  outline:
    3px solid
    rgba(255, 178, 107, 0.55);

  outline-offset:
    4px;
}

/* =========================================================
   CTA – Responsive
   ========================================================= */


/* Rechte Info-Box unter den Hauptbereich */

@media (max-width: 1180px) {

  .wohnmobile-request-inner {
    grid-template-columns: 1fr;
  }

  .wohnmobile-request-info {
    max-width: none;
  }

}


/*
 * Sobald die drei Buttons nicht mehr sauber
 * nebeneinander passen, sofort alle untereinander.
 */

@media (max-width: 1050px) {

  .wohnmobile-request-actions {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .wohnmobile-request-primary,
  .wohnmobile-request-secondary {
    width: 100%;
  }

}


/* Smartphone */

@media (max-width: 700px) {

  .wohnmobile-request-section {
    width: calc(100% - 32px);

    padding: 30px 22px;
  }

  .wohnmobile-request-inner {
    gap: 24px;
  }

  .wohnmobile-request-content h2 {
    font-size: 28px;
  }

  .wohnmobile-request-content > p {
    font-size: 16px;
  }

  .wohnmobile-request-info a {
    width: 100%;
  }

}

  .fahrzeug-details-inner {
    padding:
      0
      24px;
  }


  .fahrzeug-details-layout {
    grid-template-columns: 1fr;
  }
}


/* ---------------------------------------------------------
   Bis 1050px
   --------------------------------------------------------- */

@media (max-width: 1050px) {

  .fahrzeug-gallery-top {
    grid-template-columns: 1fr;
  }


  .fahrzeug-gallery-top
  .fahrzeug-gallery-item {
    height: 360px;
  }


  .fahrzeug-gallery-small-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    grid-auto-rows: 240px;
  }


  .fahrzeug-calculator-layout {
    grid-template-columns: 1fr;
  }
}


/* ---------------------------------------------------------
   Bis 950px
   --------------------------------------------------------- */

@media (max-width: 950px) {

  .fahrzeug-intro-inner {
    grid-template-columns: 1fr;

    gap: 34px;

    padding:
      0
      24px;
  }


  .fahrzeug-facts-grid {
    max-width: 100%;
  }
}


/* ---------------------------------------------------------
   Bis 900px
   --------------------------------------------------------- */

@media (max-width: 900px) {

  .fahrzeugdaten-rows {
    grid-template-columns: 1fr;
  }


  .fahrzeugdaten-row:nth-child(2) {
    border-top:
      1px solid
      rgba(37, 54, 74, 0.10);
  }


  .fahrzeug-zubehoer-list {
    grid-template-columns: 1fr;
  }
}


/* ---------------------------------------------------------
   Bis 850px
   --------------------------------------------------------- */

@media (max-width: 850px) {

  .price-note-list {
    column-count: 1;
  }
}


/* ---------------------------------------------------------
   Bis 768px
   --------------------------------------------------------- */

@media (max-width: 768px) {

  .fahrzeug-intro-section,
  .fahrzeug-gallery-section {
    width:
      calc(100% - 32px);
  }
}


/* ---------------------------------------------------------
   Bis 640px
   --------------------------------------------------------- */

@media (max-width: 640px) {

  .fahrzeugdaten-included-box {
    flex-direction: column;

    gap: 8px;
  }


  .fahrzeugdaten-group {
    padding:
      22px 20px;
  }


  .fahrzeugdaten-row {
    grid-template-columns: 1fr;

    gap: 4px;
  }


  .fahrzeug-zubehoer-card {
    flex-direction: column;
  }


  .fahrzeug-zubehoer-price {
    text-align: left;
  }


  .calculator-zubehoer-item {
    grid-template-columns:
      auto
      minmax(0, 1fr);
  }


  .calculator-zubehoer-price {
    grid-column: 2;

    text-align: left;
  }
}


/* ---------------------------------------------------------
   Bis 620px
   --------------------------------------------------------- */

@media (max-width: 620px) {

  .fahrzeug-section-head h2 {
    font-size: 28px;
  }


  .fahrzeug-section-head p {
    font-size: 16px;
  }


  .fahrzeug-price-cta-grid {
    flex-direction: column;

    align-items: stretch;
  }


  .fahrzeug-price-cta-grid a {
    width: 100%;

    text-align: center;

    box-sizing: border-box;
  }


  .fahrzeug-gallery-top
  .fahrzeug-gallery-item {
    height: 240px;
  }


  .fahrzeug-gallery-small-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: 220px;

    gap: 16px;
  }


  .fahrzeug-gallery-item figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;

    border-radius: 14px;

    font-size: 13px;
  }


  .calculator-result-box {
    padding:
      24px 20px;
  }


  .calculator-result-line {
    flex-direction: column;

    gap: 2px;
  }
}


/* ---------------------------------------------------------
   Bis 600px
   --------------------------------------------------------- */

@media (max-width: 600px) {

  .calculator-zubehoer-toggle {
    align-items: flex-start;

    font-size: 15px;
  }


  .calculator-zubehoer-toggle input {
    flex:
      0 0 20px;

    margin-top: 1px;
  }
}


/* ---------------------------------------------------------
   Bis 520px
   --------------------------------------------------------- */

@media (max-width: 520px) {

  .fahrzeug-intro-section {
    padding:
      32px 0 42px;
  }


  .fahrzeug-gallery-section,
  .fahrzeug-calculator-section {
    padding:
      36px 0 42px;
  }


  .fahrzeug-prices-section {
    padding:
      34px 0 40px;
  }


  .fahrzeug-details-section {
    padding:
      36px 0 42px;
  }


  .fahrzeug-intro-inner,
  .fahrzeug-prices-inner,
  .fahrzeug-gallery-inner,
  .fahrzeug-calculator-inner,
  .fahrzeug-details-inner {
    padding:
      0
      var(--aw-inner-padding-mobile);
  }


  .fahrzeug-facts-grid,
  .fahrzeug-price-cards,
  .calculator-form-grid {
    grid-template-columns: 1fr;
  }


  .fahrzeug-price-cards {
    gap: 18px;
  }


  .fahrzeug-facts-grid {
    gap: 18px;
  }


  .fahrzeug-price-card,
  .fahrzeug-price-note,
  .fahrzeug-calculator-card,
  .fahrzeug-calculator-result {
    padding:
      24px 20px;
  }


  .fahrzeug-detail-box {
    padding:
      26px 22px;
  }


  .data-row {
    flex-direction: column;

    gap: 4px;
  }


  .data-row strong {
    text-align: left;
  }


  .price-note-item {
    grid-template-columns:
      28px
      minmax(0, 1fr);

    font-size: 15px;
  }


  .calculator-result-empty {
    min-height: 220px;

    padding:
      26px 20px;
  }


  .calculator-result-empty h3 {
    font-size: 21px;
  }


  .calculator-vehicle-switch {
    grid-template-columns: 1fr;
  }


  .aw-request-modal {
    padding:
      24px 20px;
  }


  .aw-request-modal-actions {
    flex-direction: column;
  }


  .aw-request-modal-line {
    flex-direction: column;

    gap: 2px;
  }


  .aw-request-modal-line strong {
    text-align: left;
  }
}


/* ---------------------------------------------------------
   Bewegung reduzieren
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .fahrzeug-button-primary,
  .fahrzeug-button-secondary,
  .fahrzeug-gallery-item img,
  .calc-submit-button,
  .calculator-vehicle-button,
  .calculator-zubehoer-item,
  .calculator-request-button,
  .wohnmobile-request-primary,
  .wohnmobile-request-secondary,
  .wohnmobile-request-info a {
    transition: none;
  }

  .fahrzeug-gallery-item:hover img,
  .fahrzeug-button-primary:hover,
  .fahrzeug-button-secondary:hover,
  .calc-submit-button:hover,
  .calculator-vehicle-button:hover,
  .calculator-zubehoer-item:hover,
  .calculator-request-button:hover,
  .wohnmobile-request-primary:hover,
  .wohnmobile-request-secondary:hover,
  .wohnmobile-request-info a:hover {
    transform: none;
  }

}