.code-container {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(19, 118, 232, 0.9);
}
.wrong-code { box-shadow: 0px 0px 15px rgba(235, 64, 52, 0.9) !important; }
.right-code { box-shadow: 0px 0px 15px rgba(76, 175, 80, 0.9) !important; }
#access-code {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    text-align: center;
}
button.modell-button { width: 100%; }

/* Stile für Modal und invalides Eingabefeld */
.modal-backdrop {
    display: none; /* Standardmäßig verborgen */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 2.5rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.modal-close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    border: none;
    background: none;
    cursor: pointer;
}
.modal-close-btn:hover,
.modal-close-btn:focus {
    color: black;
    text-decoration: none;
}
.modal-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
}
/* Klasse für invalides Feld */
.input-invalid {
    border-color: #ef4444 !important; /* Roter Rand */
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important; /* Roter Schein */
}

/* Stile für die Nachrichten im Modal */
.modal-message {
    padding: 1rem;
    border-radius: 0.375rem;
    text-align: center;
    font-weight: bold;
}
.modal-message.success {
    background-color: #dcfce7; /* Tailwind's green-100 */
    color: #166534; /* Tailwind's green-800 */
    border: 1px solid #4ade80; /* Tailwind's green-400 */
}
.modal-message.error {
    background-color: #fee2e2; /* Tailwind's red-100 */
    color: #991b1b; /* Tailwind's red-800 */
    border: 1px solid #f87171; /* Tailwind's red-400 */
}

/* Animation für wackelnde Pfeile */
@keyframes wobble {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); } /* Verschiebung nach links */
    75% { transform: translateX(5px); }  /* Verschiebung nach rechts */
    100% { transform: translateX(0); }
}

.animated-arrow {
    display: inline-block; /* Wichtig, damit die Animation funktioniert */
    font-size: 18px; /* Größe des Pfeils anpassen */
    vertical-align: middle; /* Für bessere Ausrichtung mit dem Text */
    margin: 5px; /* Abstand zum Text */
    animation: wobble 2s ease-in-out infinite; /* Animation anwenden */
    color: rgba(19, 118, 232, 1);
}

.left-arrow::before {
    content: "🠖 "; /* Linker Pfeil */
}

.right-arrow::before {
    content: " 🠔"; /* Rechter Pfeil */
}
.model-card {
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}    
#sesselbild { 
    background-image: url('https://massagesessel-praxis.de/images/braintronics-alpha-2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-top:0px;
}    
/* Stile für die neue Testimonial-Ansicht */
.testimonial-category {
    margin-bottom: 3.5rem;
}

.testimonial-category h3 {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb; /* tailwind gray-200 */
    color: #111827; /* tailwind gray-900 */
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 Spalte auf kleinen Bildschirmen */
    gap: 1.5rem;
}

/* 2 Spalten für größere Bildschirme */
@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Das Styling für die Karten selbst bleibt gleich, falls es woanders definiert ist. Hier ist eine Basis: */
.review-card {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: transform 0.2s;
}
.review-card:hover {
    transform: translateY(-5px);
}
.stars span { color: #f59e0b; } /* tailwind amber-500 */
.product-model-display {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #4b5563; /* tailwind gray-600 */
    font-weight: 500;
}
.read-more-btn {
    display: inline;
    padding: 0;
    margin: 0 0 0 4px;
    background: none;
    border: none;
    color: #2563eb; /* tailwind blue-600 */
    font-weight: bold;
    cursor: pointer;
}
.read-more-btn:hover { text-decoration: underline; }      

/* Stile für den schwebenden Anruf-Button */
.floating_link {
    position: fixed;
    width: 150px; /* Breite des Bildes anpassen */
    height: auto;
    bottom: 0px;
    left: 0px;
    z-index: 1000;
    display: none; /* Wichtig: Anfangs ausblenden */
    transition: transform 0.2s ease-in-out;
}

.floating_link:hover {
    transform: scale(1.05); /* Leichter Schwebe-Effekt */
}

.my-float {
    width: 100%;
    height: auto;
    display: block;
}

#CookiebotWidget { right: 10px !important; left: auto !important; }

.bonus-image-container {
    display: none; /* Bild standardmäßig verstecken */
    margin: 1rem 0;
    text-align: center;
}
.bonus-image-container img {
    max-width: 100%;
    height: auto;
}

.preis-leasing {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem; /* Abstand zwischen den Preisboxen */
    margin-bottom: 1rem;
}
.pl-preis, .pl-leasing {
    flex: 1; /* Sorgt dafür, dass beide Boxen gleich breit sind */
}
.pl-leasing {
    border-left: 2px solid #e5e7eb; /* Trennlinie */
    padding-left: 0.5rem;
}