.mobile-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    padding: 10px 8px;
}

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

.mobile-bottom-nav__item {flex:1;}

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

.mobile-bottom-nav__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.25s ease;
}

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

.mobile-bottom-nav__link.is-active .mobile-bottom-nav__icon {
    width: 46px;
    height: 46px;
    background: #f9c400;
    color: #1f1f1f;
    box-shadow: 0 8px 14px rgba(249, 196, 0, 0.45);
}

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

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