/* Reset et polices */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: #F9EFE7;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background-color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
}

.nav-right {
    display: flex;
    gap: 1rem;
}

nav a {
    text-decoration: none;
    color: #361349;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}


nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 2px;
    background: #BF8DB8;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
}

/* Boutons connexion/inscription */
.btn-login {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-login {
    border: 2px solid #361349;
    color: #361349;
}

.btn-signup {
    color: #361349;
}

.btn-login:hover {
    background-color: #BF8DB8;
}





img {
     display: block;
    margin: 2rem auto;
    max-width: 300px; /* Ajuste selon tes besoins */
    width: 100%;
    height: auto;
}



/* Contenu principal */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.content {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.content::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110, 69, 226, 0.05) 0%, rgba(137, 212, 207, 0.05) 100%);
    z-index: 0;
}

.content > * {
    position: relative;
    z-index: 1;
}

h2 {
    font-family: 'Poppins', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #361349;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #BF8DB8;
    border-radius: 2px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555;
    max-width: 800px;
}

/* Pied de page */
footer {
    background: linear-gradient(135deg, #333 0%, #111 100%);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #BF8DB8;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Effets spéciaux */
.content {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-left, .nav-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .content {
        padding: 2rem 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .header-image img {
        max-width: 150px;
    }
}

/* Formulaires */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #361349;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #BF8DB8;
    box-shadow: 0 0 0 2px rgba(191, 141, 184, 0.2);
}

button[type="submit"] {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 20px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.user-info {
    padding: 16px 20px; /* Augmentation du padding */
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 8px; /* Marge augmentée */
    background-color: #f9f9f9; /* Fond légèrement différencié */
    border-radius: 8px 8px 0 0; /* Coins arrondis seulement en haut */
}



/* Menu déroulant */
.dropdown {
    position: relative;
    display: inline-block;
}

.btn-account {
    background: #361349;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1;
    overflow: hidden;
}

.dropdown-content a {
    color: #361349;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #361349;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Bouton thème */
.btn-theme {
    background: transparent;
    border: 2px solid #BF8DB8;
    color: #BF8DB8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.btn-theme:hover {
    background: #BF8DB8;
    color: white;
}

.theme-toggle-container {
    display: inline-block;
    position: relative;
    margin-right: 15px;
}

.toggleCheckbox {
    display: none;
}

.toggleLabel {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #e0e0e0;
    border-radius: 50px;
    padding: 5px;
    width: 140px;
    height: 34px;
    position: relative;
    transition: background 0.3s;
}

.toggleCheckbox:checked + .toggleLabel {
    background: #333;
}

.toggle-slider {
    position: absolute;
    width: 60px;
    height: 28px;
    background: white;
    border-radius: 50px;
    left: 5px;
    transition: transform 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.toggleCheckbox:checked + .toggleLabel .toggle-slider {
    transform: translateX(70px);
}

.light-text, .dark-text {
    width: 65px;
    text-align: center;
    font-size: 10px;
    z-index: 1;
    color: #666;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.toggleCheckbox:checked + .toggleLabel .light-text {
    color: #aaa;
}

.toggleCheckbox:not(:checked) + .toggleLabel .dark-text {
    color: #aaa;
}

.fa-sun, .fa-moon {
    font-size: 11px;
}

/* Style pour la bannière de cookies - Version intégrée au design */






.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #361349;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #BF8DB8;
    box-shadow: 0 0 0 2px rgba(191, 141, 184, 0.2);
}

button[type="submit"] {
    background-color: #BF8DB8;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 20px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

 .account-container {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .account-sidebar {
            width: 250px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
        }
        
        .account-sidebar h3 {
            color: #361349;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #BF8DB8;
        }
        
        .sidebar-menu {
            list-style: none;
        }
        
        .sidebar-menu li {
            margin-bottom: 0.5rem;
        }
        
        .sidebar-menu button {
            width: 100%;
            text-align: left;
            padding: 0.8rem 1rem;
            border: none;
            background: transparent;
            color: #361349;
            font-family: 'Urbanist', sans-serif;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        

.sidebar-menu button {
    transition: all 0.3s ease;
}

/* Profil - couleur originale */
.sidebar-menu button[data-section="profile"]:hover,
.sidebar-menu button[data-section="profile"].active {
    color: #BF8DB8;
    background: rgba(191, 141, 184, 0.1); /* Version très claire de #BF8DB8 */
}

/* Paramètres - gris */
.sidebar-menu button[data-section="settings"]:hover,
.sidebar-menu button[data-section="settings"].active {
    color: #6c757d;
    background: rgba(108, 117, 125, 0.1); /* Version très claire de #6c757d */
}

/* Favoris - rouge */
.sidebar-menu button[data-section="favorites"]:hover,
.sidebar-menu button[data-section="favorites"].active {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1); /* Version très claire de #dc3545 */
}

/* VIP - jaune/or */
.sidebar-menu button[data-section="vip"]:hover,
.sidebar-menu button[data-section="vip"].active {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1); /* Version très claire de #ffc107 */
}

/* Sécurité - bleu */
.sidebar-menu button[data-section="security"]:hover,
.sidebar-menu button[data-section="security"].active {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.1); /* Version très claire de #0d6efd */
}

/* Optionnel : changer aussi la couleur des icônes au survol */
.sidebar-menu button[data-section="settings"]:hover i,
.sidebar-menu button[data-section="settings"].active i {
    color: #6c757d;
}

.sidebar-menu button[data-section="favorites"]:hover i,
.sidebar-menu button[data-section="favorites"].active i {
    color: #dc3545;
}

.sidebar-menu button[data-section="vip"]:hover i,
.sidebar-menu button[data-section="vip"].active i {
    color: #ffc107;
}

.sidebar-menu button[data-section="security"]:hover i,
.sidebar-menu button[data-section="security"].active i {
    color: #0d6efd;
}
        
        .sidebar-menu button i {
            width: 20px;
            text-align: center;
        }
        
        .account-content {
            flex: 1;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 2rem;
        }
        
        .content-section {
            display: none;
        }
        
        .content-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .vip-content {
            background: #F9EFE7;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .content-section h2 {
            margin-bottom: 1.5rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .account-container {
                flex-direction: column;
            }
            
            .account-sidebar {
                width: 100%;
            }
        }
        
        /* Style pour les listes déroulantes */
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none; /* Supprime le style par défaut du navigateur */
    background-color: white;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23361349' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #BF8DB8;
    box-shadow: 0 0 0 2px rgba(191, 141, 184, 0.2);
}

/* Style pour les options */
.form-group select option {
    padding: 0.5rem;
    font-family: 'Urbanist', sans-serif;
}

/* Style au survol des options */
.form-group select option:hover {
    background-color: #F9EFE7;
}

/* Style pour l'option sélectionnée */
.form-group select option:checked {
    background-color: #BF8DB8;
    color: white;
}

/* Conteneur du select pour positionnement */
.form-group {
    position: relative;
}

/* Styles spécifiques pour la page musées */

/* Formulaire de filtres */
.filters-form {
    background: #F9EFE7;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(191, 141, 184, 0.2);
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-group h3 {
    color: #361349;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.jours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #BF8DB8;
}

.checkbox-item label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

/* Grille des musées */
.musees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.musee-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(191, 141, 184, 0.1);
}

.musee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.musee-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #F9EFE7 0%, rgba(191, 141, 184, 0.1) 100%);
    border-bottom: 1px solid rgba(191, 141, 184, 0.2);
}

.musee-header h3 {
    font-family: 'Poppins', serif;
    color: #361349;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.musee-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.musee-ville, .musee-prix {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #555;
}

.musee-ville i {
    color: #BF8DB8;
}

.musee-prix i {
    color: #361349;
}

.musee-body {
    padding: 1.5rem;
}

.musee-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.horaires h4 {
    color: #361349;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.horaires h4 i {
    color: #BF8DB8;
}

.horaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.horaire-jour {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.horaire-jour.ouvert {
    background: rgba(40, 167, 69, 0.1);
    border-left: 3px solid #28a745;
}

.horaire-jour.ferme {
    background: rgba(220, 53, 69, 0.1);
    border-left: 3px solid #dc3545;
}

.jour {
    font-weight: 600;
    color: #361349;
}

.heures {
    color: #666;
    font-size: 0.8rem;
}

/* Messages de statut */
.no-results, .error-message {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-results i, .error-message i {
    font-size: 3rem;
    color: #BF8DB8;
    margin-bottom: 1rem;
}

.error-message i {
    color: #dc3545;
}

.no-results h3, .error-message h3 {
    color: #361349;
    margin-bottom: 1rem;
}

.no-results p, .error-message p {
    color: #666;
    margin: 0;
}

.results-count {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(191, 141, 184, 0.1);
    border-radius: 8px;
}

.results-count p {
    margin: 0;
    color: #361349;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .filters-container {
        grid-template-columns: 1fr;
    }
    
    .price-range {
        grid-template-columns: 1fr;
    }
    
    .jours-grid {
        grid-template-columns: 1fr;
    }
    
    .musees-grid {
        grid-template-columns: 1fr;
    }
    
    .musee-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .horaires-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .filters-form {
        padding: 1rem;
    }
    
    .musee-header, .musee-body {
        padding: 1rem;
    }
    
    .musee-header h3 {
        font-size: 1.2rem;
    }
}

/* Dans style.css */
/* Remplacez les styles existants pour .favorite-btn par ceci */
.favorite-btn {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    position: relative;
    transition: all 0.2s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.favorite-btn i {
    -webkit-text-stroke: 1px #262626; /* Contour noir autour du coeur */
    text-stroke: 1px #262626;
}

.favorite-btn.favori {
    color: #ed4956; /* Rouge Instagram */
}

.favorite-btn.favori i {
    -webkit-text-stroke: 0; /* Pas de contour quand c'est un favori */
    text-stroke: 0;
}

/* Optionnel : animation au clic comme Instagram */
@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.favorite-btn.animate {
    animation: heartBeat 0.5s ease;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.favorite-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.favorite-card h3 {
    margin-top: 0;
    color: #361349;
}

.remove-favorite {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.remove-favorite:hover {
    background: #ff5252;
}

/* Styles pour la lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
}

.lightbox-content {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-lightbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #361349;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.close-lightbox:hover {
    color: #BF8DB8;
}

.btn-see-more {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: #361349;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-align: center;
}

.btn-see-more:hover {
    background-color: #BF8DB8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.musee-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.musee-details h4 {
    color: #361349;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-item {
    margin-bottom: 1rem;
}

.detail-item strong {
    color: #361349;
}

@media (max-width: 768px) {
    .musee-details {
        grid-template-columns: 1fr;
    }
    
    .lightbox-content {
        padding: 1.5rem;
    }
}

/* Cookie Banner Lightbox */
.cookie-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.cookie-lightbox {
    width: 50%;
    max-height: 80vh;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.5s ease;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-header {
    padding: 1.5rem;
    background: #361349;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.cookie-header h2::after {
    display: none;
}

.close-cookie {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.5rem;
}

.cookie-main, .cookie-settings {
    padding: 2rem;
    overflow-y: auto;
    flex-grow: 1;
}

.cookie-message {
    margin-bottom: 2rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cookie-settings-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.cookie-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.cookie-policy-link {
    color: #BF8DB8;
    text-decoration: none;
    font-weight: 600;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

.cookie-categories {
    margin-top: 1.5rem;
}

.cookie-category {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    background-color: #f9f9f9;
    border-left: 4px solid #BF8DB8;
}

.cookie-category.essential {
    border-left-color: #361349;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    margin: 0;
    color: #361349;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #BF8DB8;
}

input:focus + .slider {
    box-shadow: 0 0 1px #BF8DB8;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #361349;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 992px) {
    .cookie-lightbox {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .cookie-lightbox {
        width: 90%;
        max-height: 90vh;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
}

/* Boutons dans la bannière de cookies */
.btn-cookie {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #361349;
    color: white;
}

.btn-cookie:hover {
    background-color: #BF8DB8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Style pour l'achat VIP */
.vip-purchase-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.vip-purchase-card {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.vip-benefits, .purchase-form {
    flex: 1;
}

.vip-benefits {
    background: #f9f4f8;
    padding: 1.5rem;
    border-radius: 8px;
}

.vip-benefits ul {
    list-style-type: none;
    padding: 0;
}

.vip-benefits li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.vip-benefits li i {
    position: absolute;
    left: 0;
    color: #BF8DB8;
}

.price {
    font-size: 2rem;
    color: #361349;
    font-weight: bold;
    margin: 1rem 0;
}

.purchase-button {
    background: #BF8DB8;
    color: white;
    padding: 1rem;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.purchase-button:hover {
    background: #a87b9d;
}

.disclaimer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

/* Style pour la confirmation */
.confirmation-container {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.confirmation-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.confirmation-icon {
    color: #BF8DB8;
    margin-bottom: 1rem;
}

.promo-code {
    background: #361349;
    color: white;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1.2rem;
    margin: 1rem 0;
    font-weight: bold;
}

.return-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: #BF8DB8;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.return-button:hover {
    background: #a87b9d;
}

/* Style pour le statut VIP actif */
.vip-active {
    background: #f9f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.vip-button {
    display: inline-block;
    background: #BF8DB8;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    margin-top: 1rem;
}