.mobile-nav {
    display: none;
}

@media (max-width: 992px) {
    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-nav {
        display: flex;
        align-items: stretch;
        justify-content: space-around;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        min-height: 72px;
        padding: 0 8px env(safe-area-inset-bottom, 0px);
        background: #FFFFFF;
        border-top: 1px solid #e8e8e8;
        box-shadow: 0 -4px 20px rgba(55, 55, 55, 0.06);
    }

    .mobile-nav__item {
        position: relative;
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-width: 0;
        padding: 10px 4px 12px;
        color: #9ca3af;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .mobile-nav__indicator {
        position: absolute;
        top: 0;
        left: 12px;
        right: 12px;
        height: 3px;
        border-radius: 0 0 3px 3px;
        background: transparent;
    }

    .mobile-nav__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        color: inherit;
    }

    .mobile-nav__icon svg {
        width: 24px;
        height: 24px;
    }

    .mobile-nav__label {
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 11px;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
    }

    .mobile-nav__item--active {
        color: #1e293b;
    }

    .mobile-nav__item--active .mobile-nav__indicator {
        background: #ff7a95;
    }

    .mobile-nav__item--active .mobile-nav__label {
        font-weight: 700;
    }

    .mobile-nav__item--disabled {
        color: #d1d5db;
        cursor: not-allowed;
        pointer-events: none;
    }

    .site-header__center.is-open .site-header__nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .mobile-nav__label {
        font-size: 10px;
    }
}