.sale_block {}

.sale_container {}

.sale_items {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-column-gap: 16px;
	grid-row-gap: 48px;
}

.sale_item {
	color: unset;
}

.sale_item__image {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	max-height: 326px;
}

.sale_item__image img {
	width: 100%;
	object-fit: cover;
	border-radius: 16px;
	width: 100%;
	transition: all ease 0.6s;
}

.sale_item__image:hover img {
	scale: 1.15;
	transition: all ease 0.6s;
}

.sale_item__text {
	margin-top: 16px;
}

.sale_item__text p {
	margin-top: 8px;
	margin-bottom: 0;
}

.sticker_container {
	position: absolute;
	left: 16px;
	bottom: 20px;
	display: flex;
	grid-gap: 4px;
}

.sticker,
.discount-label {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 8px;
	background: #f4f4f4;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 300;
	line-height: 1;
}

.sticker .sticker-img {
	width: 12px;
	height: 12px;
	margin-right: 4px;
}

.sticker .sticker-img.hit {
	content: url(image/hit.svg);
}

.discount-label {
	background: #ffeb81;
	font-weight: 500;
}

@media (max-width: 991px) {
	.sale_items {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 24px;
	}

	.sale_item__image {
		max-height: unset;
	}
}
