body.home .home-products-section {
	padding: 34px 0 48px;
	background: #f3f3f3;
}

body.home .home-products-section .home-shell {
	width: min(1360px, calc(100% - 48px));
}

body.home .home-products-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
	padding: 34px 36px 24px;
	background: #fff;
	border-bottom: 8px solid #4ca737;
}

body.home .home-products-title {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	height: auto;
	margin: 0;
	background: transparent;
	color: #4ca737;
	font-family: 'Manrope', sans-serif;
	font-size: clamp(25px, 3vw, 36px);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: 0;
	text-transform: uppercase;
}

body.home .home-products-title-icon {
	color: #64d56c;
	font-size: 32px;
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 32;
}

body.home .home-products-more {
	color: #777;
	font-size: clamp(20px, 2.5vw, 30px);
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: color .18s ease;
}

body.home .home-products-more:hover {
	color: #4ca737;
}

body.home .home-products-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px 24px;
}

body.home .home-product-card {
	display: flex;
	flex: none;
	flex-direction: column;
	min-height: 390px;
	background: #fff;
	border: 1px solid #d7d7d7;
	text-decoration: none;
	box-shadow: 0 6px 13px rgba(0, 0, 0, .18);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.home .home-product-card:hover {
	border-color: #bfcfb9;
	box-shadow: 0 13px 24px rgba(0, 0, 0, .2);
	transform: translateY(-3px);
}

body.home .home-product-media {
	height: 285px;
	padding: 0;
	background: #fff;
}

body.home .home-product-media img {
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: contain;
}

body.home .home-product-placeholder {
	width: 150px;
	height: 150px;
	border-radius: 0;
}

body.home .home-product-card h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 105px;
	margin: 0;
	padding: 18px 20px;
	color: #33445f;
	font-family: 'Manrope', sans-serif;
	font-size: clamp(15px, 1.35vw, 19px);
	font-weight: 500;
	line-height: 1.28;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 760px) {
	body.home .home-products-section .home-shell {
		width: min(100% - 24px, 1360px);
	}

	body.home .home-products-head {
		align-items: center;
		flex-direction: row;
		gap: 10px;
		margin-bottom: 24px;
		padding: 20px 14px 16px;
		border-bottom-width: 6px;
	}

	body.home .home-products-title {
		flex: 1 1 auto;
		min-width: 0;
		gap: 8px;
		font-size: clamp(18px, 5.2vw, 18px);
		line-height: 1.15;
		white-space: nowrap;
	}

	body.home .home-products-title-icon {
		flex: 0 0 auto;
		font-size: 24px;
	}

	body.home .home-products-more {
		flex: 0 0 auto;
		font-size: clamp(14px, 4vw, 17px);
		line-height: 1.1;
	}

	body.home .home-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px 14px;
	}

	body.home .home-product-card {
		min-height: auto;
	}

	body.home .home-product-media {
		height: 190px;
	}

	body.home .home-product-card h3 {
		min-height: 86px;
		padding: 14px 10px;
		font-size: 14px;
	}
}

@media (max-width: 420px) {
	body.home .home-products-head {
		gap: 8px;
		padding-inline: 10px;
	}

	body.home .home-products-title {
		gap: 6px;
		font-size: 15px;
	}

	body.home .home-products-title-icon {
		font-size: 21px;
	}

	body.home .home-products-more {
		font-size: 12px;
	}
}
