.mobile-bottom-nav {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    padding: 6px 6px;
    max-width: calc(100vw - 16px);
}

.mobile-bottom-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.mobile-bottom-nav__item {
    flex: 1;
    min-width: 0;
}

.mobile-bottom-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #4a4a4a;
    font-size: 10px;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 2px;
    line-height: 1.1;
    min-height: 48px;
    text-transform: uppercase;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.mobile-bottom-nav__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.mobile-bottom-nav__label {
    display: block;
    min-height: 12px;
}

.mobile-bottom-nav__link.is-active {
    color: #1f1f1f;
}

.mobile-bottom-nav__link.is-active .mobile-bottom-nav__icon {
    background: #f9c400;
    color: #1f1f1f;
    box-shadow: 0 5px 10px rgba(249, 196, 0, 0.4);
}

@media (min-width: 992px) {
    .mobile-bottom-nav {display:none;}
}

@media (max-width: 991px) {
    body {padding-bottom: 68px;}
}
