/* ══════════════════════════════════════════════════════════════
   STACCIOLLA — Cookie Consent Banner
   Fixed bottom bar. Appears until user accepts.
   All values use --fe-* design tokens.
   ══════════════════════════════════════════════════════════════ */

.fe-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--fe-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.fe-cookie.is-visible {
    transform: translateY(0);
}

/* ── Text ──────────────────────────────────────────────────── */

.fe-cookie__text {
    font-family: var(--fe-font-body), sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.fe-cookie__text a {
    color: var(--fe-gold);
    text-decoration: none;
}

.fe-cookie__text a:hover {
    text-decoration: underline;
}

/* ── Actions ───────────────────────────────────────────────── */

.fe-cookie__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.fe-cookie__btn {
    font-family: var(--fe-font-body), sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    padding: 0.625rem 1.25rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.fe-cookie__btn--accept {
    background: var(--fe-gold);
    color: var(--fe-white);
    border: 1px solid var(--fe-gold);
}

.fe-cookie__btn--accept:hover {
    background: transparent;
    color: var(--fe-gold);
}

.fe-cookie__btn--manage {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fe-cookie__btn--manage:hover {
    color: var(--fe-white);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 600px) {
    .fe-cookie {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .fe-cookie__actions {
        width: 100%;
    }

    .fe-cookie__btn {
        flex: 1;
        text-align: center;
    }
}
