/* =========================================
   # COOKIE CONSENT BANNER
   ========================================= */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 0 20px 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-consent.show { transform: translateY(0); }

.cookie-consent-inner {
    max-width: 1520px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    font-size: 22px;
}

.cookie-consent-text { flex: 1; }
.cookie-consent-text a {
    color: #38bdf8;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-consent-text a:hover { color: #7dd3fc; }

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

.cookie-btn {
    padding: 10px 22px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.cookie-btn-accept {
    background: #0277BD; /* WCAG AA */
    color: #fff;
}
.cookie-btn-accept:hover {
    background: #0277BD;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14,165,233,0.35);
}
.cookie-btn-reject {
    background: rgba(255,255,255,0.08);
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn-reject:hover {
    background: rgba(255,255,255,0.12);
    color: #e2e8f0;
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
        gap: 14px;
    }
    .cookie-consent-icon { display: none; }
    .cookie-consent-actions { width: 100%; }
    .cookie-btn { flex: 1; padding: 12px 16px; }
}
