/*
 * Homepage Redesign — Phase 1
 * "Dark Forest / Imperial Gold / Cream"
 * Loaded only on the page-home-redesign.php template.
 */

.eh-home {
	--forest-900: #0f2a1e;
	--forest-700: #1f4a35;
	--herb-600: #3f8a5e;
	--gold-500: #cda349;
	--gold-400: #e3c878;
	--gold-600: #a9802f;
	--cream-50: #fdfcf7;
	--cream-100: #f7f3e8;
	--cream-200: #efe7d4;
	--ink-500: #4a4a45;
	--ink-700: #2b2b27;
	--line: #e2dccb;

	font-family: 'Nunito Sans', sans-serif;
	color: var(--ink-700);
	background: var(--cream-50);
	overflow-x: hidden;
}

.eh-home h1,
.eh-home h2,
.eh-home h3 {
	font-family: 'Playfair Display', serif;
	color: var(--forest-900);
	margin: 0 0 0.5em;
	line-height: 1.2;
}

.eh-home p {
	margin: 0 0 1em;
	line-height: 1.7;
	color: var(--ink-500);
}

.eh-home a {
	text-decoration: none;
}

.eh-home img {
	max-width: 100%;
	display: block;
}

.eh-home .gold {
	color: var(--gold-600);
	font-style: italic;
}

.eh-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}

/* Layout helpers */
.eh-home section {
	padding: 64px 24px;
}

.eh-section-head {
	max-width: 640px;
	margin: 0 auto 40px;
	text-align: center;
}

.eh-eyebrow {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	color: var(--gold-600);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.85rem;
	margin: 0 0 0.5em;
}

.eh-eyebrow--light {
	color: var(--gold-400);
}

.eh-section-sub {
	max-width: 520px;
	margin: 0.5em auto 0;
}

.eh-section-cta {
	text-align: center;
	margin-top: 40px;
}

/* Buttons */
.eh-btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	border: 1px solid transparent;
	text-decoration: none;
	transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* Defeat the theme's global a:hover (coral/blue + underline) on every button state */
.eh-btn:hover,
.eh-btn:focus,
.eh-btn:active {
	text-decoration: none;
}

.eh-btn--gold {
	background: var(--gold-500);
	color: var(--forest-900);
}

.eh-btn--gold:hover,
.eh-btn--gold:focus {
	background: var(--gold-400);
	color: var(--forest-900);
}

.eh-btn--outline {
	border-color: var(--forest-700);
	color: var(--forest-700);
	background: transparent;
}

.eh-btn--outline:hover,
.eh-btn--outline:focus {
	background: var(--forest-700);
	color: var(--cream-50);
}

.eh-btn--white {
	background: var(--cream-50);
	color: var(--forest-900);
}

.eh-btn--white:hover,
.eh-btn--white:focus {
	background: var(--cream-200);
	color: var(--forest-900);
}

/* 01 — Hero Carousel (banner slider) */
.eh-hcar {
	position: relative;
	padding: 0;
	background: var(--forest-900);
	color: var(--cream-100);
	overflow: hidden;
}

.eh-hcar__viewport {
	overflow: hidden;
	touch-action: pan-y;
}

.eh-hcar__track {
	display: flex;
	transition: transform 0.7s cubic-bezier(0.65, 0.02, 0.2, 1);
	will-change: transform;
}

.eh-hcar__slide {
	min-width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	padding: 64px 24px;
	min-height: 560px;
}

.eh-hcar__slide::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.eh-hcar__slide--brand::before {
	background:
		radial-gradient(ellipse 80% 60% at 72% 40%, rgba(45, 106, 79, 0.40), transparent 60%),
		linear-gradient(180deg, rgba(13, 42, 32, 0.30), rgba(13, 42, 32, 0.85));
}

.eh-hcar__slide--bundle::before {
	background:
		radial-gradient(ellipse 80% 60% at 72% 40%, rgba(45, 106, 79, 0.40), transparent 60%),
		linear-gradient(180deg, rgba(13, 42, 32, 0.30), rgba(13, 42, 32, 0.85));
}

.eh-hcar__slide--shipping::before {
	background:
		radial-gradient(ellipse 70% 70% at 74% 40%, rgba(45, 106, 79, 0.40), transparent 60%),
		linear-gradient(180deg, rgba(13, 42, 32, 0.35), rgba(13, 42, 32, 0.88));
}

.eh-hcar__slide .eh-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
}

/* Entrance reveal — resting state is always visible (safe for no-JS / reduced-motion).
   The reveal only plays while JS holds the transient .is-animating class. */
.eh-rise {
	opacity: 1;
}

.eh-hcar.is-ready .eh-hcar__slide.is-active.is-animating .eh-rise {
	animation: ehRise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
	animation-delay: var(--d, 0s);
}

@keyframes ehRise {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: none; }
}

.eh-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	align-items: center;
}

.eh-hcar .eh-eyebrow {
	color: var(--gold-400);
}

.eh-hcar .eh-hero__title {
	color: var(--cream-50);
	font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.eh-hero__title .gold {
	color: var(--gold-400);
}

.eh-home .eh-hero__subtext {
	color: #fff;
	max-width: 480px;
	line-height: 1.8;
}

.eh-hero__cta {
	margin: 24px 0 40px;
}

.eh-hero__stats {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 24px;
}

.eh-stat {
	display: flex;
	flex-direction: column;
}

.eh-stat__number {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	color: var(--gold-400);
}

.eh-stat__label {
	font-size: 0.85rem;
	color: var(--cream-200);
}

.eh-hero__media {
	position: relative;
	display: flex;
	justify-content: center;
}

/* Bundle slide (desktop): cut-out bottles fill the slide height, flush to the bottom-right edge.
   Stretch the grid so the media cell spans the full slide, keep the text vertically centred. */
@media (min-width: 961px) {
	.eh-hcar__slide--bundle {
		align-items: stretch;
		min-height: 780px;
		padding-bottom: 0;
	}
	.eh-hcar__slide--bundle .eh-hero__inner {
		align-items: stretch;
	}
	.eh-hcar__slide--bundle .eh-hero__content {
		align-self: center;
	}
	.eh-hcar__slide--bundle .eh-hero__media {
		align-items: flex-end;
		justify-content: flex-end;
	}
	.eh-hcar__slide--bundle .eh-hero__promo.has-img {
		height: 100%;
		width: auto;
		max-width: none;
		margin: 0;
		aspect-ratio: 3 / 4;
	}
	.eh-hcar__slide--bundle .eh-hero__badge--deal {
		right: 0;
		bottom: 12px;
	}
}

.eh-hero__img {
	border-radius: 12px;
	max-height: 480px;
	object-fit: cover;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.eh-hero__badge {
	position: absolute;
	top: 24px;
	left: 24px;
	background: var(--cream-50);
	border-radius: 8px;
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
	z-index: 1;
}

.eh-hero__badge-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gold-600);
	font-weight: 700;
}

.eh-hero__badge-name {
	font-family: 'Playfair Display', serif;
	color: var(--forest-900);
	font-size: 0.95rem;
}

.eh-hero__badge-meta {
	font-size: 0.8rem;
	color: var(--ink-500);
}

/* Gold deal badge (bottom-right) for the bundle promo slide — matches the design */
.eh-hero__badge--deal {
	top: auto;
	left: auto;
	right: 0;
	bottom: 14px;
	background: var(--gold-500);
	border-radius: 6px;
	padding: 10px 16px;
	text-align: left;
}

.eh-hero__badge--deal .eh-hero__badge-meta {
	order: 1;
	color: rgba(15, 42, 30, 0.72);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.66rem;
	font-weight: 700;
}

.eh-hero__badge--deal .eh-hero__badge-name {
	order: 2;
	color: var(--forest-900);
	font-size: 1.55rem;
	line-height: 1;
}

.eh-hero__badge--deal .eh-hero__badge-label {
	order: 3;
	color: rgba(15, 42, 30, 0.72);
	font-size: 0.66rem;
	letter-spacing: 0.04em;
}

/* Brand-slide feature image wrapper (anchors the floating badge) */
.eh-hero__feature {
	position: relative;
	display: block;
}

/* Promo-slide media placeholder (drop a real 1080×1440 image here later) */
.eh-hero__promo {
	position: relative;
	width: 100%;
	max-width: 460px;
	aspect-ratio: 3 / 4;
	border-radius: 12px;
	border: 1px solid rgba(243, 228, 182, 0.18);
	background-image: repeating-linear-gradient(135deg, rgba(243, 228, 182, 0.05) 0 14px, transparent 14px 28px);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.eh-hero__promo-ph {
	font-size: 0.72rem;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: rgba(243, 228, 182, 0.55);
	text-align: center;
	line-height: 2;
}

/* Filled promo slot — a transparent product cut-out floats on the slide (no card frame) */
.eh-hero__promo.has-img {
	border: 0;
	background-image: none;
	box-shadow: none;
	max-width: 560px;
	margin-left: auto;
}

.eh-hero__promo-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.eh-hero__promo.has-img .eh-hero__promo-img {
	object-fit: contain;
	object-position: center bottom;
	border-radius: 0;
	filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.5));
}

/* Promo-slide discount / shipping tiers */
.eh-deal-tiers {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin: 28px 0 0;
}

.eh-deal-tier {
	border: 1px solid rgba(205, 163, 73, 0.34);
	padding: 12px 20px;
	min-width: 120px;
	background: rgba(13, 42, 32, 0.30);
	border-radius: 4px;
}

.eh-deal-tier__buy {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(243, 228, 182, 0.70);
	font-weight: 700;
}

.eh-deal-tier__off {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 1.7rem;
	color: var(--gold-400);
	margin-top: 4px;
	line-height: 1;
}

.eh-deal-tier--featured {
	background: var(--gold-500);
	border-color: var(--gold-500);
}

.eh-deal-tier--featured .eh-deal-tier__buy {
	color: rgba(13, 42, 32, 0.65);
}

.eh-deal-tier--featured .eh-deal-tier__off {
	color: var(--forest-900);
}

.eh-deal-note {
	font-size: 0.8rem;
	letter-spacing: 0.02em;
	color: rgba(243, 228, 182, 0.65);
	margin: 18px 0 0;
}

/* Promo slides hold two CTAs side by side */
.eh-hcar .eh-hero__cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* Ghost button on the dark hero */
.eh-btn--ghost {
	background: transparent;
	border-color: rgba(205, 163, 73, 0.55);
	color: var(--gold-400);
}

.eh-btn--ghost:hover,
.eh-btn--ghost:focus {
	background: rgba(205, 163, 73, 0.12);
	border-color: var(--gold-400);
	color: var(--gold-400);
}

/* Carousel arrows */
.eh-hcar__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 6;
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(205, 163, 73, 0.40);
	background: rgba(13, 42, 32, 0.45);
	color: var(--gold-400);
	border-radius: 4px;
	cursor: pointer;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* Hover/focus/active: scoped (0,3,0) so it beats the theme's button:hover gradient (0,2,1) */
.eh-hcar .eh-hcar__arrow:hover,
.eh-hcar .eh-hcar__arrow:focus,
.eh-hcar .eh-hcar__arrow:active {
	background-color: var(--gold-500);
	background-image: none;
	box-shadow: none;
	color: var(--forest-900);
	border-color: var(--gold-500);
	outline: none;
}

.eh-hcar__arrow--prev { left: 24px; }
.eh-hcar__arrow--next { right: 24px; }
.eh-hcar__arrow svg { width: 16px; height: 16px; }

/* Carousel dots + auto-advance progress */
.eh-hcar__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 26px;
	z-index: 6;
	display: flex;
	gap: 12px;
	justify-content: center;
	align-items: center;
}

.eh-hcar__dot {
	position: relative;
	width: 44px;
	height: 3px;
	padding: 0;
	border: 0;
	background: rgba(243, 228, 182, 0.22);
	overflow: hidden;
	cursor: pointer;
}

.eh-hcar__dot .bar {
	position: absolute;
	inset: 0;
	width: 0;
	background: var(--gold-500);
}

/* Dots are <button>s too — block the theme's button:hover gradient/shadow */
.eh-hcar .eh-hcar__dot:hover,
.eh-hcar .eh-hcar__dot:focus,
.eh-hcar .eh-hcar__dot:active {
	background-color: rgba(243, 228, 182, 0.35);
	background-image: none;
	box-shadow: none;
	outline: none;
}

@media (max-width: 960px) {
	.eh-hcar__slide {
		min-height: 0;
		padding: 56px 20px 84px;
	}
	.eh-hcar__dots { bottom: 20px; }
}

@media (max-width: 720px) {
	.eh-hcar__arrow { width: 42px; height: 42px; }
	.eh-hcar__arrow--prev { left: 8px; }
	.eh-hcar__arrow--next { right: 8px; }
	.eh-deal-tier { min-width: 0; flex: 1; padding: 10px 14px; }
	.eh-deal-tier__off { font-size: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
	.eh-hcar__track { transition: none; }
	.eh-hcar.is-ready .eh-hcar__slide.is-active.is-animating .eh-rise { animation: none; }
	.eh-hcar__dot.is-active .bar { transition: none !important; width: 0 !important; }
}

/* Trust Bar */
.eh-trust {
	background: var(--cream-100);
	padding: 32px 24px;
	border-bottom: 1px solid var(--line);
}

.eh-trust__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.eh-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: var(--forest-900);
}

.eh-trust__item .eh-icon {
	color: var(--herb-600);
}

.eh-trust__direct {
	max-width: 1200px;
	margin: 24px auto 0;
	text-align: center;
	font-size: 0.9rem;
	color: var(--ink-500);
}

.eh-trust__direct a {
	color: var(--gold-600);
	font-weight: 700;
}

.eh-trust__sep {
	margin: 0 8px;
}

/* 02 — Categories */
.eh-categories__grid,
.eh-products__grid,
.eh-benefits__grid,
.eh-why__grid,
.eh-more__grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	gap: 24px;
}

.eh-products__grid,
.eh-benefits__grid {
	grid-template-columns: repeat(4, 1fr);
}

.eh-categories__grid {
	grid-template-columns: repeat(3, 1fr);
}

.eh-benefits__grid {
	grid-template-columns: repeat(5, 1fr);
}

.eh-why__grid,
.eh-more__grid {
	grid-template-columns: repeat(3, 1fr);
}

.eh-more__grid {
	grid-template-columns: repeat(4, 1fr);
}

.eh-category-card {
	background: var(--cream-100);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eh-category-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(15, 42, 30, 0.1);
}

.eh-category-card__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--forest-900);
	color: var(--gold-400);
}

.eh-category-card__icon .eh-icon {
	width: 26px;
	height: 26px;
}

.eh-category-card__name {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	color: var(--forest-900);
}

.eh-category-card__count {
	font-size: 0.85rem;
	color: var(--ink-500);
}

/* 03 — Featured Products */
.eh-featured-products {
	background: var(--cream-100);
}

.eh-product-card {
	position: relative;
	background: var(--cream-50);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	height: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eh-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(15, 42, 30, 0.1);
}

.eh-product-card__link {
	display: block;
}

.eh-product-card__img {
	border-radius: 8px;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: var(--cream-100);
	margin-bottom: 12px;
}

.eh-product-card__botanical {
	font-size: 0.85rem;
	color: var(--ink-500);
}

.eh-product-card__title {
	font-family: 'Playfair Display', serif;
	color: var(--forest-900);
	font-size: 1.08rem;
	line-height: 1.35;
}

.eh-product-card__title:hover {
	color: var(--gold-600);
}

.eh-product-card__name {
	font-family: 'Playfair Display', serif;
	color: var(--forest-900);
	font-size: 1.05rem;
}

.eh-product-card__price {
	font-weight: 700;
	color: var(--gold-600);
}

.eh-product-card__cart {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border-radius: 4px;
	background: var(--forest-900);
	color: var(--gold-400);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.eh-product-card__cart:hover {
	background: var(--forest-700);
	color: var(--cream-50);
}

.eh-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 4px 10px;
	border-radius: 999px;
	z-index: 1;
}

.eh-badge + .eh-badge {
	top: 46px;
}

.eh-badge--gold {
	background: var(--gold-500);
	color: var(--forest-900);
}

.eh-badge--forest {
	background: var(--forest-700);
	color: var(--cream-50);
}

.eh-badge--herb {
	background: var(--herb-600);
	color: var(--cream-50);
}

/* 02b — Featured Benefits */
.eh-benefit-card {
	background: var(--forest-900);
	border-radius: 12px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	color: var(--cream-100);
	transition: transform 0.2s ease;
}

.eh-benefit-card:hover {
	transform: translateY(-4px);
}

.eh-benefit-card__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(227, 200, 120, 0.12);
	color: var(--gold-400);
}

.eh-benefit-card__name {
	font-family: 'Playfair Display', serif;
	font-size: 1.05rem;
}

/* 04 — Why Choose Us */
.eh-why-card {
	background: var(--cream-100);
	border-radius: 12px;
	padding: 32px;
	text-align: center;
}

.eh-why-card__icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--forest-900);
	color: var(--gold-400);
}

.eh-why-card h3 {
	font-size: 1.15rem;
}

/* 05 — More than a supplement */
.eh-more {
	background: var(--forest-900);
	color: var(--cream-100);
}

.eh-more h3 {
	color: var(--cream-50);
}

.eh-more p {
	color: var(--cream-200);
}

.eh-more-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 32px;
}

.eh-more-card__index {
	font-family: 'Playfair Display', serif;
	color: var(--gold-400);
	font-size: 1.6rem;
	display: block;
	margin-bottom: 12px;
}

.eh-more-card__tbd {
	font-style: italic;
	opacity: 0.7;
}

.eh-more-card--link {
	display: block;
	color: inherit;
	text-decoration: none;
	transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.eh-more-card--link:hover {
	border-color: var(--gold-400);
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.06);
}
.eh-more-card__cta {
	display: inline-block;
	margin-top: 14px;
	color: var(--gold-400);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
}

/* 06 — CTA Strip */
.eh-cta-strip {
	background: var(--gold-500);
}

.eh-cta-strip__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.eh-cta-strip h2 {
	color: var(--forest-900);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	max-width: 480px;
}

.eh-cta-strip .eh-eyebrow--light {
	color: var(--forest-700);
}

.eh-cta-strip__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	font-weight: 700;
	color: var(--forest-900);
}

.eh-cta-strip__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.eh-cta-strip .eh-btn--gold {
	background: var(--forest-900);
	color: var(--gold-400);
}

.eh-cta-strip .eh-btn--gold:hover {
	background: var(--forest-700);
}

/* Responsive */
@media (max-width: 960px) {
	.eh-hero__inner {
		grid-template-columns: 1fr;
	}

	.eh-categories__grid,
	.eh-products__grid,
	.eh-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.eh-why__grid,
	.eh-more__grid {
		grid-template-columns: 1fr;
	}

	.eh-trust__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.eh-cta-strip__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 600px) {
	.eh-home section {
		padding: 48px 16px;
	}

	.eh-categories__grid,
	.eh-products__grid,
	.eh-benefits__grid {
		grid-template-columns: 1fr;
	}

	.eh-trust__inner {
		grid-template-columns: 1fr;
	}

	.eh-hero__stats {
		gap: 24px;
	}
}
