.menu__submenu {
    padding: 18px 50px;
    position: fixed;
    background: #fff;
    width: 100%;
    z-index: 10;
}

.menu__items::-webkit-scrollbar {
    height: 3px;
    background-color: #ff7c0057;
}

.menu__items::-webkit-scrollbar-thumb {
    background-color: #FF7C00;
    border-radius: 6px;
}
  
.menu__items::-webkit-scrollbar-thumb:hover {
    background-color: #FF7C00;
}
  
.menu__items {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.menu__item.active a {
    color: #FF7C00;
}
  
.menu__wrapper {
    margin-top: 60px;
}

.menu__items {
    gap: 20px;
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;

    color: #000;
    font-size: 16px;
    font-family: 'chicken_bold';
    font-weight: 700;
}

.menu__title {
    color: #FF7C00;
    font-size: 20px;
    font-family: 'chicken_bold';
    font-weight: 700;
    margin-right: 20px;
}

.menu__category-info {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.menu__categories {
    padding: 0 50px;
    margin-bottom: 60px;
}

.menu__categories-title {
    color: #000;
    font-size: 36px;
    font-family: 'chicken_bold';
    font-weight: 700;
}

.menu__categories-descr,
.menu__category-descr {
    color: #495867;
    font-size: 16px;
    font-family: 'chicken_regular';
    font-weight: 400;
}

.menu__categories-descr {
    margin-bottom: 40px;
}

.menu__categories-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.menu__category {
    border-radius: 20px; 
    background-color: #fff;
    padding: 20px;
    position: relative;
    /* min-height: 450px; */
    
    /* z-index: 2; */

    /* -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .5s linear;
    transition: all .5s linear; */
}

.menu__category::after {
    position: absolute;
    content: '';
    bottom: 20px;
    width: 90%;
    height: 30%;
    border-radius: 30px;
    background: #DADADA;
    filter: blur(45px);
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
}

.menu__category-title {
    color: #FF7C00;
    font-size: 20px;
    font-family: 'chicken_bold';
    font-weight: 700;
    display: block;
}

.menu__category-price {
    color: #1D1D1D;
    font-size: 20px;
    font-family: 'chicken_bold';
    font-weight: 700;
}

.menu__category-price.selected-price {
    margin-top: 15px;
}

.menu__category-radio {
    width: 100%;
}

.menu__category-radio label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 16px;
    background-color: #EEE;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s;
    height: 50px;
}

.menu__category-radio input[type="radio"]:checked + label {
    background-color: #FF7C00;
}

.menu__category-radio input[type="radio"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.menu__category-radio-group {
    display: flex;
    border-radius: 10px;
    background: #EEE;
    height: 50px;
    margin-top: 3px;
}

.menu__drinks {
    max-width: 420px;
}

.menu__category-img {
    max-height: 270px;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.menu__category {
    display: flex;
    flex-direction: column;
}

.menu__category-wrapper {
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .menu__submenu {
        padding: 10px 0 10px 20px;
    }

    .menu__title {
        display: none;
    }

    .menu__items {
        overflow-x: scroll;
        padding-bottom: 5px;
    }

    .menu__item {
        padding: 6 10px;
        border-radius: 5px;
        background: #EEE;
    }

    .menu__item a {
        color: #999;
    }

    .menu__item.active {
        background: rgba(255, 124, 0, 0.20);
    }

    .menu__item.active a {
        color: #D15700;
    }
}

@media only screen and (max-width: 991px) {
    .menu__categories {
        padding: 0 20px;
    }

    .menu__categories-title {
        font-size: 20px;
    }

    .menu__categories-descr {
        margin-bottom: 20px;
    }

    .menu__category-radio label {
        height: 30px;
        border-radius: 6px;
        font-size: 10px;
    }
    
    .menu__category-radio-group {
        border-radius: 6px;
        height: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .menu__category-title {
        font-size: 13px;
    }

    .menu__categories-descr,
    .menu__category-descr {
        font-size: 10px;
        margin-bottom: 15px;
    }

    .menu__category-price {
        font-size: 12px;
    }

    .menu__categories-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .menu__items {
        gap: 10px;
    }

    .menu__item {
        font-size: 10px;
    }

    .menu__category-radio label {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        height: 30px;
        border-radius: 6px;
        font-size: 10px;
        background-color: #EEE;
        color: #fff;
        cursor: pointer;
        transition: background-color 0.3s;
    } 
    .menu__category-radio input[type="radio"]:checked + label {
        background-color: #FF7C00;
    }
    
    .menu__category-radio-group {
        display: flex;
        border-radius: 6px;
        background: #EEE;
        height: 30px;
        margin-top: 3px;
    }
}

@media only screen and (max-width: 479px) {
    .menu__categories-wrapper {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .menu__category {
        border-radius: 0;
        display: grid;
        padding: 10px 0 0 0;
        grid-template-columns: 40% 1fr;
        gap: 10px;
        border-top: 1px solid #EEE;
    }

    .menu__category-img {
        width: 152px;
        height: 100px;
        object-fit: contain;
        overflow: hidden;
    }

    .menu__category::after {
        display: none;
    }

    .menu__category-radio label {
        padding: 10px 8px;
    }
}