/* ===== Cookie Consent Banner (Audit #58) ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: var(--executive-navy, #1e293b);
    border-top: 1px solid rgba(233, 181, 55, 0.3);
    padding: 1rem 1.5rem;
    display: none; /* shown via JS */
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: inherit;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.cookie-consent.visible {
    display: flex;
}
.cookie-consent__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 600px;
}
.cookie-consent__text a {
    color: var(--premium-gold, #E9B537);
    text-decoration: underline;
}
.cookie-consent__btn {
    background: var(--premium-gold, #E9B537);
    color: var(--premium-navy, #0f1729);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.cookie-consent__btn:hover {
    opacity: 0.9;
}
.cookie-consent__btn--decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.cookie-consent__btn--decline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    .cookie-consent__actions {
        display: flex;
        gap: 0.5rem;
        width: 100%;
    }
    .cookie-consent__btn {
        flex: 1;
    }
}
