
/* BANDEAU COOKIES */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #333333 0%, #242424 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-top: 3px solid #FFCC00;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1;
    font-size: 0.95em;
    line-height: 1.5;
}

.cookie-banner-text h3 {
    color: #FFCC00;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-banner-text p {
    margin-bottom: 8px;
    color: white;
}

.cookie-banner-text a {
    color: #FFCC00;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    color: #ffd53c;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    min-width: 120px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #FFCC00 0%, #ffd53c 100%);
    color: #000;
    border: 2px solid transparent;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #fddf70 0%, #fde795 100%);
    transform: translateY(-1px);
    text-decoration: none;
}

.cookie-btn-reject {
    background: transparent;
    color: white;
    border: 2px solid #666;
}

.cookie-btn-reject:hover {
    background: #666;
    border-color: #888;
    transform: translateY(-1px);
}

.cookie-btn-customize {
    background: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
    font-size: 0.85em;
    padding: 10px 16px;
    min-width: auto;
}

.cookie-btn-customize:hover {
    background: #FFCC00;
    color: #000;
    transform: translateY(-1px);
    text-decoration: none;
}

/* Animation de fermeture */
.cookie-banner.hide {
    animation: slideDown 0.4s ease-in-out forwards;
}

@keyframes slideDown {
    to {
        transform: translateY(100%);
    }
}

/* Notification */
.notification {
    position: fixed;
    top: 140px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transform: translateX(800px);
    transition: transform 0.3s ease-in-out;
    font-weight: 500;
    border-left: 4px solid #FFCC00;
}

.notification.show {
    transform: translateX(0);
}
.notification.hide {
    transform: translateX(800px);
    transition: transform 0.4s ease-in-out;
}

/* Responsive pour le bandeau cookies */
@media screen and (max-width: 1024px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}

@media screen and (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-banner-text {
        font-size: 0.9em;
    }

    .cookie-banner-text h3 {
        font-size: 1em;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        margin: 3px 0;
    }

    .notification {
        right: 10px;
        left: 10px;
        top: 120px;
    }
}

@media screen and (max-width: 480px) {
    .cookie-banner-text h3 {
        font-size: 0.95em;
    }

    .cookie-banner-text {
        font-size: 0.85em;
    }

    .cookie-btn {
        padding: 10px 16px;
        font-size: 0.85em;
    }
}