body {
    background-color: #FCFCFC;
    font-family: 'Poppins', sans-serif;
}

.profile {
    height: 255px;
    position: relative;
    width: 100%;
}

.profile-photo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 4px solid #fff;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 30px;
    transform: translateY(50%);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.container {
    padding: 0 30px;
}

.menu-title {
    font-size: 19px;
    font-weight: 600;
}

.reviews p {
    margin-bottom: 0;
    color: #BABABA;
    font-size: 14px;
    font-weight: 400;
}

.offer {
    margin-bottom: 50px;
}

.offer img {
    width: 100%;
    border-radius: 10px;
}

.category-list {
    display: flex;
    justify-content: space-between;
}

.category-item {
    width: calc(50% - 6px);
    text-align: center;
}

.category-item-img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #EFEFEF;
    background: #FFFFFF;
    margin-bottom: 10px;
    height: 177px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item-img img {
    width: 100%;

}

.category-name {
    font-size: 16px;
    color: #FC5C2A;

}

.share-btn {
    width: 50px;
    height: 50px;
    background-color: #F9F9FB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #372E52;
    color: #fff;
    height: 50px;
    width: fit-content;
    text-decoration: none;
    font-size: 16px;
    padding: 0 25px;
    font-weight: 600;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-item {
    width: calc(50% - 6px);
    margin-bottom: 20px;
    height: 200px;
    background-color: #FFFFFF;
    border: 1px solid #EFEFEF;
    border-radius: 5px;
    text-align: center;
    position: relative;
    margin-bottom: 45px;
}

.product-item .product-name {
    color: #FC5C2A;
    font-size: 13px;
    font-weight: 600;
    max-width: 140px;
    margin: 0 auto;
}

.tob-line {
    width: 155px;
    height: 6px;
    background-color: #BABABA;
    border-radius: 5px;
    margin: 15px auto;
}

.price {
    width: fit-content;
    background-color: #FFF0DF;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 9px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}


.offcanvas-bottom {
    height: 575px !important;
}

label {
    color: #372E52;
    font-size: 13px;
    font-weight: 600;
}

.form-select {
    background-color: #FFF0DF;
    border-radius: 6px;
    height: 39px;
    font-size: 13px;
    font-weight: 500;
    color: #BABABA;
}

.offcanvas-body {
    padding: 10px 30px;
}