/**
 * Fuzzitech Cookie Consent Banner
 *
 * Minimal bottom bar — navy background, white text, theme buttons.
 * Matches Fuzzitech design system (_variables.css).
 */

/* ── Banner container ─────────────────────────────────── */
#fz-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    background: var(--color-navy, #031C48);
    color: #fff;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    /* start hidden */
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
}

#fz-cookie-consent.fz-cc-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0s;
}

/* ── Text ─────────────────────────────────────────────── */
#fz-cookie-consent .fz-cc-text {
    flex: 1 1 auto;
    min-width: 200px;
    text-align: center;
}

#fz-cookie-consent .fz-cc-text a {
    color: var(--color-brand-red-bright, #FF2244);
    text-decoration: underline;
    text-underline-offset: 2px;
}

#fz-cookie-consent .fz-cc-text a:hover {
    color: #fff;
}

/* ── Buttons ──────────────────────────────────────────── */
#fz-cookie-consent .fz-cc-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

#fz-cookie-consent .fz-cc-btn {
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
    white-space: nowrap;
}

#fz-cookie-consent .fz-cc-btn:hover {
    transform: translateY(-1px);
}

/* Accept — brand red */
#fz-cookie-consent .fz-cc-accept {
    background: var(--color-brand-red, #DC143C);
    color: #fff;
}
#fz-cookie-consent .fz-cc-accept:hover {
    background: var(--color-brand-red-dark, #B91130);
}

/* Decline — subtle dark */
#fz-cookie-consent .fz-cc-decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}
#fz-cookie-consent .fz-cc-decline:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 600px) {
    #fz-cookie-consent {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    #fz-cookie-consent .fz-cc-buttons {
        width: 100%;
        justify-content: center;
    }
}
