.menu-tabs {
    width: 100%;
    position: relative;
    padding-bottom: 15px;
    min-height: 90vh !important;
}


.tab-menu {
    list-style: none;
    padding: 0px !important;
    display: flex;
    gap: 0px;
    position: fixed;
    bottom: 0;
}

.tab-menu li {
    cursor: pointer;
    background-color: #f0f0f0;
    list-style-type: none;
    width: 20% ;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    padding: 10px;
    border-right: 1px solid black;
    justify-content: center;
}

    .tab-menu li:nth-last-child(1){
        border-right: none !important;
    }

    .tab-menu li.active {
        background-color: #ffffff;
        border-top: 3px solid black;
    }

.tab-content {
    display: none;
    padding: 15px; 
    border-top: none;
}

    .tab-content.active {
        display: block;
    }


h4.menu-category-title{
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    font-size: 30px !important;
}

h3.menu-category-title{
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    font-size: 25px !important;
}

.menu-item {
    padding: 15px !important;
    /*border: 1px solid black;*/
    /*border-radius: 10px;*/
}

    .menu-item .menu-item-title{
        margin-top: 0px !important;
    }

    .menu-item .menu-item-description{
        margin-top: 5px !important;
    }

    .menu-item .menu-item-price{
        margin-top: 0px !important;
    }

@media (min-width: 960px){
    .menu-item{
        height: fit-content;
    }
}


.menu-tab-category-title{
    font-size: 14px !important;
}

.tab-menu li img{
    width: 65%;
}

.footer-scroll-top {
    bottom: 102px !important;
}

@media(min-width: 960px){
    .tab-menu{
        position: unset;
        justify-content: space-around;
    }

        .tab-menu li{
            flex-direction: row;
            width: fit-content ;
            gap: 15px;
            border-right: none;

        }

            .tab-menu li img {
                width: 40%;
                max-width: 50px;
            }

    .tab-content.active{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
    }

        .tab-content.active .menu-category-title{
            width: 100%;
        }

        .tab-content.active .menu-item{
            width: 30%;
        }

}

@media (max-width: 960px){
    .menu-item {
        margin-bottom: 15px;
    }
}