/* Bandeau de consentement des cookies (RGPD) */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-top: var(--border);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
    padding: var(--space-5) var(--space-7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.cookie-consent-banner.hidden {
    display: none;
}

.cookie-consent-text {
    flex: 1;
    min-width: 200px;
    font-size: var(--font-size-sm);
    color: var(--color-text);
    line-height: 1.5;
}

.cookie-consent-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    text-decoration: none;
}

.cookie-consent-actions {
    display: flex;
    gap: var(--space-3);
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    border: var(--border);
    background: var(--color-surface);
    color: var(--color-text);
}

.cookie-consent-btn:hover {
    background: var(--color-surface-alt);
}

.cookie-consent-btn.btn-accept {
    background: var(--color-primary);
    color: var(--color-primary-contrast);
    border-color: var(--color-primary);
}

.cookie-consent-btn.btn-accept:hover {
    filter: brightness(1.1);
}
