/* ============================================================
   Site Footer — Halloween Seixal
   Bottom tab-bar nav, same items as the header (rendered by footer.js
   from HEADER_NAV_CONFIG in nav-config.js), styled after the Airsoft
   site's bottom nav pattern. Built entirely on tokens.css custom
   properties — no hardcoded colors/spacing here.
   ============================================================ */

.site-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-header);
    background: #000;
    border-top: 1px solid rgb(250 229 162 / 52%);
    box-shadow: var(--shadow-soft);
}

.footer-icons-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2) var(--space-4);
    min-height: var(--footer-h);
}

.footer-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    flex: 1 1 0;
    color: #ffffff;
    text-decoration: none;
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

.footer-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #ffffff;
}

.footer-nav-icon svg,
.footer-nav-icon img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-center-item {
    margin-top: -28px;
}

.footer-add-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d89e41;
    color: var(--color-bg);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
}

.footer-center-item:hover .footer-add-circle,
.footer-center-item:focus-visible .footer-add-circle {
    box-shadow: var(--glow-gold);
}

.footer-add-plus {
    width: 24px;
    height: 24px;
}

.footer-nav-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .footer-nav-label {
        white-space: normal;
        max-width: 56px;
        font-size: 0.6rem;
        line-height: 1.15;
    }
}
