.ProductsHero {
	display: flex;
	align-items: center;
	height: 500px;
	padding: 0;
	background-image:
		linear-gradient(90deg, rgba(7, 10, 13, 0.9), rgba(7, 10, 13, 0.3)),
		url("../images/bfc7ff3d53ee3d1b34284ac3231b09fa211969d2.png");
	color: #fff;
	background-size: cover;
}

.ProductsHero .main,
.ProductCategories .main,
.FeaturedProducts .main {
	width: 1360px;
	max-width: 90%;
}

.ProductsHero span {
	color: #ed5133;
	font-size: 14px;
	line-height: 21px;
}

.ProductsHero h1 {
	margin-top: 10px;
	font-size: 64px;
	font-weight: 600;
	line-height: 70px;
}

.ProductsHero p {
	max-width: 540px;
	margin-top: 20px;
	color: #ccd0d3;
	font-size: 18px;
	line-height: 29px;
}

.ProductsHero div div {
	display: flex;
	gap: 16px;
	margin-top: 30px;
}

.ProductsHero a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 172px;
	height: 56px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	font-size: 18px;
	line-height: 28px;
}

.ProductsHero a:first-child {
	border-color: var(--site-red);
	background: var(--site-red);
}

.ProductCategories,
.FeaturedProducts {
	padding: var(--p80) 0 100px;
	background: #f5f6f7;
}

.ProductCategories h2 {
	margin-bottom: 64px;
	text-align: center;
	font-size: 32px;
	line-height: 42px;
}

.ProductCategories h2::after {
	display: block;
	width: 48px;
	height: 3px;
	margin: 16px auto 0;
	background: var(--site-red);
	content: "";
}

.ProductCategories .categoryBento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ProductCategories .categoryBento  .item {
	display: block;
	padding: 34px;
	border: 1px solid var(--site-line);
	background: #fff;
}

.ProductCategories .categoryBento .item2 {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	grid-column: span 2;
	padding: 0;
	
border-radius: 8px;
background: rgba(255, 255, 255, 1);

border: 1px solid rgba(230, 190, 181, 1);
}

.ProductCategories .item2 > div:first-child {
	padding: 34px;
}

.ProductCategories .categoryImage {
	flex-shrink: 0;
}

.ProductCategories h3 {
	margin-top: 16px;
	font-size: 24px;
	line-height: 34px;
}

.ProductCategories .categoryIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
}

.ProductCategories .categoryIcon img {
	max-width: 100%;
	max-height: 100%;
}

.ProductCategories p {
	margin-top: 12px;
	color: #70767b;
	font-size: 14px;
	line-height: 22px;
}

.ProductCategories a span {
	display: block;
	margin-top: 20px;
	color: var(--site-red);
	font-size: 16px;
	line-height: 24px;
}

.FeaturedProducts {
	padding: 0 0 150px;
}

.FeaturedProducts .featureLayout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 24px;
}

.FeaturedProducts .featuredBody > h2 {
	font-size: 32px;
	line-height: 42px;
}

.FeaturedProducts .featuredBody > p {
	color: #747a80;
	font-size: 16px;
	line-height: 26px;
}

.FeaturedProducts .featuredGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 26px;
}

.FeaturedProducts .featuredGrid > a {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 18px;
	border: 1px solid var(--site-line);
	background: #fff;
}

.FeaturedProducts .productFavoriteIcon {
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: 18px;
	height: 18px;
}

.FeaturedProducts .featuredImage {
	aspect-ratio: 1.84;
	margin-bottom: 18px;
	flex-shrink: 0;
}

.FeaturedProducts .featuredGrid h3 {
	font-size: 24px;
	line-height: 34px;
}

.FeaturedProducts .featuredGrid p {
	margin-top: 6px;
	color: #747a80;
	font-size: 14px;
	line-height: 22px;
}

.FeaturedProducts .featuredGrid span {
	display: block;
	margin-top: 18px;
	color: var(--site-red);
	font-size: 16px;
}

.FeaturedProducts .featuredGrid > a:not(.moreProduct) span {
	margin-top: auto;
	padding-top: 18px;
}

.FeaturedProducts .moreProduct {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-style: dashed;
	text-align: center;
}

.FeaturedProducts .moreProduct b {
	font-size: 28px;
	font-weight: 400;
}

.FeaturedProducts .pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 44px;
}

.FeaturedProducts .pagination button,
.FeaturedProducts .pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--site-line);
}

.FeaturedProducts .pagination button.active {
	background: var(--site-red);
	color: #fff;
}

@media only screen and (max-width: 1440px) {
	.ProductsHero h1 {
		font-size: 54px;
	}
}

@media only screen and (max-width: 768px) {
	.ProductsHero {
		height: auto;
		min-height: 500px;
	}

	.ProductsHero h1 {
		font-size: 44px;
		line-height: 56px;
	}

	.ProductCategories,
	.FeaturedProducts {
		padding: 72px 0;
	}

	.ProductCategories .categoryBento,
	.FeaturedProducts .featuredGrid {
		grid-template-columns: 1fr;
	}

	.ProductCategories .categoryBento .wide {
		grid-template-columns: 1fr;
		grid-column: auto;
	}

	.FeaturedProducts .featureLayout {
		grid-template-columns: 1fr;
	}

	.FeaturedProducts .featureLayout aside {
		width: 100%;
	}

	.FeaturedProducts .featuredGrid > a {
		min-height: 0;
	}
}
