.products-grid__arrow {
	display: none;
}

@media (min-width: 1025px) {
	.products-grid__carousel {
		position: relative;
	}
	.products-grid__items {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		gap: 20px;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.products-grid__items::-webkit-scrollbar {
		display: none;
	}
	.products-grid__items .product-card {
		flex: 0 0 260px;
		scroll-snap-align: start;
	}
	.products-grid__arrow {
		display: flex;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 44px;
		height: 44px;
		border-radius: 50%;
		border: none;
		background: #2f5233;
		color: #f7f6f2;
		font-size: 22px;
		line-height: 1;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		z-index: 2;
		transition: background-color .2s ease;
	}
	.products-grid__arrow:hover {
		background: #1f3722;
	}
	.products-grid__arrow[disabled] {
		opacity: .3;
		cursor: default;
	}
	.products-grid__arrow--prev {
		left: -64px;
	}
	.products-grid__arrow--next {
		right: -64px;
	}
}