.products {
	position: relative;
}
.product-slider {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	overflow-x: auto;
	scrollbar-width: none;
	position: relative;
}
.product-slider::-webkit-scrollbar {
	display: none;
}
.product-wrapper {
	position: relative;
	padding: 4px 0 0 2px;
}
.product-wrapper:not(:last-child) {
	margin-right: 14px;
}
.product-discount {
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(321.17deg, #E31E24 44.13%, #F39513 104.24%);
	border-radius: 8px;
	color: #fff;
	width: 56px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 2;
	font-family: Anton;
	font-weight: 400;
	font-size: 18px;
}
.product {
	width: 212px;
	overflow: hidden;
	border: 1px solid rgba(1, 1, 1, 0.2);
	border-radius: 25px;
	padding: 5px;
	position: relative;
	background: #fff;
}
.product-image-wrapper {
	position: relative;
	width: 202px;
	height: 178px;
	border-radius: 20px;
	background: rgba(0, 0, 0, 0.02);
}
.product-image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.product-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.product-buttons {
	position: absolute;
    top: 4px;
    right: 6px;
}
.product-button {
	width: 45px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: #fff;
	box-shadow: 8px 5px 20px 0px rgba(0, 0, 0, 0.2);
}
.product-button:not(:last-child) {
	margin-bottom: 8px;
}
.product-button:not(.added) .image-active {
	display: none;
}
.product-button.added .image-default,
.product-button.added .image-hover {
	display: none;
}
.product-button-favorite:hover {
	background: #fff;
}
.product-button-favorite.added {
	background: rgba(215, 33, 26, 1);
}
.product-button-favorite.added:hover {
	background: rgba(215, 33, 26, 1);
}
.product-button-compare.added {
	border: 1px solid rgba(251, 142, 0, 1);
}
.product-button-compare:hover {
	border-color: #fff;
}
.product-rating {
	position: absolute;
	bottom: 5px;
	left: 5px;
	background: rgba(245, 245, 245);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	width: 49px;
	height: 23px;
}
.product-rating-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-rating-text {
	font-family: Inter;
	font-weight: 400;
	font-size: 14px;
}
.product-quantity {
	position: absolute;
	bottom: 6px;
	right: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(128, 183, 52);
	border-radius: 100px;
	min-width: 53px;
	height: 20px;
	padding: 0 5px;
}
.product-quantity-icon {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fff;
	margin-right: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.product-quantity-text {
	font-family: Inter;
	font-weight: 400;
	font-size: 12px;
	color: #fff;
	white-space: nowrap;
}
.product-name {
	color: #000;
	text-decoration: none;
	font-family: Inter;
	font-weight: 500;
	font-size: 16px;
	padding: 14px 0 0 9px;
	line-height: 19px;
	letter-spacing: 0px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	min-height: 71px;
}
.product-prices {
    display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	color: #000;
	text-decoration: none;
	min-height: 50px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.product-price {
	font-family: Inter;
	font-weight: 600;
	font-size: 18px;
	margin-top: 5px;
	padding-left: 10px;
	white-space: nowrap;
}
.product-old-price {
	font-family: Inter;
	font-weight: 400;
	font-size: 12px;
	color: rgba(1, 1, 1, 0.5);
	margin-left: 10px;
	white-space: nowrap;
	position: relative;
}

.product-old-price img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.product-basket-wrapper {
	padding: 14px 10px;
}
.product-basket {
	border: 1px solid rgb(251, 142, 0);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	border-radius: 100px;
	text-decoration: none;
	color: #000;
	padding: 11.5px 10px;
}
.product-basket:hover {
	background: rgb(251, 142, 0);
	color: #fff;
}
.product-basket-icon {
	margin-right: 10px;
    position: relative;
    top: -1px;
    left: 1px;
}
.product-basket-text {

}
.product-basket-quantity {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 19px 12px 18px;
	background: rgba(251, 148, 0, 0.1);
	border-radius: 100px;
}
.product-basket-wrapper:not(.active) .product-basket-quantity {
	display: none;
}
.product-basket-wrapper.active .product-basket {
	display: none;
}
.product-basket-quantity-button {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}
.product-basket-quantity-button.inactive {
	opacity: 0.1;
	cursor: initial;
}
.product-basket-quantity-input {

}
.product-nav {
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(209, 46, 40);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 117px;
}
.product-nav:hover {
	background: rgba(255, 48, 40);
}
.product-nav-prev {
	transform: rotate(180deg);
	left: -29px;
}
.product-nav-next {
	right: -30px;
}

@media (max-width: 576px) {
	.product-nav {
		display: none;
	}
}

@media (min-width: 576px) and (max-width: 1348px) {
	.product-nav-prev {
		left: 0;
	}
	.product-nav-next {
		right: 0;
	}
}