/* ============================================
   COOKIE CONSENT BANNER - GDPR Compliant
   v19.0 - Phase D
   ============================================ */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: var(--bg-secondary, #1e222d);
    border-top: 1px solid var(--border-primary, #2a2e39);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    padding: 16px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary, #787b86);
}

.cookie-consent-text strong {
    color: var(--text-primary, #d1d4dc);
    font-weight: 600;
}

.cookie-consent-text a {
    color: var(--accent-primary-light, #2962ff);
    text-decoration: none;
    transition: color 0.2s;
}

.cookie-consent-text a:hover {
    color: var(--accent-primary-hover, #1e53e5);
    text-decoration: underline;
}

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

.cookie-consent-btn {
    padding: 8px 20px;
    border-radius: var(--radius-md, 6px);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-consent-btn-accept {
    background: var(--color-success, #089981);
    color: #fff;
}

.cookie-consent-btn-accept:hover {
    background: var(--color-success-hover, #0bb89e);
}

.cookie-consent-btn-decline {
    background: var(--bg-tertiary, #2a2e39);
    color: var(--text-secondary, #787b86);
    border: 1px solid var(--border-primary, #2a2e39);
}

.cookie-consent-btn-decline:hover {
    background: var(--bg-hover, #363a45);
    color: var(--text-primary, #d1d4dc);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cookie-consent-actions {
        justify-content: stretch;
    }

    .cookie-consent-btn {
        flex: 1;
        text-align: center;
        padding: 10px 16px;
    }
}

/* ============================================
   LIGHT THEME
   ============================================ */

[data-theme="light"] .cookie-consent-banner {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}
