.sushi-deal-products {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 73px;
    margin: 0 auto;
	font-family:"Gilroy", Sans-serif;
}

.sushi-deal-products .day {
    font-weight: 900;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.03em;
}

.sushi-deal-products .product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 32px;
}

.sushi-deal-products .product-line {
    width: 83.5%;
    height: 2px;
    background-color: #FFF39D;
}

.product-row__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 92px;
}

.sushi-deal-products .product-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sushi-deal-products .product-item .title {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.01em;
    max-width: 212px;
	flex:1;
	margin:0;
}
.sushi-deal-products .product-item__image {
	max-width:194px;
	width:100%;
}
.sushi-deal-products .product-item__image img {
    width: 100%;
    display: block;
}

@media (max-width:1024px) {
    .sushi-deal-products {
        max-width: 100%;
    }

    .product-row__list {
        gap: 15px 56px;
    }

    .sushi-deal-products .product-item {
        gap: 20px;
    }
}

@media (max-width:767px) {
    .sushi-deal-products .product-item {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .sushi-deal-products .product-item .title {
        font-size: 18px;
        line-height: 22px;
		text-align:center;
    }

    .sushi-deal-products .product-item__image  {
        max-width: 138px;
		height:93px;
		display:flex;
		flex-direction:column;
		align-items:center;
		justify-content:center;
    }
	.sushi-deal-products .product-item__image img{
		max-height:93px;
		width:auto;
		margin:0 auto;
	}
    .sushi-deal-products .day {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.02em;
        font-weight: 700;
    }

    .sushi-deal-products .product-line {
        width: 68%;
    }

    .sushi-deal-products .product-header {
        padding-bottom: 17px;
    }

    .sushi-deal-products {
        gap: 36px;
    }
}