/* Cookie Consent Banner - RGPD */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 16px 24px;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent.show {
    display: flex;
    animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-consent__text {
    flex: 1;
}

.cookie-consent__text a {
    color: #64b5f6;
    text-decoration: underline;
}

.cookie-consent__buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.cookie-consent__btn--accept {
    background: #4caf50;
    color: #fff;
}

.cookie-consent__btn--accept:hover {
    background: #43a047;
}

.cookie-consent__btn--decline {
    background: transparent;
    color: #fff;
    border: 1px solid #555;
}

.cookie-consent__btn--decline:hover {
    background: #333;
}

.cookie-consent__btn--settings {
    background: transparent;
    color: #ccc;
    text-decoration: underline;
    padding: 10px 8px;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 14px 16px;
    }
    
    .cookie-consent__buttons {
        width: 100%;
        justify-content: center;
    }
}
