/* BANDEAU RGPD - VERSION FORCEE */
#gdpr-banner {
    position: fixed !important;
    bottom: -100% !important; /* Caché hors écran par défaut */
    left: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    border-top: 1px solid rgba(10, 36, 84, 0.1) !important;
    box-shadow: 0 -10px 40px rgba(8, 20, 35, 0.15) !important;
    padding: 20px 0 !important;
    z-index: 99999 !important; /* Plus haut que tout le reste */
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    font-family: "Barlow", sans-serif !important;
    display: block !important; /* Force l'affichage du conteneur */
    opacity: 1 !important;
}

#gdpr-banner.is-visible {
    bottom: 0 !important; /* Remonte à l'écran */
}

/* S'assurer que le contenu est bien visible */
.gdpr-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.gdpr-content {
    flex: 1 !important;
    min-width: 300px !important;
}

.gdpr-actions {
    display: flex !important;
    gap: 12px !important;
    flex-shrink: 0 !important;
}

/* Boutons */
.btn-gdpr {
    display: inline-block !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    border: none !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
}

.btn-gdpr--accept {
    background: linear-gradient(135deg, #f2be1a, #ffd24e) !important;
    color: #162033 !important;
}

.btn-gdpr--refuse {
    background: transparent !important;
    color: var(--muted, #66758b) !important;
    border: 1px solid rgba(10, 36, 84, 0.2) !important;
}

@media (max-width: 768px) {
    .gdpr-container {
        flex-direction: column !important;
        text-align: center !important;
    }
    .gdpr-actions {
        width: 100% !important;
        justify-content: center !important;
    }
}