/* ============================================================
   VIT-104 — Mobil bottom navigation
   Csak mobilon (max-width: 768px). Sticky, fix a viewport aljához.
   ============================================================ */

.vitano-bottomnav {
    display: none; /* desktopon NEM jelenik meg */
}

@media (max-width: 768px) {
    .vitano-bottomnav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: calc(64px + env(safe-area-inset-bottom, 0));
        padding-bottom: env(safe-area-inset-bottom, 0);
        background: var(--vitano-white);
        border-top: 1px solid var(--vitano-line);
        z-index: 999;
        box-shadow: 0 -2px 12px rgba(44, 36, 32, 0.04);
    }

    /* Body padding-bottom hogy a fix nav ne takarja a tartalmat */
    body {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0)) !important;
    }
}

.vitano-bottomnav-tab {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 64px;
    padding: 8px 4px;
    color: var(--vitano-charcoal-3);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color var(--dur-fast) var(--ease-soft);
}

.vitano-bottomnav-tab:hover,
.vitano-bottomnav-tab:focus-visible {
    color: var(--vitano-charcoal);
    outline: none;
}
.vitano-bottomnav-tab:focus-visible {
    box-shadow: inset 0 0 0 2px var(--vitano-terracotta);
}

.vitano-bottomnav-tab.is-active {
    color: var(--vitano-terracotta);
}

.vitano-bottomnav-tab.is-active .vitano-bottomnav-icon {
    stroke-width: 2.5;
}

.vitano-bottomnav-icon {
    display: block;
    flex-shrink: 0;
}

.vitano-bottomnav-label {
    line-height: 1;
}

/* Kosár badge */
.vitano-bottomnav-iconwrap {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.vitano-bottomnav-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--vitano-coral);
    color: var(--vitano-white);
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 0 2px var(--vitano-white); /* fehér ring elválasztó */
}

.vitano-bottomnav-badge[hidden] { display: none; }

/* Hűzy hozzáférhetőség: ha 'reduced motion' preferencia, kapcsoljuk ki a transition-t */
@media (prefers-reduced-motion: reduce) {
    .vitano-bottomnav-tab { transition: none; }
}
