/* =================================================================
   HOME2  –  Xefag-style product hero  (near 1:1 reference)
   ALL rules scoped to body.home2-page — zero bleed to other pages.
   ================================================================= */

/* ── Reset + Font scoping ──────────────────────────────────────── */
body.home2-page {
	font-family: 'Plus Jakarta Sans', sans-serif;
	margin: 0;
	padding: 0;
	min-height: 100vh;
	/* Outer blush-pink background — visible around the card */
	background: radial-gradient(ellipse at 50% 30%, #f8dde4 0%, #f0cdd6 50%, #e8c0cc 100%);
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-font-smoothing: antialiased;
}
#wpadminbar {
	display:none !important;
}
body.home2-page * {
	box-sizing: border-box;
}

/* Kill any WP / GHL wrappers that add padding/margin */
body.home2-page #page,
body.home2-page #content,
body.home2-page .site,
body.home2-page .hl_page-preview--content {
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
}

/* ══════════════════════════════════════════════
   OUTER WRAPPER  (pink bg, centres the card)
   ══════════════════════════════════════════════ */
body.home2-page .h2-outer {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 32px;
}

/* ══════════════════════════════════════════════
   CARD  (the crimson rounded rectangle)
   ══════════════════════════════════════════════ */
body.home2-page .h2-card {
	position: relative;
	width: 100%;
	height: calc(100vh - 64px);
	min-height: 580px;
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: #0a1e40;
	box-shadow: 0 24px 80px rgba(120, 0, 20, 0.35);
}

/* ══════════════════════════════════════════════
   NAV BAR  (inside card, transparent)
   ══════════════════════════════════════════════ */
body.home2-page .h2-nav {
	position: relative;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 32px;
	flex-shrink: 0;
	backdrop-filter: blur(10px);
}

/* Brand */
body.home2-page .h2-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

body.home2-page .h2-brand-img {
	width: auto;
	height: 52px;
	max-width: 213px;
	object-fit: contain;
	border-radius: 0;
}

body.home2-page .h2-brand-name {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.01em;
}

/* Centre nav pills */
body.home2-page .h2-nav-links {
	display: flex;
	gap: 8px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

body.home2-page .h2-nav-pill {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.5rem 1.4rem;
	border-radius: 100px;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	line-height: 1.4;
	white-space: nowrap;
}

/* "Products" — transparent outline */
body.home2-page .h2-nav-outline {
	background: rgba(255, 255, 255, 0.15);
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	color: #fff;
}

body.home2-page .h2-nav-outline:hover {
	background: rgba(255, 255, 255, 0.25);
}

/* "Contact" — dark filled */
body.home2-page .h2-nav-filled {
	background: rgba(10, 0, 5, 0.55);
	border: 1.5px solid transparent;
	color: #fff;
}

body.home2-page .h2-nav-filled:hover {
	background: rgba(10, 0, 5, 0.7);
}

/* Right icons */
body.home2-page .h2-nav-right {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

body.home2-page .h2-icon-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	border: 1.5px solid rgba(255, 255, 255, 0.22);
	color: #fff;
	text-decoration: none;
	transition: background 0.2s;
}

body.home2-page .h2-icon-btn:hover {
	background: rgba(255, 255, 255, 0.22);
}

body.home2-page .h2-cart-badge {
	position: absolute;
	top: -5px;
	right: -5px;
	min-width: 18px;
	height: 18px;
	background: #fff;
	color: #9e1028;
	border-radius: 100px;
	font-size: 0.65rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ══════════════════════════════════════════════
   SLIDES CONTAINER
   ══════════════════════════════════════════════ */
body.home2-page .h2-slides {
	position: relative;
	flex: 1;
	min-height: 0;
	z-index: 2;
}

body.home2-page .h2-slide {
	display: none;
	position: absolute;
	inset: 0;
	flex-direction: column;
	/* slide-in animation */
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

body.home2-page .h2-slide.active {
	display: flex;
	opacity: 1;
	transform: translateX(0);
}

/* Per-slide gradient background */
body.home2-page .h2-slide-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: 20px;
	opacity: 0.52;
	backdrop-filter: blur(32px) saturate(1.4);
	-webkit-backdrop-filter: blur(32px) saturate(1.4);
	transition: background 0.8s ease, opacity 0.9s ease;
}

/* Ambient video overlay — sits above gradient (z:0) but below all content (z:10+) */
body.home2-page .h2-video-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.1;
	pointer-events: none;
}

/* ── Sub-nav (Back + category tabs) ─────────────────────────── */
body.home2-page .h2-sub-nav {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	padding: 4px 32px 12px;
	gap: 2rem;
	flex-shrink: 0;
}

body.home2-page .h2-back-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	cursor: pointer;
	padding: 0;
	transition: color 0.2s;
	flex-shrink: 0;
	white-space: nowrap;
}

body.home2-page .h2-back-btn:hover {
	color: #fff;
}

body.home2-page .h2-cat-tabs {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

body.home2-page .h2-cat-tabs::-webkit-scrollbar {
	display: none;
}

body.home2-page .h2-cat-tab {
	flex-shrink: 0;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.55);
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	padding: 4px 12px;
	border-radius: 4px;
	transition: color 0.2s, background 0.2s;
	white-space: nowrap;
}

body.home2-page .h2-cat-tab:hover {
	color: rgba(255, 255, 255, 0.85);
}

body.home2-page .h2-cat-tab.active {
	color: #fff;
	font-weight: 700;
}

/* ── Main 3-column body ───────────────────────────────────────── */
body.home2-page .h2-body {
	position: relative;
	z-index: 5;
	flex: 1;
	min-height: 0;
	display: grid;
	grid-template-columns: 1fr 1.6fr 1fr;
	gap: 0;
	padding: 0 32px;
	align-items: end;
	/* align bottom of each col */
	overflow: visible;
}

/* LEFT column */
body.home2-page .h2-col-left {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-bottom: 2rem;
	align-self: center;
	margin-left: 100px;
	width: 107%;
}

body.home2-page .h2-product-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(2rem, 3.2vw, 3.2rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	letter-spacing: -0.025em;
	margin: 0;
}

body.home2-page .h2-product-sub {
	font-size: 1.95rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.5;
	margin: 0;
}

/* CENTRE column — image overflows upward */
body.home2-page .h2-col-center {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: visible;
	position: relative;
	z-index: 3;
}

body.home2-page .h2-product-img {
	/* 2× size: fills nearly the full card height */
	height: calc(100vh - 220px);
	max-height: 700px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
	display: block;
	opacity: 0;
	/* bottom of image aligns with bottom grid row */
	margin-bottom: -12px;
}

/* Fade in when slide becomes active (runs each time you change slides) */
body.home2-page .h2-slide.active .h2-product-img {
	animation: h2-product-img-fade-in 0.55s ease forwards, h2-float 4s ease-in-out infinite;
}

@keyframes h2-product-img-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes h2-float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-16px);
	}
}

@media (prefers-reduced-motion: reduce) {

	body.home2-page .h2-product-img {
		opacity: 1;
	}

	body.home2-page .h2-slide.active .h2-product-img {
		animation: h2-float 4s ease-in-out infinite;
	}
}

body.home2-page .h2-no-img {
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* RIGHT column */
body.home2-page .h2-col-right {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-bottom: 2rem;
	align-items: flex-end;
	align-self: flex-start;
	padding-top: 1rem;
}

/* Variant pills: 30 | 60 | 90 */
body.home2-page .h2-variants {
	display: flex;
	gap: 6px;
}

body.home2-page .h2-variant {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	background: rgba(255, 255, 255, 0.1);
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.65);
}

body.home2-page .h2-variant:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

body.home2-page .h2-variant.active {
	background: rgba(255, 255, 255, 0.95);
	border-color: transparent;
	color: #1a0008;
}

/* Info line */
body.home2-page .h2-variant-info {
	display: flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.78rem;
	font-weight: 400;
	margin: 0;
	white-space: nowrap;
}

/* ══════════════════════════════════════════════
   BOTTOM BAR  (footnote | price | qty | buy)
   ══════════════════════════════════════════════ */
body.home2-page .h2-bottom {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 18px 32px 24px;
	flex-shrink: 0;
}

body.home2-page .h2-footnote {
	font-size: 0.7rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.45;
	margin: 0;
	max-width: 200px;
	flex-shrink: 0;
}

/* Spacer pushes price+qty+buy to right */
body.home2-page .h2-price-wrap {
	margin-left: auto;
	flex-shrink: 0;
}

body.home2-page .h2-price-wrap .woocommerce-Price-amount,
body.home2-page .h2-price-wrap .price,
body.home2-page .h2-price-wrap {
	font-family: 'Plus Jakarta Sans', sans-serif !important;
	font-size: clamp(2rem, 3.5vw, 3rem) !important;
	font-weight: 800 !important;
	color: #fff !important;
	line-height: 1 !important;
}

body.home2-page .h2-price-wrap del,
body.home2-page .h2-price-wrap del .woocommerce-Price-amount {
	font-size: 0.6em !important;
	color: rgba(255, 255, 255, 0.4) !important;
	display: block;
}

/* Qty stepper */
body.home2-page .h2-qty-ctrl {
	display: flex;
	align-items: center;
	gap: 0;
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	border-radius: 100px;
	overflow: hidden;
	flex-shrink: 0;
}

body.home2-page .h2-qbtn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s;
}

body.home2-page .h2-qbtn:hover {
	background: rgba(255, 255, 255, 0.1);
}

body.home2-page .h2-qval {
	min-width: 30px;
	text-align: center;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
}

/* Buy Now button */
body.home2-page .h2-buy-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.95);
	color: #1a0008;
	border-radius: 100px;
	padding: 0.85rem 1.75rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
	white-space: nowrap;
	flex-shrink: 0;
}

body.home2-page .h2-buy-btn:hover {
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
	color: #1a0008;
}

body.home2-page .h2-buy-btn:active {
	transform: translateY(0);
}

/* ══════════════════════════════════════════════
   PREV / NEXT ARROWS
   ══════════════════════════════════════════════ */
body.home2-page .h2-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 60;
	background: rgba(255, 255, 255, 0.1);
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 1.8rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	padding: 0;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

body.home2-page .h2-arrow:hover {
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-50%) scale(1.08);
}

body.home2-page .h2-prev {
	left: 14px;
}

body.home2-page .h2-next {
	right: 14px;
}

/* ══════════════════════════════════════════════
   DOTS
   ══════════════════════════════════════════════ */
body.home2-page .h2-dots {
	position: absolute;
	bottom: 100px;
	/* sits above the bottom bar */
	right: 32px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	z-index: 60;
}

body.home2-page .h2-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.25s, height 0.25s;
}

body.home2-page .h2-dot.active {
	background: #fff;
	height: 20px;
	border-radius: 3px;
}

body.home2-page .h2-dot:hover:not(.active) {
	background: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════════════════ */
body.home2-page .h2-empty {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.1rem;
	padding: 2rem;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤900px)
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
	body.home2-page .h2-outer {
		padding: 16px;
	}

	body.home2-page .h2-card {
		height: calc(100dvh - 32px);
		border-radius: 18px;
	}

	body.home2-page .h2-nav {
		padding: 16px 20px;
	}

	body.home2-page .h2-nav-links {
		position: static;
		transform: none;
	}

	body.home2-page .h2-body {
		grid-template-columns: 1fr 1.4fr;
		grid-template-rows: auto 1fr;
		padding: 0 20px;
	}

	body.home2-page .h2-col-right {
		grid-column: 1;
		grid-row: 1;
		flex-direction: row;
		align-items: center;
		padding-top: 0;
		padding-bottom: 0.5rem;
	}

	body.home2-page .h2-col-left {
		grid-column: 1;
		grid-row: 2;
	}

	body.home2-page .h2-col-center {
		grid-column: 2;
		grid-row: 1 / 3;
	}

	body.home2-page .h2-product-img {
		height: calc(100dvh - 260px);
		max-height: 500px;
	}

	body.home2-page .h2-bottom {
		padding: 14px 20px 18px;
		gap: 1rem;
	}

	body.home2-page .h2-footnote {
		display: none;
	}
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤600px)
   ══════════════════════════════════════════════ */
@media (max-width: 600px) {
	body.home2-page .h2-outer {
		padding: 0;
		min-height: 0;
	}

	body.home2-page .h2-card {
		height: auto;
		min-height: 0;
		border-radius: 18px;
		margin:2%;
	}

	/* On mobile slides stack in normal flow (inactive ones are display:none),
	   so the container grows with the active slide's actual content */
	body.home2-page .h2-slides {
		flex: none;
		height: auto;
		padding: 22px;
	}

	body.home2-page .h2-slide {
		position: relative;
		inset: auto;
	}

	body.home2-page .h2-nav {
		padding: 12px 14px;
	}

	body.home2-page .h2-brand-img {
		height: 38px;
	}

	body.home2-page .h2-brand-name {
		font-size: 1rem;
	}

	body.home2-page .h2-nav-links {
		display: none;
	}

	body.home2-page .h2-sub-nav {
		padding: 2px 14px 8px;
		gap: 0.75rem;
	}

	body.home2-page .h2-body {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		padding: 0 14px;
		align-items: start;
		align-content: start;
		flex: 0 1 auto;
	}

	/* Image first on mobile */
	body.home2-page .h2-col-center {
		order: 1;
		grid-column: 1;
		grid-row: auto;
		justify-content: center;
	}

	/* Title second */
	body.home2-page .h2-col-left {
		order: 2;
		grid-column: 1;
		grid-row: auto;
		margin-left: 0;
		width: 100%;
		padding-bottom: 0.5rem;
		gap: 6px;
	}

	/* Variants third */
	body.home2-page .h2-col-right {
		order: 3;
		grid-column: 1;
		grid-row: auto;
		flex-direction: row;
		align-items: center;
		padding-top: 0;
		padding-bottom: 0.5rem;
		align-self: start;
	}

	body.home2-page .h2-product-title {
		font-size: clamp(1.25rem, 5.5vw, 1.6rem);
	}

	body.home2-page .h2-product-sub {
		font-size: 0.85rem;
		line-height: 1.45;
	}

	body.home2-page .h2-product-img {
		height: 210px;
		max-height: 210px;
	}

	/* Bottom bar: two rows */
	body.home2-page .h2-bottom {
		padding: 10px 14px env(safe-area-inset-bottom, 16px);
		gap: 0.5rem;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}

	body.home2-page .h2-footnote {
		display: none;
	}

	/* Row 1: price left, qty stepper right */
	body.home2-page .h2-price-wrap {
		margin-left: 0;
		order: 1;
		flex-shrink: 0;
	}

	body.home2-page .h2-qty-ctrl {
		order: 2;
		flex-shrink: 0;
	}

	/* Row 2: buy now full width */
	body.home2-page .h2-buy-btn {
        order: 3;
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.25rem;
        margin-bottom: 30px;
        margin-top: 13px;
	}

	/* Dots: centred horizontal row */
	body.home2-page .h2-dots {
		flex-direction: row;
		bottom: 8px;
		right: 50%;
		transform: translateX(50%);
	}

	body.home2-page .h2-dot.active {
		height: 6px;
		width: 20px;
	}

	/* Arrows: aligned with the vertical centre of the product image
	   nav (~62px) + sub-nav (~38px) + half image (~105px) ≈ 205px */
	body.home2-page .h2-arrow {
		top: 205px;
		transform: none;
		width: 36px;
		height: 36px;
		font-size: 1.4rem;
	}

	body.home2-page .h2-arrow:hover {
		transform: scale(1.08);
	}

	body.home2-page .h2-prev {
		left: 8px;
	}

	body.home2-page .h2-next {
		right: 8px;
	}
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL PHONE  (≤430px)
   ══════════════════════════════════════════════ */
@media (max-width: 430px) {
	body.home2-page .h2-outer {
		padding: 0;
	}

	body.home2-page .h2-card {
		height: auto;
		border-radius: 0;
	}

	body.home2-page .h2-nav {
		padding: 10px 12px;
	}

	body.home2-page .h2-brand-img {
		height: 32px;
	}

	body.home2-page .h2-slides {
		height: auto;
	}

	body.home2-page .h2-product-img {
		height: 190px;
		max-height: 190px;
	}

	body.home2-page .h2-arrow {
		top: 193px; /* nav (~55px) + sub-nav (~35px) + half image (~95px) */
	}

	body.home2-page .h2-product-title {
		font-size: 1.2rem;
	}

	body.home2-page .h2-product-sub {
		font-size: 0.78rem;
	}

	body.home2-page .h2-cat-tab {
		font-size: 0.75rem;
		padding: 3px 8px;
	}

	body.home2-page .h2-back-btn {
		font-size: 0.72rem;
	}

	body.home2-page .h2-sub-nav {
		gap: 0.5rem;
		padding: 2px 12px 6px;
	}
}

/* ── Suppress ALL vitayur header/bar rendering on this page ──── */
body.home2-page #section-lElJeHRlOJ,
/* dark blue top bar */
body.home2-page #section-rveXao5TLB,
/* main nav bar */
body.home2-page .h2-header-wrap {
	display: none !important;
}

/* ══════════════════════════════════════════════
   PROMO CAROUSEL  (ARG collection_list–style strip)
   ══════════════════════════════════════════════ */
body.home2-page .h2-promo-carousel {
	padding: 40px 0 48px;
	margin: 0 auto;
	max-width: 100%;
}

body.home2-page .h2-promo-carousel__shell {
	position: relative;
	width: 100%;
}

body.home2-page .h2-promo-carousel__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 6px;
}

body.home2-page .h2-promo-carousel__viewport::-webkit-scrollbar {
	display: none;
}

body.home2-page .h2-promo-carousel__track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--grid-gutter, 24px);
	padding: 4px 32px 12px;
	box-sizing: border-box;
}

/* ── Card shell ── */
body.home2-page .collection-card {
	--h2-promo-trans: 1;
	flex: 0 0 auto;
	scroll-snap-align: center;
	scroll-snap-stop: always;
	width: min(73vw, 420px);
	min-width: 260px;
	text-decoration: none;
	color: inherit;
	border-radius: 20px 20px 0 20px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	background: rgb(241, 237, 238);
	position: relative;
	overflow: hidden;
	padding-top: 80px;
	padding-bottom: 80px;
}

/* ── content-over-media — the card's inner background zone ── */
body.home2-page .content-over-media {
	position: relative;
	overflow: hidden;
	border-radius: inherit;
	width: 100%;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 32px 24px;
}



body.home2-page .content-over-media::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: 1;
	pointer-events: none;
	background: rgb(241 237 238 / 0);
	transition: background 0.2s ease-in-out;
}

/* ── Promo media zone — covers full card including padding zones ── */
body.home2-page .h2-promo-media {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	pointer-events: none;
}

/* Circle base */
body.home2-page .h2-pc {
	position: absolute;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #fff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
	background: #e8e4e0;
	display: block;
}

body.home2-page .h2-pc img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Sizes */
body.home2-page .h2-pc--sm {
	width: 72px;
	height: 72px;
}

body.home2-page .h2-pc--md {
	width: 100px;
	height: 100px;
}

body.home2-page .h2-pc--lg {
	width: 132px;
	height: 132px;
}

body.home2-page .h2-pc--xl {
	width: 168px;
	height: 168px;
}

/* Product circles — contain, light bg */
body.home2-page .h2-pc.h2-pc--prod {
	border-radius: 50%;
	background: #f5f4f0;
}

body.home2-page .h2-pc.h2-pc--prod img {
	object-fit: contain;
	padding: 10px;
}

/* Coral accent dot */
body.home2-page .h2-pc-dot {
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #e66f63;
	display: block;
}

body.home2-page .h2-pc-dot--sm {
	width: 12px;
	height: 12px;
}

/* Text wrapper — centered within content-over-media */
body.home2-page .h2-promo-carousel .collection-card__content-wrapper {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: rgb(72, 77, 85);
}



/* Card content */
body.home2-page .h2-promo-carousel .collection-card__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.2s ease;
}

body.home2-page .h2-promo-carousel .h5,
body.home2-page .h2-promo-carousel .sm\\:h5 {
	order: 1;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.2rem, 3vw, 1.54rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	letter-spacing: -0.02em;
	color: rgb(72, 77, 85);
}

/* ARG section subheading: order 2, padding-top, #e66f63 */
body.home2-page .h2-promo-carousel .subheading {
	order: 2;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1.35;
	margin: 0;
	padding-top: 0px;
	color: #e66f63;
}

/* Arrow icon — hidden by default, shown on hover */
body.home2-page .h2-promo-carousel .icon-circle-button-right-clipped {
	display: inline-block;
	opacity: 0;
	visibility: hidden;
	margin-top: 14px;
	transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
	transform: translateY(8px);
	color: rgb(72, 77, 85);
	flex-shrink: 0;
}

/* Arrow reveals on hover — any pointer type */
body.home2-page .collection-card:hover .icon-circle-button-right-clipped {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}



body.home2-page .h2-promo-carousel__controls {
	pointer-events: none;
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 6px;
}

body.home2-page .h2-promo-carousel__btn {
	pointer-events: auto;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1.5px solid rgba(0, 0, 0, 0.12);
	background: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border-color 0.2s, opacity 0.2s, transform 0.15s;
	-webkit-tap-highlight-color: transparent;
}

body.home2-page .h2-promo-carousel__btn:hover:not(:disabled) {
	background: #f7f7f5;
	border-color: rgba(0, 0, 0, 0.2);
	transform: scale(1.05);
}

body.home2-page .h2-promo-carousel__btn:disabled {
	opacity: 0.35;
	cursor: default;
	transform: none;
}

body.home2-page .h2-promo-carousel__sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.home2-page .h2-promo-carousel__chev {
	display: block;
	width: 8px;
	height: 8px;
	border-right: 2px solid #0a1e40;
	border-bottom: 2px solid #0a1e40;
	transform: rotate(-45deg);
	margin-left: -3px;
}

body.home2-page .h2-promo-carousel__chev--prev {
	transform: rotate(135deg);
	margin-left: 3px;
}

body.home2-page .h2-promo-carousel__disclaimer {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.65rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.45);
	text-align: center;
	max-width: 720px;
	margin: 8px auto 0;
	padding: 0 32px;
}

@media screen and (min-width: 700px) {
	body.home2-page .collection-card {
		width: min(36vw, 420px);
	}

	body.home2-page .h2-promo-carousel__track {
		gap: 20px;
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media screen and (min-width: 1000px) {
	body.home2-page .collection-card {
		width: min(calc((100vw - 120px) / 3), 440px);
		scroll-snap-align: none;
	}
}

@media (max-width: 600px) {
	body.home2-page .h2-promo-carousel {
		padding: 28px 0 36px;
	}

	body.home2-page .h2-promo-carousel__track {
		padding-left: 20px;
		padding-right: 20px;
		gap: 12px;
	}

	body.home2-page .h2-promo-carousel__btn {
		width: 42px;
		height: 42px;
	}

	body.home2-page .h2-promo-carousel__controls {
		padding: 0 2px;
	}
}

/* ══════════════════════════════════════════════
   STRIP SECTION  (below hero)
   ══════════════════════════════════════════════ */
body.home2-page .h2-strip {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	width: calc(100% - 64px);
	margin: 0 auto 48px;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
	min-height: 160px;
}

/* ── Panel 1: CTA ── */
body.home2-page .h2-strip-cta {
	position: relative;
	background: #f2ede7;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 32px 28px;
}

body.home2-page .h2-strip-cta-text {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 240px;
}

body.home2-page .h2-strip-headline {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1rem, 1.6vw, 1.35rem);
	font-weight: 700;
	color: #0a1e40;
	line-height: 1.25;
	margin: 0;
	letter-spacing: -0.02em;
}

body.home2-page .h2-strip-link {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	color: #0a1e40;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity 0.2s;
	width: fit-content;
}

body.home2-page .h2-strip-link:hover {
	opacity: 0.6;
}

/* Capsule image — right side of panel, slightly overflowing */
body.home2-page .h2-strip-capsule-img {
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 52%;
	z-index: 1;
	pointer-events: none;
}

body.home2-page .h2-strip-capsule-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 8px;
	opacity: 0.85;
}

/* ── Panel 2: Formula ── */
body.home2-page .h2-strip-formula {
	background: #f8f6f2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
	padding: 28px 32px;
	border-left: 1px solid rgba(0, 0, 0, 0.07);
}

body.home2-page .h2-strip-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #0a1e40;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

body.home2-page .h2-strip-body-text {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.45;
	margin: 0;
	color: inherit;
}

body.home2-page .h2-strip-formula .h2-strip-body-text {
	color: #0a1e40;
}

body.home2-page .h2-strip-social .h2-strip-body-text {
	color: rgba(255, 255, 255, 0.55);
}

body.home2-page .h2-strip-more-link {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 600;
	white-space: nowrap;
}

body.home2-page .h2-strip-more-link:hover {
	opacity: 0.8;
}

/* Progress bar — 4 segments */
body.home2-page .h2-strip-progress {
	display: flex;
	gap: 5px;
	align-items: center;
}

body.home2-page .h2-sp {
	height: 3px;
	flex: 1;
	border-radius: 2px;
	background: rgba(0, 0, 0, 0.12);
	display: block;
}

body.home2-page .h2-sp.active {
	background: #0a1e40;
}

/* ── Panel 3: Social proof ── */
body.home2-page .h2-strip-social {
	background: #111111;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 28px 32px;
	border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* Overlapping avatar circles */
body.home2-page .h2-strip-avatars {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

body.home2-page .h2-avatar {
	display: block;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2.5px solid #111;
	overflow: hidden;
	flex-shrink: 0;
}

body.home2-page .h2-avatar svg {
	width: 100%;
	height: 100%;
	display: block;
}

body.home2-page .h2-avatar-1 {
	z-index: 3;
}

body.home2-page .h2-avatar-2 {
	z-index: 2;
	margin-left: -14px;
}

body.home2-page .h2-avatar-3 {
	z-index: 1;
	margin-left: -14px;
}

body.home2-page .h2-strip-stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

body.home2-page .h2-strip-count {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.5rem, 2.5vw, 2.2rem);
	font-weight: 800;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.02em;
}

/* ── Strip responsive ── */
@media (max-width: 800px) {
	body.home2-page .h2-strip {
		grid-template-columns: 1fr 1fr;
		width: calc(100% - 32px);
		margin-bottom: 32px;
	}

	body.home2-page .h2-strip-social {
		grid-column: 1 / -1;
	}
}

@media (max-width: 540px) {
	body.home2-page .h2-strip {
		grid-template-columns: 1fr;
		border-radius: 14px;
	}

	body.home2-page .h2-strip-cta,
	body.home2-page .h2-strip-formula,
	body.home2-page .h2-strip-social {
		padding: 24px 20px;
	}

	body.home2-page .h2-strip-capsule-img {
		width: 45%;
		right: -10px;
	}
}

/* ── Updated strip avatars ── */
body.home2-page .h2-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ══════════════════════════════════════════════
   REVIEWS + MOSAIC WRAPPER
   ══════════════════════════════════════════════ */
body.home2-page .h2-reviews-wrap {
	width: calc(100% - 64px);
	margin: 0 auto 64px;
	display: flex;
	flex-direction: column;
	gap: 0;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
body.home2-page .h2-reviews {
	padding: 40px 40px 28px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

body.home2-page .h2-reviews-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

body.home2-page .h2-review-card {
	background: #f7f7f5;
	border-radius: 14px;
	padding: 22px 20px 18px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	min-height: 220px;
}

body.home2-page .h2-review-gradient {
	background: linear-gradient(135deg, #fde8f0 0%, #e8f0fe 40%, #e6fde8 80%, #fefde8 100%);
}

body.home2-page .h2-review-label {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #888;
	text-transform: uppercase;
}

body.home2-page .h2-review-quote {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.92rem;
	font-weight: 600;
	color: #0a1e40;
	line-height: 1.45;
	margin: 0;
	flex: 1;
}

body.home2-page .h2-review-stars {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	color: #f5a623;
}

body.home2-page .h2-review-stars span {
	color: #0a1e40;
	font-weight: 600;
}

body.home2-page .h2-review-mark {
	position: absolute;
	bottom: 52px;
	right: 18px;
	font-size: 3rem;
	line-height: 1;
	color: rgba(0, 0, 0, 0.1);
	font-family: Georgia, serif;
	pointer-events: none;
}

body.home2-page .h2-reviewer {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
}

body.home2-page .h2-reviewer-img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

body.home2-page .h2-reviewer strong {
	display: block;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	color: #0a1e40;
}

body.home2-page .h2-reviewer span {
	display: block;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.7rem;
	color: #888;
}

/* Pager */
body.home2-page .h2-reviews-pager {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding-top: 20px;
}

body.home2-page .h2-pager-arrow {
	background: none;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	cursor: pointer;
	color: #0a1e40;
	transition: background 0.2s;
}

body.home2-page .h2-pager-arrow:hover {
	background: rgba(0, 0, 0, 0.06);
}

body.home2-page .h2-pager-label {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	color: #444;
	min-width: 48px;
	text-align: center;
}

/* ══════════════════════════════════════════════
   MOSAIC SECTION
   ══════════════════════════════════════════════ */
body.home2-page .h2-mosaic-wrap {
	padding: 56px 40px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

body.home2-page .h2-mosaic-heading {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.6rem, 3vw, 2.6rem);
	font-weight: 800;
	color: #0a1e40;
	text-align: center;
	line-height: 1.2;
	letter-spacing: -0.03em;
	margin: 0 0 20px;
}

body.home2-page .h2-mosaic-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	color: #f5a623;
	text-decoration: none;
	margin-bottom: 28px;
	transition: gap 0.2s;
}

body.home2-page .h2-mosaic-cta:hover {
	gap: 12px;
}

/* Bubble grid */
body.home2-page .h2-mosaic {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
}

body.home2-page .h2-bubble {
	position: absolute;
	left: var(--bx);
	top: var(--by);
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	background: #eee;
}

body.home2-page .h2-bubble img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

body.home2-page .h2-bubble--sm {
	width: 80px;
	height: 80px;
}

body.home2-page .h2-bubble--md {
	width: 110px;
	height: 110px;
}

body.home2-page .h2-bubble--lg {
	width: 140px;
	height: 140px;
}

body.home2-page .h2-bubble--xl {
	width: 180px;
	height: 180px;
}

body.home2-page .h2-bubble--prod img {
	object-fit: contain;
	padding: 12px;
	background: #f5f5f0;
}

/* ── Reviews + Mosaic responsive ── */
@media (max-width: 900px) {
	body.home2-page .h2-reviews-wrap {
		width: calc(100% - 32px);
	}

	body.home2-page .h2-reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	body.home2-page .h2-reviews,
	body.home2-page .h2-mosaic-wrap {
		padding-left: 24px;
		padding-right: 24px;
	}

	body.home2-page .h2-mosaic {
		height: 220px;
	}
}

@media (max-width: 560px) {
	body.home2-page .h2-reviews-grid {
		grid-template-columns: 1fr;
	}

	body.home2-page .h2-mosaic {
		height: 180px;
	}

	body.home2-page .h2-bubble--xl {
		width: 120px;
		height: 120px;
	}

	body.home2-page .h2-bubble--lg {
		width: 90px;
		height: 90px;
	}

	body.home2-page .h2-bubble--md {
		width: 70px;
		height: 70px;
	}

	body.home2-page .h2-bubble--sm {
		width: 55px;
		height: 55px;
	}
}

/* ══════════════════════════════════════════════
   SHOP BY CATEGORY SECTION
   ══════════════════════════════════════════════ */
body.home2-page .h2-cats-wrap {
	width: calc(100% - 64px);
	margin: 0 auto 72px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	padding: 48px 40px 44px;
}

body.home2-page .h2-cats-header {
	text-align: center;
	margin-bottom: 40px;
}

body.home2-page .h2-cats-eyebrow {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #f5a623;
	margin: 0 0 10px;
}

body.home2-page .h2-cats-heading {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.6rem, 3vw, 2.6rem);
	font-weight: 800;
	color: #0a1e40;
	letter-spacing: -0.03em;
	line-height: 1.2;
	margin: 0 0 10px;
}

body.home2-page .h2-cats-sub {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.92rem;
	font-weight: 400;
	color: #888;
	margin: 0;
	line-height: 1.5;
}

/* ── Card grid ── */
body.home2-page .h2-cats-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

/* ── Individual category card ── */
body.home2-page .h2-cat-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	padding: 16px 14px 16px 16px;
	border-radius: 14px;
	border: 0px;
	text-decoration: none;
	position: relative;
	transition: background 0.22s, border-color 0.22s, transform 0.18s, box-shadow 0.22s;
	cursor: pointer;
	overflow: hidden;
	background: linear-gradient(135deg, #fde8f0 0%, #e8f0fe 26%, #e6fde8 113%, #fefde8 100%);
}

body.home2-page .h2-cat-card:hover {
	background: #0a1e40;
	border-color: transparent;
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(10, 30, 64, 0.22);
}

/* Icon wrapper */
body.home2-page .h2-cat-icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.22s;
}

body.home2-page .h2-cat-card:hover .h2-cat-icon-wrap {
	background: rgba(255, 255, 255, 0.1);
}

body.home2-page .h2-cat-icon {
	width: 34px;
	height: 34px;
	object-fit: contain;
	display: block;
	/* dark icon on light card */
	filter: brightness(0) saturate(100%);
	transition: filter 0.22s;
}

body.home2-page .h2-cat-card:hover .h2-cat-icon {
	/* white icon on dark card */
	filter: brightness(0) invert(1);
}

/* Label — same row as icon, 2× prior size (was 0.8rem) */
body.home2-page .h2-cat-name {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #0a1e40;
	line-height: 1.25;
	transition: color 0.22s;
	flex: 1;
	min-width: 0;
}

body.home2-page .h2-cat-card:hover .h2-cat-name {
	color: #fff;
}

/* Arrow — inline end of row */
body.home2-page .h2-cat-arrow {
	position: static;
	margin-left: 4px;
	color: rgba(0, 0, 0, 0.2);
	transition: color 0.22s, transform 0.22s;
	flex-shrink: 0;
	align-self: center;
}

body.home2-page .h2-cat-card:hover .h2-cat-arrow {
	color: rgba(255, 255, 255, 0.5);
	transform: translate(2px, -2px);
}

/* Footer */
body.home2-page .h2-cats-footer {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}

body.home2-page .h2-cats-footer .h2-mosaic-cta {
	margin-bottom: 0;
}

/* ── Category responsive ── */
@media (max-width: 1100px) {
	body.home2-page .h2-cats-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 900px) {
	body.home2-page .h2-cats-wrap {
		width: calc(100% - 32px);
		padding: 36px 24px 36px;
	}

	body.home2-page .h2-cats-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	body.home2-page .h2-cats-wrap {
		width: calc(100% - 20px);
		border-radius: 14px;
		padding: 28px 14px 28px;
		margin-bottom: 48px;
	}

	body.home2-page .h2-cats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	body.home2-page .h2-cat-card {
		padding: 12px 10px 12px 12px;
		gap: 10px;
	}

	body.home2-page .h2-cat-icon-wrap {
		width: 44px;
		height: 44px;
		flex-shrink: 0;
	}

	body.home2-page .h2-cat-icon {
		width: 28px;
		height: 28px;
	}

	/* reset to readable size — 1.5rem was far too large in 2-col */
	body.home2-page .h2-cat-name {
		font-size: 0.88rem;
	}

	/* hide arrow on mobile to save space */
	body.home2-page .h2-cat-arrow {
		display: none;
	}

	/* reviews + mosaic */
	body.home2-page .h2-reviews-wrap {
		width: calc(100% - 20px);
	}

	body.home2-page .h2-reviews {
		padding: 24px 16px 18px;
	}

	body.home2-page .h2-mosaic-wrap {
		padding: 32px 16px 0;
	}

	body.home2-page .h2-mosaic-heading {
		font-size: clamp(1.25rem, 5vw, 1.8rem);
	}
}

@media (max-width: 430px) {
	body.home2-page .h2-cats-wrap {
		width: calc(100% - 12px);
		padding: 20px 10px 20px;
	}

	body.home2-page .h2-cats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 6px;
	}

	body.home2-page .h2-cat-name {
		font-size: 0.8rem;
	}

	body.home2-page .h2-cat-icon-wrap {
		width: 36px;
		height: 36px;
	}

	body.home2-page .h2-cat-icon {
		width: 22px;
		height: 22px;
	}
}

/* ══════════════════════════════════════════════
   WEBINAR CAROUSEL  — 1:1 ARG structure
   ══════════════════════════════════════════════ */

/* ── Section wrapper ── */
body.home2-page .h2-webinar-section {
	margin: 0 0 72px;
	padding: 0;
}

body.home2-page .h2-wc-inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 56px 40px 64px;
}

/* ── Header row: "Webinars" + "See all →" ── */
body.home2-page .h2-wc-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
}

body.home2-page .h2-wc-heading {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.6rem, 3vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #0a1e40;
	margin: 0;
}

body.home2-page .h2-wc-see-all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.88rem;
	font-weight: 600;
	color: #484d55;
	text-decoration: none;
	text-underline-offset: 3px;
	transition: gap 0.2s;
}

body.home2-page .h2-wc-see-all:hover {
	gap: 10px;
	text-decoration: underline;
}

/* ── Scroll wrapper + prev/next controls ── */
body.home2-page .h2-wc-scroll-wrap {
	position: relative;
}

body.home2-page .h2-wc-list {
	display: grid;
	grid: auto / auto-flow 88vw;
	gap: var(--grid-gutter, 20px);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 4px;
}

body.home2-page .h2-wc-list::-webkit-scrollbar {
	display: none;
}

@media screen and (min-width: 700px) {
	body.home2-page .h2-wc-list {
		grid: auto / auto-flow 48vw;
	}
}

@media screen and (min-width: 1000px) {
	body.home2-page .h2-wc-list {
		grid: auto / auto-flow 28vw;
	}
}

@media screen and (min-width: 1150px) {
	body.home2-page .h2-wc-list {
		/* 4 cards: subtract 3 gaps from full width, divide by 4 */
		grid: auto / auto-flow calc((100% - 3 * var(--grid-gutter, 20px)) / 4);
		overflow-x: visible;
	}
}

/* ── Card ── */
body.home2-page .h2-wc-card {
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 6px;
	background: #0a1e40;
	color: #fff;
}

/* ── Card top: left text / right photo ── */
body.home2-page .h2-wc-card__top {
	display: flex;
	align-items: stretch;
	min-height: 200px;
}

body.home2-page .h2-wc-card__top-left {
	flex: 1 1 55%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5em;
	gap: 0.15em;
}

body.home2-page .h2-wc-card__label {
	margin-bottom: auto;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #e8665a;
}

body.home2-page .h2-wc-card__name {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.3;
}

body.home2-page .h2-wc-card__cred {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.82rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

body.home2-page .h2-wc-card__top-right {
	flex: 0 0 45%;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
}

/* Portrait photo — NOT circular, bleeds to edge like ARG */
body.home2-page .h2-wc-card__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    right: -87px;
    position: relative;
}

/* ── Card body: title + date + button ── */
body.home2-page .h2-wc-card__body {
	padding: 1.25em 1.5em 1.75em;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

body.home2-page .h2-wc-card__title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.18rem;
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
	margin: 0 0 0.4em;
	flex-grow: 1;
}

body.home2-page .h2-wc-card__date {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 1.25em;
}

/* Pill outline button — white border on dark bg */
body.home2-page .h2-wc-card__btn {
	display: inline-block;
	align-self: flex-start;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.88rem;
	font-weight: 600;
	padding: 0.6em 1.5em;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 2em;
	color: #fff;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease;
}

body.home2-page .h2-wc-card__btn:hover {
	background: #0a1e40;
	border-color: #fff;
}

/* ── Prev / Next controls ── */
body.home2-page .h2-wc-ctrl {
	display: none; /* shown at ≥700px only */
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid rgba(0, 0, 0, 0.12);
	background: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	color: #0a1e40;
	font-size: 1.5rem;
	line-height: 1;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
}

body.home2-page .h2-wc-ctrl:hover:not(:disabled) {
	background: #f5f5f5;
	transform: translateY(-50%) scale(1.06);
}

body.home2-page .h2-wc-ctrl:disabled {
	opacity: 0.3;
	cursor: default;
	transform: translateY(-50%);
}

body.home2-page .h2-wc-ctrl--prev {
	left: -22px;
}

body.home2-page .h2-wc-ctrl--next {
	right: -22px;
}

/* ── Responsive ── */
@media screen and (min-width: 700px) {
	body.home2-page .h2-wc-ctrl {
		display: flex;
	}
}

@media (max-width: 1100px) {
	body.home2-page .h2-wc-inner {
		padding: 40px 32px 52px;
	}
}

@media (max-width: 700px) {
	body.home2-page .h2-wc-inner {
		padding: 32px 20px 40px;
	}

	body.home2-page .h2-wc-heading {
		font-size: 1.5rem;
	}

	body.home2-page .h2-wc-card__top {
		min-height: 160px;
	}

	body.home2-page .h2-wc-card__title {
		font-size: 1rem;
	}

	body.home2-page .h2-webinar-section {
		margin-bottom: 48px;
	}
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
body.home2-page .h2-footer {
	background: #0a1e40;
	color: rgba(255, 255, 255, 0.75);
	font-family: 'Plus Jakarta Sans', sans-serif;
	border-radius: 20px 20px 0 0;
	margin: 0 32px 0;
	overflow: hidden;
}

/* ── Main grid: brand | quick links | site links ── */
body.home2-page .h2-footer__main {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 48px;
	padding: 56px 52px 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand column */
body.home2-page .h2-footer__logo-link {
	display: inline-block;
	margin-bottom: 20px;
}

body.home2-page .h2-footer__logo {
	height: 52px;
	width: auto;
	object-fit: contain;
	display: block;
}

body.home2-page .h2-footer__tagline {
	font-size: 0.86rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
	max-width: 360px;
}

/* Link columns */
body.home2-page .h2-footer__col-heading {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #e66f63;
	margin: 0 0 18px;
}

body.home2-page .h2-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.home2-page .h2-footer__links a {
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color 0.2s;
}

body.home2-page .h2-footer__links a:hover {
	color: #fff;
}

/* Disclaimer */
body.home2-page .h2-footer__disclaimer {
	font-size: 0.72rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.35);
	text-align: center;
	padding: 18px 52px;
	margin: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	line-height: 1.6;
}

/* ── Bottom bar: copyright | trust | payments ── */
body.home2-page .h2-footer__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 52px;
	background: rgba(255, 255, 255, 0.04);
	flex-wrap: wrap;
}

body.home2-page .h2-footer__copy {
	font-size: 0.78rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.45);
}

body.home2-page .h2-footer__trust {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 0.78rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 100px;
	padding: 6px 14px 6px 10px;
}

body.home2-page .h2-footer__trust svg {
	flex-shrink: 0;
	color: #e66f63;
}

body.home2-page .h2-footer__payments {
	display: flex;
	align-items: center;
	gap: 10px;
}

body.home2-page .h2-footer__pay-icon {
	height: 22px;
	width: auto;
	color: rgba(255, 255, 255, 0.6);
	opacity: 0.75;
}

/* ── Footer responsive ── */
@media (max-width: 900px) {
	body.home2-page .h2-footer {
		margin: 0 16px 0;
	}

	body.home2-page .h2-footer__main {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
		padding: 40px 32px 36px;
	}

	body.home2-page .h2-footer__brand {
		grid-column: 1 / -1;
	}

	body.home2-page .h2-footer__disclaimer,
	body.home2-page .h2-footer__bar {
		padding-left: 32px;
		padding-right: 32px;
	}
}

@media (max-width: 600px) {
	body.home2-page .h2-footer {
		margin: 0;
		border-radius: 0;
	}

	body.home2-page .h2-footer__main {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 32px 20px 28px;
	}

	body.home2-page .h2-footer__brand {
		grid-column: 1;
	}

	body.home2-page .h2-footer__disclaimer {
		padding: 16px 20px;
	}

	body.home2-page .h2-footer__bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding: 16px 20px;
	}
}