.home-product-showcase {
	padding: 90px 0;
}

.home-product-showcase-header {
	text-align: center;
	margin-bottom: 54px;
}

.home-product-showcase-title {
	font-size: var(--f48);
	font-weight: 700;
	color: #222;
	max-width: 720px;
	margin: 0 auto;
}

.home-product-showcase-subtitle {
	margin: 30px 0 60px;
	font-size: var(--f16);
	color: #888;
}

.home-product-showcase-media {
	width: 100%;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	transform: translateY(0);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-product-showcase-media img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 300px;
	transition: transform 0.6s ease;
}

.home-product-showcase-media:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 50px rgba(20, 42, 74, 0.12);
}

.home-product-showcase-media:hover img {
	transform: scale(1.02);
}

.home-product-showcase-actions {
	position: absolute;
	left: 50%;
	bottom: 15px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	z-index: 1;
}

.home-product-btn {
	min-width: 184px;
	margin: 0;
	white-space: nowrap;
}

.home-product-btn-secondary {
	background: rgba(255, 255, 255, 0.40);
	color: #fff;
	border: 1px solid #fff;
	box-shadow: none;
}

.home-product-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.54);
	color: #fff;
	box-shadow: none;
}

.home-products-grid {
	padding: 0 0 120px;
}

.home-products-grid-header {
	text-align: center;
	margin-bottom: 42px;
}

.home-products-grid-title {
	font-size: var(--f48);
	font-weight: 700;
	line-height: 1.16;
	color: #222;
	max-width: 760px;
	margin: 0 auto;
}

.home-products-swiper {
	overflow: hidden;
	padding-bottom: 44px;
}

.home-products-grid-list {
	display: flex;
}

.home-products-swiper .swiper-slide {
	height: auto;
	box-sizing: border-box;
}

.home-products-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	padding: 3vw 3.5vw;
	border-radius: 12px;
	background: #f3f3f3;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 20px;
	margin-left: 20px;
    
}

.home-products-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 45px rgba(19, 39, 69, 0.08);
}

.home-products-card-copy {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.home-products-card-title {
	font-size: var(--f30);
	font-weight: 700;
	color: #222;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: calc(1.2em * 3);
}

.home-products-card-desc {
	margin-top: 24px;
	font-size: var(--f15);
	color: #888;
	line-clamp: 3;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}


.home-products-card:hover .change-button {
	background: var(--gm-theme);
	color: #fff;
	transform: translateX(4px);
}

.home-products-card-media img {
	display: block;
	width: 100%;
	height: auto;
}

.home-products-pagination {
	position: static;
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.home-products-pagination .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	margin: 0 !important;
	background: #bed0df;
	opacity: 1;
	transition: background 0.25s ease, transform 0.25s ease;
}

.home-products-pagination .swiper-pagination-bullet-active {
	background: var(--gm-theme);
}

.home-products-swiper .swiper-wrapper {
		height: 100%;
		
	}
@media (min-width: 768px) {
	.home-product-showcase {
		padding: 175px 0 160px;
	}

	.home-product-showcase-media img {
		min-height: 600px;
	}

	.home-product-showcase-actions {
		bottom: 50px;
	}

	

	.home-products-swiper {
		height: calc((100% - 22px) / 2) !important;
	}

	

	.home-products-swiper .swiper-slide {
		height: calc((100% - 16px) / 2) !important;
	}

	.home-products-card {
		min-height: 340px;
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
		align-items: center;
	}
}
