.hero-single-img{
	position: relative;
	width: 100%;
	aspect-ratio: 5/3;
}
.hero-single-img::before{
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 65%;
	background: #FCE5AA;
	z-index: 0;
}
.hero-single-img img{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px 0;
	z-index: 1;
}
.hero-single-btns{
	display: flex;
	gap: 16px;
}
.product-slider{
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 24px;
}
.product-slider::before{
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 65%;
	background: #FCE5AA;
	z-index: 0;
}
.product-slider img{
	width: 100%;
	aspect-ratio: 5/3;
	height: auto;
	object-fit: contain;
}
.category-btns{
	display: flex;
	align-items: center;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 10px;
}
.category-btns a{
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: #336699;
	background: #fff;
	border: 2px solid #336699;
	border-radius: 4px;
	transition: color .35s, background .35s;
	padding: 6px 12px;
	white-space: nowrap;
}
.category-btns a:hover{
	color: #fff;
	background: #336699;
}
.product-head{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
}
.product-purpose{
	display: flex;
	align-items: center;
	gap: 16px;
}
.product-purpose span{
	color: #594102;
	font-size: 40px;
	line-height: 1;
}
.product-color-wrap .swiper-pagination-bullets.color-pagination{
	position: static;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 12px;
	margin-top: 6px;
}
.product-color-wrap .swiper-pagination-bullets .swiper-pagination-bullet{
	width: 40px;
	height: 40px;
	background: #999;
	border-radius: 50%;
	border: 4px solid #fff;
	padding: 0;
	margin: 0;
}
.product-color-wrap .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
	outline: 2px solid #246FBB;
}
.product-sizes{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.product-features-wrap{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 24px;
}
.product-features-wrap p + p{
	margin-top: 24px;
}
.product-price-row{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #716E64;
	padding-top: 24px;
	margin-top: 32px;
}
.product-price{
	color: #246FBB;
	display: block;
	font-size: 40px;
	font-weight: 400;
	line-height: 54px;
}
.product-btns{
	display: flex;
	gap: 16px;
	margin-top: 24px;
}
.tabs{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 8px;
}
.tabs .tab-link{
	color: #716E64;
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	padding: 2px 8px;
	background: #fff;
	border: 2px solid #fff;
}
.tabs .tab-link.active{
	color: #246FBB;
	border: 2px solid #246FBB;
}
.tab-pane{
	display: none;
}
.tab-pane:first-child{
	display: block;
}
.recommended-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.product-center-text{
	text-align: center;
}

@media (min-width: 992px){
	.product-slider,
	.product-features-wrap,
	.product-features-wrap p + p,
	.product-btns{
		margin-top: 0;
	}
	.category-btns{
		justify-content: center;
	}
	.product-head{
		flex-direction: row;
		justify-content: space-between;
		margin-bottom: 0;
	}
	.product-color-wrap .swiper-pagination-bullets.color-pagination{
		justify-content: flex-start;
	}
	.promo-catalog-card{
		grid-column: 4;
		grid-row: 1 / span 2;
	}
	.product-center-text{
		text-align: left;
	}
	.tabs{
		justify-content: flex-start;
	}
	.tabs .tab-link{
		padding: 8px;
	}
	.product-features-wrap{
		height: 100%;
	}
	.product-price-row{
		flex-direction: row;
	}
}