* {
    padding: 0;
    margin: 0;
}

body {
    background: #F4F4F4;

}

.chef-suggestion-container {
    max-width: 1312px;
    margin-inline: auto;
    padding-inline: 20px;
}

.suggested-item-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-inline: 26px;
    background-color: white;
    padding-bottom: 22px;
    padding-top: 41px;
    border-radius: 20px;
    max-width: 306px;
    width: 100%;
    height: fit-content;
    margin-block:15px;
}
.suggested-item-container:hover{
    box-shadow: -4px 4px 24px 0px #A90E0633;

}
.suggested-item-image {
    width: 172px !important;
    height: 175px !important;
    padding-bottom: 18px;
}

.suggested-item-title {
    color: var(--Text-700, #2F2F2F);
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 12px;

}

.suggested-item-description {
    color: var(--Text-400, #909090);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.suggested-item-price {
    color: var(--Text-600, #4C4C4C);
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 16px;
}
.chef-see-all-btn {
    margin-top:35px;
    width: 158px;
    height: 46px;
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 12px;
    background-color: #E6C8C7;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #A90E06;
    cursor: pointer;
    transition: all 0.3s;
    margin-inline: auto;
    text-decoration: none;
}

.chef-see-all-btn:hover {
    gap: 15px;
}
.suggested-item-button {
    width: 100%;
    padding-block: 15px;
    border-radius: 10px;
    background: var(--Text-200, #EDEDED);
    border: none;
    color: var(--Text-400, #909090);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    transition: color, background-color 0.2s;
    cursor: pointer;
}

.suggested-item-button:hover {
    background-color: #A90E06;
    color: #FFF;
}

.chef-suggestion-title-container {
    position: relative;
    margin-block: 50px;
    margin-inline: auto;
}

.chef-suggestion-title-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f4f4f4;
    padding-inline: 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    color: var(--Text-600, #4c4c4c);
}

.chef-suggestion-title-line {
    border-top: rgba(6, 76, 79, 0.4) dashed 2px;
    width: 100%;
}



@media screen and (max-width: 1024px) {
    .chef-suggestion-container {
        padding-inline: 52px;
    }

    .suggested-item-image {
        width: 160px !important;
        height: 160px !important;
    }

    .suggested-item-description {
        font-size: 14px;
    }

    .suggested-item-title {
        font-size: 16px;
    }

    .suggested-item-price {
        font-size: 16px;
    }

    .suggested-item-price span {
        font-size: 14px;
    }

    .suggested-item-button {
        font-size: 14px;
    }

    .chef-suggestion-title-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .chef-suggestion-container {
        padding-inline: 26px;
    }

    .suggested-item-image {
        width: 120px !important;
        height: 120px !important;
    }

    .suggested-item-title {
        font-size: 13px;
    }

    .suggested-item-button {
        font-size: 10px;
        font-weight: 400;
        background-color: #A90E06;
        color: #FFF;
        padding-inline: 10px;
    }

    .chef-suggestion-title-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 425px) {
    .suggested-item-description {
        font-size: 12px;
    }

    .suggested-item-container {
        height: fit-content;
    }
}