.mmc-mobile-bottom-nav{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:10000;
    display:none;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    padding:8px 10px calc(8px + env(safe-area-inset-bottom));
    background:rgba(255,255,255,0.98);
    border-top:1px solid rgba(23,50,79,0.1);
    box-shadow:0 -10px 30px rgba(23,50,79,0.12);
    backdrop-filter:blur(14px);
    box-sizing:border-box;
}

.mmc-mobile-bottom-nav__item{
    display:flex;
    min-width:0;
    min-height:56px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    color:#46505d;
    text-decoration:none;
    font-size:12px;
    line-height:1.1;
    font-weight:800;
    -webkit-tap-highlight-color:transparent;
}

.mmc-mobile-bottom-nav__icon{
    display:flex;
    width:34px;
    height:30px;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    color:currentColor;
}

.mmc-mobile-bottom-nav__icon svg{
    width:22px;
    height:22px;
    display:block;
    fill:currentColor;
}

.mmc-mobile-bottom-nav__label{
    overflow:hidden;
    max-width:100%;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.mmc-mobile-bottom-nav__item.is-active{
    color:#071d3a;
}

.mmc-mobile-bottom-nav__item.is-active .mmc-mobile-bottom-nav__icon{
    background:#eef2f7;
}

@media(max-width:768px){
    body{
        padding-bottom:calc(82px + env(safe-area-inset-bottom));
    }

    .mmc-mobile-bottom-nav{
        display:grid;
    }
}
