/* Homepage: hero slider, product grid, promo banner */

/* ---------- Hero slider ---------- */
.home-hero {
	background: linear-gradient(135deg, #eef6ea 0%, #dcebd4 100%);
	padding: 20px 0 0;
}
.home-hero .swiper-viewport {
	max-width: 100%;
	margin: 0;
	box-shadow: none;
	border-color: transparent;
	background: transparent;
}
.home-hero .swiper-container,
.home-hero .swiper-wrapper,
.home-hero .swiper-slide {
	height: 460px;
}
.home-hero .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.home-hero .swiper-slide img {
	width: auto !important;
	height: 100% !important;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
@media (max-width: 991px) {
	.home-hero .swiper-container,
	.home-hero .swiper-wrapper,
	.home-hero .swiper-slide {
		height: 360px;
	}
}
@media (max-width: 480px) {
	.home-hero .swiper-container,
	.home-hero .swiper-wrapper,
	.home-hero .swiper-slide {
		height: 260px;
	}
}

/* ---------- Section title ---------- */
.home-section-title {
	text-align: center;
	margin: 45px 0 30px;
}
.home-section-title h2 {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin: 0 0 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.home-section-underline {
	display: inline-block;
	width: 70px;
	height: 3px;
	background: #6bab3f;
	border-radius: 2px;
}

/* ---------- Product grid ---------- */
.home-products {
	padding-bottom: 20px;
}
.home-products .product-grid .product-layout {
	margin-bottom: 25px;
}

/* ---------- Promo banner ---------- */
.home-banner {
	margin: 10px 0 45px;
}
.home-banner .swiper-viewport {
	max-width: 900px;
	margin: 0 auto;
	background: #f4f8f1;
}
.home-banner .swiper-container,
.home-banner .swiper-wrapper,
.home-banner .swiper-slide {
	height: 420px;
}
.home-banner .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.home-banner .swiper-slide img {
	width: auto !important;
	height: 100% !important;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
@media (max-width: 480px) {
	.home-banner .swiper-container,
	.home-banner .swiper-wrapper,
	.home-banner .swiper-slide {
		height: 280px;
	}
}
