/* .products__list {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	anchor-name: --carousel;
}
.products__list::-webkit-scrollbar {
	display: none;
}
.products__list::scroll-button(left),
.products__list::scroll-button(right) {
	position: fixed;
	position-anchor: --carousel;
	position-area: top right;
	content: '❮';
	color: var(--primary-text);
	width: 48px;
	height: 48px;
	background-color: var(--secondary-bg);
	border: none;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	margin-left: -64px;
	margin-bottom: 50px;
	transform: translateX(-100%);
}
.products__list::scroll-button(right) {
	content: '❯';
	margin-left: 0;
}
.products__list::scroll-button(left):disabled,
.products__list::scroll-button(right):disabled {
	opacity: 50%;
	cursor: auto;
}
.products__item {
	scroll-snap-align: start;
} */
