/**
 * Hotel Saisons - Styles du bouton de bascule
 */
.hotel-saisons-bouton {
    display: inline-flex;
    gap: 0;
    background: #f0f0f0;
    border-radius: 30px;
    padding: 4px;
    margin: 10px 0;
}

.hotel-saisons-bouton .hotel-saisons-btn {
    background: transparent;
    border: none;
    padding: 8px 18px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.hotel-saisons-bouton .hotel-saisons-btn:hover {
    color: #222;
}

.hotel-saisons-bouton .hotel-saisons-btn.active {
    background: #fff;
    color: #111;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.hotel-saisons-bouton .hotel-saisons-btn-ete.active {
    background: linear-gradient(135deg, #ffd86b, #ff9e3c);
    color: #fff;
}

.hotel-saisons-bouton .hotel-saisons-btn-hiver.active {
    background: linear-gradient(135deg, #8ec5fc, #4a90e2);
    color: #fff;
}

/* Transition douce quand la saison change */
body.saison-ete,
body.saison-hiver {
    transition: background-color 0.4s ease;
}
