.oxypro-products-carousel {
	--oxypro-carousel-gap: 20px;
	margin-block: clamp(36px, 6vw, 72px);
	width: 100%;
}

.oxypro-products-carousel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.oxypro-products-carousel__header h2 {
	margin: 0;
	font-size: clamp(1.45rem, 2.5vw, 2rem);
	line-height: 1.2;
}

.oxypro-products-carousel__controls {
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.oxypro-products-carousel__controls button {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid currentColor;
	border-radius: 999px;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 20px;
	cursor: pointer;
}

.oxypro-products-carousel__controls button:disabled {
	opacity: .3;
	cursor: default;
}

.oxypro-products-carousel:not(.has-overflow) .oxypro-products-carousel__controls {
	display: none;
}

.oxypro-products-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - (var(--oxypro-carousel-gap) * 3)) / 4);
	gap: var(--oxypro-carousel-gap);
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-snap-type: inline mandatory;
	scrollbar-width: none;
	padding: 2px 2px 12px;
}

.oxypro-products-carousel__track::-webkit-scrollbar {
	display: none;
}

.oxypro-product-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 12px;
	background: var(--wp--preset--color--base, #fff);
	scroll-snap-align: start;
}

.oxypro-product-card__image {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: rgba(0, 0, 0, .035);
}

.oxypro-product-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform .25s ease;
}

.oxypro-product-card:hover .oxypro-product-card__image img {
	transform: scale(1.025);
}

.oxypro-product-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 18px;
}

.oxypro-product-card__content h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.35;
}

.oxypro-product-card__content h3 a {
	color: inherit;
	text-decoration: none;
}

.oxypro-product-card__price {
	font-weight: 700;
}

.oxypro-product-card__price del {
	opacity: .55;
	font-weight: 400;
}

.oxypro-product-card__stock {
	font-size: .875rem;
	opacity: .72;
}

.oxypro-product-card__button {
	box-sizing: border-box;
	width: 100%;
	margin-top: auto !important;
	text-align: center;
}

@media (max-width: 1024px) {
	.oxypro-products-carousel__track {
		grid-auto-columns: calc((100% - (var(--oxypro-carousel-gap) * 2)) / 3);
	}
}

@media (max-width: 760px) {
	.oxypro-products-carousel {
		--oxypro-carousel-gap: 14px;
	}

	.oxypro-products-carousel__track {
		grid-auto-columns: calc((100% - var(--oxypro-carousel-gap)) / 2);
	}
}

@media (max-width: 520px) {
	.oxypro-products-carousel__header {
		align-items: flex-end;
	}

	.oxypro-products-carousel__track {
		grid-auto-columns: 82%;
	}

	.oxypro-product-card__content {
		padding: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.oxypro-product-card__image img {
		transition: none;
	}
}
