/* Banniere de consentement cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 18px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.cookie-banner-inner {
    max-width: 960px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-banner-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #80b3ff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
}

.cookie-btn:active {
    transform: scale(0.97);
}

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

.cookie-btn-accept:hover {
    background: #059669;
}

.cookie-btn-reject {
    background: transparent;
    color: #e0e0e0;
    border: 1px solid #555;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 16px;
    }
    .cookie-banner-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}
