.modal1 {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 220, 31, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 70vh;
  margin-top: 60px;
  border-radius: 5px;
}

.caption1 {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: white;
  padding: 10px 0;
  font-size: 16px;
}

/* .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
} */

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s;
  user-select: none;
}

.next { right: 10px; }
.prev { left: 10px; }

.prev:hover, .next:hover {
  background-color: rgba(37, 21, 212, 0.8);
  border-radius: 5px;
}

/* Bike Selection Styles */
/* Bike Selection - GRÖSSERE BILDER IM CONTAINER */
.bike-selection {
  display: flex;
  gap: 12px; /* Etwas mehr Abstand */
  padding: 15px;
  margin-bottom: 15px;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  background: #69e9f2; /* Heller Hintergrund für Kontrast */
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.bike-option {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 12px;
  border: 2px solid #25D366;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #69e9f2;
  position: relative;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bike-option:hover {
  background: #f8fff9;
  border-color: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.2);
}

.bike-option.active,
.bike-option.zoomed {
  border-width: 3px;
  border-color: #1da851;
  background: #f0fff4;
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* GRÖSSERE BILDER - aber proportional */
.bike-option img {
  width: 90px; /* Größer! */
  height: 70px; /* Größer! */
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  max-width: 100%;
}

.bike-option:hover img {
  transform: scale(1.08);
  border-color: #25D366;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bike-option.zoomed img {
  transform: scale(1.12);
  border-color: #1da851;
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

.bike-label {
  font-size: 14px; /* Größer */
  font-weight: 700; /* Fetter */
  margin-bottom: 5px;
  color: #2d3436;
  transition: all 0.3s ease;
}

.bike-option:hover .bike-label,
.bike-option.active .bike-label,
.bike-option.zoomed .bike-label {
  color: #25D366;
  font-size: 15px;
}

.bike-price {
  font-size: 12px; /* Größer */
  color: #25D366;
  font-weight: bold;
  padding: 4px 10px;
  background: rgba(37, 211, 102, 0.12);
  border-radius: 15px;
  margin-top: 5px;
  transition: all 0.3s ease;
}

.bike-option:hover .bike-price,
.bike-option.active .bike-price,
.bike-option.zoomed .bike-price {
  background: rgba(37, 211, 102, 0.2);
  font-size: 13px;
  transform: scale(1.05);
}

/* Für sehr kleine Screens - optimierte Größen */
@media (max-width: 480px) {
  .bike-selection {
    gap: 8px;
    padding: 10px;
  }
  
  .bike-option {
    padding: 10px 6px;
  }
  
  .bike-option img {
    width: 70px; /* Immer noch gut sichtbar */
    height: 55px;
  }
  
  .bike-label {
    font-size: 12px;
  }
}

/* KEIN MEDIA-QUERY MEHR - IMMER NEBENEINANDER */

.date-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
}

.date-separator {
  color: #666;
  font-weight: bold;
  font-size: 14px;
}

.date-picker, .bike-select, .phone-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 5px 0;
}

/* Rest deiner bestehenden Styles */
.calendar-section, .selection-section, .price-display, .contact-section, .terms-section {
  margin-bottom: 15px;
}

.price-total {
  font-weight: bold;
  border-top: 1px solid #eee;
  padding-top: 8px;
  margin-top: 8px;
}


.booking-mini-badge {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 320px;
  margin: 20px auto;
}

.bike-header {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.bike-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.date-inputs {
  display: flex;
  gap: 8px;
}

.date-picker, .bike-select, .phone-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 5px 0;
}

.price-total {
  font-weight: bold;
  border-top: 1px solid #eee;
  padding-top: 8px;
  margin-top: 8px;
}

.book-btn {
  display: block;
  background: #25D366;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 15px;
  font-weight: bold;
}


.selection-row {
  display: flex;
  gap: 20px;             /* Abstand zwischen Anzahl und Uhrzeit */
  align-items: center;    /* Mittig ausrichten */
}

.selection-section,
.time-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.selection-row select {
  height: 38px;           /* Höhe wie bikeCount */
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  min-width: 120px;       /* optional gleiche Breite */
}

.small-label {
  font-size: 14px;        /* klein, passt zum Select */
  margin-bottom: 5px;     /* Abstand zum Select */
  font-weight: 600;
}
/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: flex-start; /* Abstand oben */
  padding: 50px 10px 30px; /* oben: 50px, unten: 30px, seitlich 10px */
  z-index: 9999;
  overflow-y: auto; /* scroll wenn Inhalt zu groß */
}

/* Overlay Inhalt */
.overlay-content {
  background: white;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  animation: fadeIn 0.3s ease;
  box-sizing: border-box;
}

/* Close Button */


/* Fade-In Animation */
@keyframes fadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Slider */
/* Overlay Hintergrund */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Content */
.overlay-content {
  background: white;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  animation: fadeIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* Schließen-Kreuz */


/* Fade Animation */
@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Slider */
/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.overlay-content {
  background: gold;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  padding: 15px;
  position: relative;
  animation: fadeIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* .close-overlay {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
} */

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Slider */
.overlay-slider {
  position: relative; /* <-- wichtig */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
  height: 200px;
  background-color: #469dfb; /* Blau */
}

.overlay-slider .slides {
  display: flex;
  transition: transform 0.4s ease;
  height: 100%;
}

.overlay-slider .slide {
  flex: 0 0 100%;
}

.overlay-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* kein Abschneiden mehr */
  border-radius: 12px;
}

.prev-slide, .next-slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}
.prev-slide { left: 10px; }
.next-slide { right: 10px; }
.close-overlay {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 28px;
  cursor: pointer;
  color: rgb(0, 0, 0);
  z-index: 5; /* Über Pfeilen */
}

