﻿
.second-menu-container{
    max-width:540px;
    margin:0 auto;
}
.list-reset{
    list-style:none;
    margin:0;
    padding:0;
}
.main-category-list {
    margin-bottom:8px;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.main-category-item {
    flex:1;
    font-weight:500;
    height: 100%;
    background: #e5e7eb;
    color: #374151;
    padding: 8px 18px;
    border-radius: 12px;
    display: flex;
    justify-content:center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: background 0.3s ease-in-out,color 0.3s ease-in-out;
}

    .main-category-item.active {
        background: #FE2A02;
        color: #fff;
    }

        .main-category-item.active:hover {
            background: #fe5535;
        }

    .main-category-item:hover {
        background: #ced0d4;
    }

.main-category-img{
    width:32px;
    height:32px;
}
.sub-category-img {
    height: 48px;
    width: 48px;
}
.main-category-img img{
    border-radius:4px;
}

.sub-category-items li{
    margin-bottom:12px
}
.sub-category-item {
    cursor:pointer;
    border-radius:12px;
    min-height:32px;
    padding: 12px;
    background: #ffeae6;
    border: 1px solid #ffbfb3;
    display:flex;
    align-items:center;
    gap:8px;

}
.sub-cat-title{
    font-size:16px;
    font-weight:500;
}

.sub-right-btn {
    border: none;
    margin-left: auto;
    padding: 8px;
    width: 32px;
    height: 32px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FE2A02;
    color: #fff;
    transition: background 0.3s ease-in-out;
}
    .sub-right-btn:hover {
        background: #fe5535;
    }
.menu-item-name{
    font-size:18px;
    font-weight:500;
    margin-bottom:4px;
}
.menu-item-description {
    font-size: 14px;
    color: #70645c;
    margin-bottom: 6px;
}
.menu-item-price {
    color: #FE2A02;
    font-size:18px;
    font-weight:700;
}
.menu-item-img{
    margin-left:auto;
    width:96px;
    height:96px;
}
.menu-item-img img{
    border-radius:8px;
}
.menu-item-view {
    margin-bottom:12px;
    padding: 16px 12px;
    background: #fff9f7;
    border-radius: 8px;
    border: 2px solid #ffe5e1;
}

.main-category-list::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}