.ems-homepage .ems-hp-product-section {
	background: #fff;
}

body.ems-store-home .ems-homepage .ems-hp-product-section--top-choice {
	padding: 54px 0 62px;
}

body.ems-store-home .ems-homepage .ems-hp-product-section--trailers {
	padding: 38px 0 76px;
}

.ems-homepage .ems-hp-product-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 26px;
}

.ems-homepage .ems-hp-product-section-head h2 {
	margin: 0;
	color: #111;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0;
	text-transform: uppercase;
}

.ems-homepage .ems-hp-product-section--trailers .ems-hp-product-section-head h2 {
	font-size: clamp(30px, 3vw, 46px);
	font-weight: 900;
	line-height: 1;
}

.ems-homepage .ems-hp-product-section-head > a {
	color: #111;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.ems-homepage .ems-hp-product-section .ems-hp-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ems-homepage .ems-hp-product-section .ems-hp-product {
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.ems-homepage .ems-hp-product-section .ems-hp-product__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.ems-homepage .ems-hp-product-section .ems-hp-product__media {
	position: relative;
	display: flex;
	aspect-ratio: 1;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #fff;
}

.ems-homepage .ems-hp-product-section .ems-hp-product__media img,
.ems-homepage .ems-hp-product-section .ems-hp-product__media .ems-product-placeholder-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 180ms ease;
}

.ems-homepage .ems-hp-product-section .ems-hp-product__link:hover .ems-hp-product__media img,
.ems-homepage .ems-hp-product-section .ems-hp-product__link:focus-visible .ems-hp-product__media img {
	transform: scale(1.02);
}

.ems-homepage .ems-hp-product-section .ems-hp-product__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2;
	padding: 8px 10px;
	background: #f6a51c;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.ems-homepage .ems-hp-product-section .ems-hp-product__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 14px 0 0;
	text-align: center;
}

.ems-homepage .ems-hp-product-section .ems-hp-product__title {
	display: -webkit-box;
	overflow: hidden;
	min-height: calc(1.25em * 3);
	max-width: 92%;
	margin: 0 auto 10px;
	color: #252525;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.ems-homepage .ems-hp-product-section .ems-hp-product__categories {
	min-height: 2.6em;
	margin: 0 0 10px;
	color: #a6a6a6;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}

.ems-homepage .ems-hp-product-section .ems-hp-product__price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px 6px;
	margin-top: auto;
	color: var(--ems-accent, #F6A51C);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
}

.ems-homepage .ems-hp-product-section .ems-hp-product__price .ems-price-stack {
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px 6px;
}

.ems-homepage .ems-hp-product-section .ems-hp-product__price .ems-price-comparison {
	order: 1;
	color: #aaa;
	font-weight: 600;
	text-decoration: line-through;
}

.ems-homepage .ems-hp-product-section .ems-hp-product__price .ems-price-current {
	order: 2;
	color: var(--ems-accent, #F6A51C);
}

.ems-homepage .ems-hp-product-section .ems-hp-product__price .ems-price-comparison-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ems-homepage .ems-hp-product-section .ems-hp-product__placeholder,
.ems-homepage .ems-hp-product-section .ems-product-placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
	background: #f4f4f4;
	color: #666;
	font-size: 13px;
}

@media (max-width: 900px) {
	.ems-homepage .ems-hp-product-section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.ems-homepage .ems-hp-product-section .ems-hp-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.ems-homepage .ems-hp-product-section-head {
		margin-bottom: 26px;
	}

	.ems-homepage .ems-hp-product-section-head h2 {
		font-size: 28px;
	}

	.ems-homepage .ems-hp-product-section--trailers .ems-hp-product-section-head h2 {
		font-size: 30px;
	}
}

@media (max-width: 480px) {
	.ems-homepage .ems-hp-product-section .ems-hp-product-grid {
		gap: 24px 14px;
	}

	.ems-homepage .ems-hp-product-section .ems-hp-product__title {
		font-size: 15px;
	}

	.ems-homepage .ems-hp-product-section .ems-hp-product__categories {
		font-size: 13px;
	}

	.ems-homepage .ems-hp-product-section .ems-hp-product__price {
		font-size: 14px;
	}

	.ems-homepage .ems-hp-product-section .ems-hp-product__badge {
		padding: 8px 10px;
		font-size: 12px;
	}
}
