/* ===== BANDEAU COOKIES RGPD ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #fff;
    padding: 20px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
    animation: slideUp 0.4s ease-out;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text h3::before {
    content: "🍪";
    font-size: 24px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.5;
}

.cookie-text a {
    color: #B49282;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #d4a896;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: #B49282;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #a07d6e;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
    background: transparent;
    color: #bdc3c7;
    border: 1px solid #bdc3c7;
    font-size: 13px;
    padding: 10px 18px;
}

.cookie-btn-settings:hover {
    color: #fff;
    border-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        min-width: 100%;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}
