/* Bandeau cookies avec effet glassmorphisme */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 3px solid #ffffff30;
    background: rgba(255, 255, 255, 0.30);
    box-shadow: 0px 4px 26.3px 0px rgba(153, 153, 153, 0.35);
    backdrop-filter: blur(20px);    
    /* Layout */
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
    
    /* Animation d'apparition */
    animation: slideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin: 0 0 1rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Container pour les boutons */
.cookie-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-banner.show {
    display: flex;
}



.cookie-banner button:active {
    transform: translateY(0);
}

/* Version responsive */
@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .cookie-banner p {
        margin: 0;
        text-align: left;
        flex: 1;
        margin-right: 2rem;
    }
    
    .cookie-banner .button-group {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }
}

/* Support pour les navigateurs sans backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .cookie-banner {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .cookie-banner button {
        backdrop-filter: none;
    }
}