.simple-catalog-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.simple-catalog-item__slider {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: #f4f4f4;
	aspect-ratio: 1 / 1;
}

.simple-catalog-item__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.simple-catalog-item__slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.simple-catalog-item__slide.is-active {
	opacity: 1;
}

.simple-catalog-item__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 14px;
}

.simple-catalog-item__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.simple-catalog-item__nav--prev {
	left: 8px;
}

.simple-catalog-item__nav--next {
	right: 8px;
}

.simple-catalog-item__dots {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 2;
}

.simple-catalog-item__dot {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	padding: 0;
	cursor: pointer;
}

.simple-catalog-item__dot.is-active {
	background: #fff;
}

.simple-catalog-item__description {
	font-size: 14px;
	line-height: 1.45;
	color: #1f1f1f;
}

.simple-catalog-item__buy {
	align-self: flex-start;
	padding: 10px 18px;
	border: 0;
	border-radius: 6px;
	background: #ff5279;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	width: 100%;
	&:hover {
		background: #ff7b9a;
	}
}
.row.product-item-list-col-3 {
	padding-bottom: 50px;
}