/* =====================================================
   Arni-Womo Preisübersicht
   ===================================================== */

.aw-preise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 10px;
}


.aw-preise-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(23,48,79,0.10);
  display: flex;
  flex-direction: column;
}


.aw-preise-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}


.aw-preise-card-content {
  padding: 28px 32px 32px;
}


.aw-preise-card-content h3 {
  margin: 0 0 22px;
  color: #17304f;
  font-size: 1.5rem;
}


/* Preiszeilen */

.aw-preis-zeile {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  min-height: 76px;

  padding: 12px 0;

  border-bottom: 1px solid rgba(23,48,79,0.12);

  box-sizing: border-box;
}


.aw-preis-zeile:last-of-type {
  border-bottom: none;
}


.aw-preis-zeile span {
  color: #555;
}


.aw-preis-zeile strong {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;

  min-height: 32px;

  color: #17304f;
  font-size: 1rem;
  text-align: right;
}


/* Button */

.aw-preise-button {
  display: block;
  width: fit-content;
  margin: 25px auto 0;
  background: #ef7d00;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}


.aw-preise-button:hover {
  background: #d96f00;
  color: #ffffff !important;
}

/* Servicepauschale */

.aw-servicepauschale {
  margin-top: 18px;
  padding: 12px 15px;
  background: rgba(23,48,79,0.05);
  border-radius: 12px;
  color: #17304f;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* =====================================================
   Preis Hinweise
   ===================================================== */

.preise-hinweise-section {
  margin-top: 50px;
  padding-bottom: 40px;
}


.preise-hinweise-inner {
  max-width: 1180px;
  margin: 0 auto;
}


.preise-hinweise-inner h3 {
  color: #17304f;
  margin-bottom: 15px;
}


.preise-hinweise-inner > p {
  color: #444;
  margin-bottom: 30px;
}


.preise-hinweise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


.preise-hinweis-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 8px 24px rgba(23,48,79,0.08);
}


.preise-hinweis-card h4 {
  margin-top: 0;
  color: #17304f;
  font-size: 1.1rem;
}


.preise-hinweis-card p {
  color: #555;
  line-height: 1.5;
}




/* =========================================================
   Preise – Abschluss-CTA
   ========================================================= */

.preise-cta {
  margin-top: 36px;
}

.preise-cta-content {
  padding: 30px 32px;

  background:
    linear-gradient(
      135deg,
      rgba(23, 48, 79, 0.98),
      rgba(23, 48, 79, 0.92)
    );

  border-radius: 18px;

  color: #ffffff;

  box-shadow:
    0 10px 28px
    rgba(23, 48, 79, 0.12);

  box-sizing: border-box;
}

.preise-cta-eyebrow {
  display: block;

  margin-bottom: 10px;

  color: #ffb26b;

  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preise-cta-content h2 {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.2;
  font-weight: 800;
}

.preise-cta-content > p {
  max-width: 900px;

  margin: 0;

  color: rgba(255, 255, 255, 0.9);

  font-size: 16.5px;
  line-height: 1.65;
}

.preise-cta-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 22px;
}

/* =========================================================
   Einheitliche Buttons auf der Preise-Seite
   ========================================================= */

.preise-cta-primary,
.preise-cta-secondary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 13px 26px;

  background: #ef7d00;
  color: rgba(23, 48, 79, 0.98) !important;

  border: 2px solid #ef7d00;
  border-radius: 999px;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;

  text-align: center;
  text-decoration: none;

  box-sizing: border-box;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}


/* Besuchte Links bleiben weiß */

.preise-cta-primary:visited,
.preise-cta-secondary:visited {
  color: #ffffff !important;
}


/* Hover / Tastaturfokus */

.preise-hinweise-button a:hover,
.preise-hinweise-button a:focus-visible,
.preise-cta-primary:hover,
.preise-cta-primary:focus-visible,
.preise-cta-secondary:hover,
.preise-cta-secondary:focus-visible {
  background: #d96f00;
  color: #ffffff important;

  border-color: #d96f00;

  transform: translateY(-1px);

  text-decoration: none;
}


/* Fahrzeugkarten-Button weiterhin zentriert */

.aw-preise-button {
  width: fit-content;

  margin: 25px auto 0;
}


/* Alter Hinweise-Button, falls noch irgendwo verwendet */

.preise-hinweise-button {
  margin-top: 35px;

  text-align: center;
}


.preise-cta-links {
  display: flex;
  flex-wrap: wrap;

  align-items: center;

  gap: 8px;

  margin-top: 18px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 14px;
  line-height: 1.5;
}

.preise-cta-links a,
.preise-cta-links a:visited {
  color: #ffffff;

  font-weight: 700;

  text-decoration: underline;
  text-underline-offset: 3px;
}

.preise-cta-links a:hover,
.preise-cta-links a:focus-visible {
  color: #ffb26b;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 700px) {

  .preise-cta-content {
    padding: 26px 22px;
  }

  .preise-cta-actions {
    flex-direction: column;
  }

  .preise-cta-primary,
  .preise-cta-secondary {
    width: 100%;
  }

}


/* =========================================================
   Bewegung reduzieren
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .aw-preise-button,
  .preise-hinweise-button a,
  .preise-cta-primary,
  .preise-cta-secondary {
    transition: none;
  }

  .aw-preise-button:hover,
  .preise-hinweise-button a:hover,
  .preise-cta-primary:hover,
  .preise-cta-secondary:hover {
    transform: none;
  }

}
/* Tablet */

@media (max-width: 900px) {

  .preise-hinweise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* Mobile */

@media (max-width: 600px) {

  .preise-hinweise-grid {
    grid-template-columns: 1fr;
  }

}
/* Hinweis-Karten Symbole */

.preise-hinweis-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}


.preise-hinweis-card h3 {
  margin-top: 0;
}
/* Tablet */

@media (max-width: 900px) {

  .aw-preise-grid {
    grid-template-columns: 1fr;
  }

}


/* Mobile */

@media (max-width: 600px) {

  .aw-preise-card-content {
    padding: 24px 20px 26px;
  }


  .aw-preis-zeile {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }


  .aw-preise-button {
    width: 100%;
  }

}
/* =====================================================
   Saisonzeiten und Mindestmietdauer
   ===================================================== */

.aw-preise-info-section {
  margin: 0 0 42px;
}


.aw-preise-info-heading {
  margin-bottom: 20px;
}


.aw-preise-info-heading h2 {
  margin: 0 0 8px;
  color: #17304f;
  font-size: 1.65rem;
}


.aw-preise-info-heading p {
  margin: 0;
  color: #555;
  line-height: 1.55;
}


/* Saisonzeiten */

.aw-saison-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 18px;
}


.aw-saison-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow:
    0 8px 24px
    rgba(23,48,79,0.08);

  display: flex;
  flex-direction: column;
  gap: 7px;
}


.aw-saison-name {
  color: #17304f;
  font-size: 1.05rem;
}


.aw-saison-zeitraum {
  color: #555;
  font-size: 0.95rem;
}


/* Mindestmietdauer */

.aw-mindestmiete-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 18px;
}


.aw-mindestmiete-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow:
    0 8px 24px
    rgba(23,48,79,0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}


.aw-mindestmiete-card > span {
  color: #555;
}


.aw-mindestmiete-card > strong {
  color: #17304f;
  font-size: 1.15rem;
}

.aw-winter-regeln {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}


.aw-winter-regeln strong {
  color: #17304f;
}


.aw-winter-regeln small {
  color: #666;
  line-height: 1.4;
}


/* Hinweis innerhalb Fahrzeug-Preiskarte */

.aw-preis-hinweis {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 0.8rem;
  font-weight: 500;
}


/* Tablet */

@media (max-width: 900px) {

  .aw-saison-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
  .aw-mindestmiete-grid {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
}

}


/* Mobile */

@media (max-width: 600px) {

  .aw-saison-grid,
  .aw-mindestmiete-grid {
    grid-template-columns: 1fr;
  }


  .aw-mindestmiete-card-wide {
    grid-column: auto;
  }


  .aw-mindestmiete-card {
    flex-direction: column;
    align-items: flex-start;
  }


  .aw-winter-regeln {
    align-items: flex-start;
    text-align: left;
  }
}