/* ═══════════════════════════════════════
   COOKIE CONSENT BANNER
   Jessy Martin Consulting
   Glassmorphism, non-blocking
   ═══════════════════════════════════════ */

#cookieConsent {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    max-width: 480px;
    background: rgba(13, 27, 42, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 152, 179, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    z-index: 100;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.cc-text {
    color: var(--light-blue, #ACCBE1);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.cc-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.cc-btn {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.55rem 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1.2;
    white-space: nowrap;
}

/* Accept: golden primary */
.cc-accept {
    background: var(--golden, #F9DC5C);
    color: var(--midnight, #0D1B2A);
    border: none;
}
.cc-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 220, 92, 0.25);
}

/* Deny: ghost */
.cc-deny {
    background: transparent;
    color: var(--soft-blue, #7C98B3);
    border: 1px solid rgba(124, 152, 179, 0.15);
}
.cc-deny:hover {
    border-color: rgba(124, 152, 179, 0.35);
    color: var(--off-white, #FAFAFA);
}

/* Customize (ghost, same as deny) */
.cc-customize {
    background: transparent;
    color: var(--soft-blue, #7C98B3);
    border: 1px solid rgba(124, 152, 179, 0.15);
    text-decoration: none;
    display: inline-block;
}
.cc-customize:hover {
    border-color: rgba(124, 152, 179, 0.35);
    color: var(--off-white, #FAFAFA);
}

/* ── MOBILE ── */
@media (max-width: 1024px) {
    #cookieConsent {
        left: 1rem;
        right: 1rem;
        bottom: 5rem;
        max-width: none;
    }

    .cc-actions {
        flex-direction: column;
    }

    .cc-btn {
        width: 100%;
        text-align: center;
    }
}
