/* Homepage Women, Men and Kids product grids. */
.home-products {
	padding: 54px 0 70px;
	background: #f5f5f5;
}
.home-products > .container {
	width: min(1200px, calc(100% - 48px));
}
.home-products .section-heading {
	display: block;
	margin: 0 0 48px;
	text-align: center;
}
.home-products .section-heading h2 {
	font-family: Ubuntu, Arial, sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
	color: #3d4760;
	text-align: center;
}
.home-products .section-heading .text-link {
	display: none;
}
.home-products .fabric-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}
.home-products .fabric-card__image {
	aspect-ratio: 1;
	background: #eee;
}
.home-products .fabric-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: none;
	filter: none;
	transition: filter .25s ease, opacity .25s ease;
}
.home-products .fabric-card:hover .fabric-card__image img {
	transform: none;
	filter: brightness(.94);
}
.home-products .fabric-card__action {
	display: none;
}
.home-products .fabric-card__content {
	padding-top: 9px;
}
.home-products .fabric-card__category {
	display: block;
	font-size: 9px;
	font-weight: 400;
	line-height: 1.3;
	color: #777b84;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.home-products .fabric-card h3 {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	color: #3d4760;
	margin: 5px 0 0;
	text-transform: uppercase;
}
.home-products .fabric-card h3 a {
	transition: color .2s ease;
}
.home-products .fabric-card h3 a:hover {
	color: #799ec8;
}

@media (max-width: 1050px) {
	.home-products > .container {
		width: min(760px, calc(100% - 48px));
	}
	.home-products .section-heading {
		margin-bottom: 38px;
	}
	.home-products .section-heading h2 {
		font-size: 27px;
	}
}

@media (max-width: 767px) {
	.home-products {
		padding: 44px 0 54px;
	}
	.home-products > .container {
		width: min(560px, calc(100% - 32px));
	}
	.home-products .section-heading {
		margin-bottom: 28px;
	}
	.home-products .section-heading h2 {
		font-size: 23px;
	}
	.home-products .fabric-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 12px;
	}
	.home-products .fabric-card h3 {
		font-size: 11px;
	}
}

@media (max-width: 420px) {
	.home-products .fabric-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.home-products .fabric-card__category {
		font-size: 8px;
	}
	.home-products .fabric-card h3 {
		font-size: 10px;
	}
}
