/* =================================
   MENU TABS COMPACT
================================= */


.menu-tabs-section{

    background:#fff;

    position:sticky;

    top:0;

    z-index:20;

    border-bottom:1px solid #eee;

}


.menu-tabs{

    display:flex;

    gap:8px;

    overflow-x:auto;

    padding:8px 10px;

}


.menu-tabs::-webkit-scrollbar{

    display:none;

}


.menu-tab{

    white-space:nowrap;

    text-decoration:none;

    color:#555;

    background:#f5f5f5;

    padding:6px 14px;

    border-radius:20px;

    font-size:13px;

}


.menu-tab.active{

    background:#ff5a1f;

    color:#fff;

}


/* Mobile */

@media(max-width:480px){

    .menu-tab{

        font-size:12px;

        padding:5px 12px;

    }

}