

.booking-mini-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px dashed #9af5bb;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #fff;
  font-weight: bold;
  padding: 12px 15px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  max-width: 320px;
  margin: 15px auto;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  /* animation: pulse 10s infinite alternate; */
}

.booking-mini-badge .icon {
  font-size: 2rem;
  color: red;                /* Icon-Farbe */
  margin-bottom: 6px;
  background-color: white;   /* weißer Kreis */
  border-radius: 50%;        /* rund */
  padding: 12px;             /* Abstand um das Icon, Größe des Kreises */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* optional: leichter Schatten */
}


.booking-mini-badge .text p {
  margin: 3px 0;
  font-size: 1.1rem;
}

.booking-mini-badge .text .en,
.booking-mini-badge .text .es {
  font-size: 1.1rem;
  
}

.booking-mini-badge .book-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  background: #00c6a7;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.booking-mini-badge .book-btn:hover {
  background: #05bcee;
  transform: translateY(-2px);
}

@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px; /* Abstand zwischen Bild und Text */
  font-weight: bold;
  color: white;
  font-size: 1.1rem;
}

.logo-circle {
  background: rgb(243, 232, 83);
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.logo-img {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  object-fit: contain;
}

/* Responsiv für Smartphones */
@media (max-width: 600px) {
  .logo-img {
    height: 18px;
    width: 18px;
  }
  .logo span {
    font-size: 1rem;
  }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.logo-img:hover {
  animation: logoPulse 0.8s ease-in-out;
}


/* Füge diese Regeln zu deinem bestehenden CSS hinzu */

.bike-selection {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 15px 0;
  width: 100%;
}

.bike-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 0; /* Wichtig für gleichmäßige Verteilung */
}

.bike-option:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #9af5bb;
  transform: translateY(-3px);
}

.bike-option.active {
  background: rgba(154, 245, 187, 0.3);
  border-color: #9af5bb;
  box-shadow: 0 4px 8px rgba(154, 245, 187, 0.4);
}

.bike-option img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  /* Gelber Border hinzufügen */
  border: 3px solid #FFD700; /* Goldgelb */
  border-radius: 50%; /* Macht den Border rund */
  padding: 3px; /* Abstand zwischen Bild und Border */
  background-color: white; /* Hintergrund für besseren Kontrast */
  box-sizing: border-box;
}

.bike-label {
  font-size: 0.85rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  word-break: break-word;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
  .bike-selection {
    gap: 8px;
  }
  
  .bike-option {
    padding: 6px;
  }
  
  .bike-option img {
    width: 50px;
    height: 50px;
  }
  
  .bike-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 400px) {
  .bike-selection {
    gap: 5px;
  }
  
  .bike-label {
    font-size: 0.7rem;
  }
}