/* Bannière de cookies RGPD */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
    z-index: 9999;
    border-top: 3px solid #ff1810;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-banner-text h3 i {
    color: #ff1810;
    font-size: 1.5rem;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    color: #555;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.cookie-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.cookie-list li {
    font-size: 0.9rem;
    color: #555;
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.cookie-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff1810;
    font-weight: bold;
}

.cookie-list li strong {
    color: #1a1a1a;
}

.cookie-banner-links {
    font-size: 0.85rem !important;
    margin-top: 10px !important;
}

.cookie-banner-links a {
    color: #ff1810;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-banner-links a:hover {
    color: #cc0000;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cookie-btn i {
    font-size: 1.1rem;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #ff1810 0%, #ff4444 100%);
    color: white;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #cc0000 0%, #ff1810 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 24, 16, 0.4);
}

.cookie-btn-refuse {
    background: white;
    color: #555;
    border: 2px solid #ddd;
}

.cookie-btn-refuse:hover {
    background: #f8f9fa;
    border-color: #999;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-banner-text h3 {
        font-size: 1.1rem;
        justify-content: center;
    }
    
    .cookie-banner-text p {
        font-size: 0.9rem;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .cookie-banner-text h3 {
        font-size: 1rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

/* Animation d'entrée */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
