/* category-list */

.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.item {
    position: relative;
    background-color: #f7f7f7;
    border-radius: 10px;
    color: #000;
    overflow: hidden;
    margin-bottom: 25px;
    width: 48.4%;
}

.item-big {
    width: 100%;
}

.item__img {
    width: 100%;
    height: 0;
    padding-top: calc(260 / 260 * 100%) !important;
}

.item__img {
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
}

.item-big .item__img {
    height: 55.5vw;
    margin-bottom: 18px;
}

.item__info {
    padding: 0 25px 25px 25px;
    word-break: break-word;
}

.item__name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.item__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item__price {
    color: #d90000;
    font-size: 18px;
    font-weight: 300;
}

.item__cart img {
    max-height: 24px;
}

.from-shef {
    position: absolute;
    left: 32px;
    top: 15px;
    z-index: 2;
    font-size: 12px;
    font-weight: 300;
    color: #ffeb3b;
}