/* ===== BANNIÈRE DE CONSENTEMENT DES COOKIES ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(5, 10, 48, 0.98), rgba(35, 61, 255, 0.95));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    z-index: 10000;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

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

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-text i {
    color: #f1c40f;
    font-size: 18px;
    flex-shrink: 0;
}

.cookie-link {
    color: #64b5f6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #90caf9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    box-shadow: 0 3px 15px rgba(46, 204, 113, 0.3);
}

.cookie-accept:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

/* Responsive pour mobile */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 12px 15px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-text {
        font-size: 13px;
        justify-content: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
}
