/* ==========================================================================
   Laraib Organic — home-a.css
   Owns the first five home sections:
     1. HERO         .lo-hero        full-bleed 4-slide slider  (no background)
     2. TRUST        .lo-trust       white card, overlaps the hero on desktop
     3. CATEGORIES   .lo-cats        cream, asymmetric editorial tile grid
     4. FEATURED     .lo-featured    white, best-seller carousel
     5. PROMISE      .lo-promise     mint, image cluster + four commitments

   RULES OBEYED
   • Colours only from --lo-* tokens (white glass surfaces use rgba(255,255,255,…)
     exactly as tokens.css/components.css already do for dark sections).
   • Rhythm from --lo-s1…--lo-s11 / --lo-section-y.
   • JS hooks untouched: [data-lo-hero], [data-lo-carousel], .lo-reveal.
   • Breakpoints: 1200 · 1024 · 860 · 620 · 430.
   ========================================================================== */


/* ==========================================================================
   1. HERO
   ========================================================================== */

.lo-hero {
	--lo-hero-h: min(88vh, 820px);
	--lo-hero-ui: clamp(126px, 15vh, 178px);

	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--lo-green-950);
	color: var(--lo-paper);
}

/* --- stage: every slide shares one grid cell, so the tallest sets the height */
.lo-hero__stage { display: grid; }

.lo-hero__slide {
	grid-area: 1 / 1;
	position: relative;
	display: flex;
	align-items: center;
	min-height: var(--lo-hero-h);
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	transition: opacity .9s var(--lo-ease-out), visibility 0s linear .9s;
}

.lo-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 3;
	transition: opacity .9s var(--lo-ease-out), visibility 0s;
}

.lo-hero__slide.is-leaving {
	opacity: 0;
	visibility: visible;
	z-index: 2;
}

/* Slider never initialises without JS — keep the first slide readable. */
.no-js .lo-hero__slide:first-child { opacity: 1; visibility: visible; z-index: 3; }

/* --- photography + slow Ken-Burns drift --------------------------------- */
.lo-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	transform: scale(1.04);
	will-change: transform;
}

.lo-hero__slide.is-active .lo-hero__media {
	animation: lo-hero-kb 12s var(--lo-ease-out) forwards;
}

@keyframes lo-hero-kb {
	from { transform: scale(1.04) translate3d(0, 0, 0); }
	to   { transform: scale(1.17) translate3d(-1.4%, -1.2%, 0); }
}

/* --- green veil so white type always clears 4.5:1 ----------------------- */
.lo-hero__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(100deg,
			color-mix(in srgb, var(--lo-green-950) 90%, transparent) 0%,
			color-mix(in srgb, var(--lo-green-950) 72%, transparent) 34%,
			color-mix(in srgb, var(--lo-green-900) 34%, transparent) 62%,
			color-mix(in srgb, var(--lo-green-900) 6%, transparent) 100%),
		linear-gradient(to top,
			color-mix(in srgb, var(--lo-green-950) 74%, transparent) 0%,
			color-mix(in srgb, var(--lo-green-950) 18%, transparent) 34%,
			transparent 62%);
}

/* --- copy --------------------------------------------------------------- */
.lo-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-block: clamp(var(--lo-s8), 10vh, 120px) var(--lo-hero-ui);
}

.lo-hero__content { max-width: 680px; }

/* Staggered entrance driven purely by .is-active — no extra JS. */
.lo-hero__content > * {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .9s var(--lo-ease-out), transform .9s var(--lo-ease-out);
}
.lo-hero__slide.is-active .lo-hero__content > * { opacity: 1; transform: none; }
.lo-hero__slide.is-active .lo-hero__eyebrow { transition-delay: .16s; }
.lo-hero__slide.is-active .lo-hero__title   { transition-delay: .26s; }
.lo-hero__slide.is-active .lo-hero__lede    { transition-delay: .36s; }
.lo-hero__slide.is-active .lo-hero__actions { transition-delay: .46s; }
.lo-hero__slide.is-active .lo-hero__trust   { transition-delay: .56s; }
.no-js .lo-hero__content > * { opacity: 1; transform: none; }

.lo-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	margin-bottom: var(--lo-s5);
	border: 1px solid rgba(255, 255, 255, .26);
	border-radius: var(--lo-r-pill);
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--lo-gold-300);
	font-size: var(--lo-fs-xs);
	font-weight: 700;
	letter-spacing: .18em;
	line-height: 1.5;
	text-transform: uppercase;
}

.lo-hero__title {
	max-width: 17ch;
	margin-bottom: var(--lo-s5);
	color: var(--lo-paper);
	font-size: var(--lo-fs-4xl);
	font-weight: 600;
	line-height: var(--lo-lh-tight);
	letter-spacing: -0.02em;
	text-shadow: 0 3px 30px rgba(6, 37, 28, .45);
	text-wrap: balance;
}

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

.lo-hero__lede {
	max-width: 54ch;
	margin-bottom: var(--lo-s7);
	color: rgba(255, 255, 255, .88);
	font-size: clamp(1rem, .92rem + .38vw, 1.2rem);
	line-height: 1.62;
	text-shadow: 0 2px 18px rgba(6, 37, 28, .4);
}

.lo-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--lo-s4);
	margin-bottom: var(--lo-s7);
}

.lo-hero__actions .lo-btn svg { transition: transform .3s var(--lo-ease-out); }
.lo-hero__actions .lo-btn:hover svg { transform: translateX(4px); }

.lo-hero__trust {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--lo-s3) var(--lo-s6);
	margin: 0;
	padding: 0;
	list-style: none;
}

.lo-hero__trust li {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	color: rgba(255, 255, 255, .82);
	font-size: var(--lo-fs-sm);
	font-weight: 600;
	letter-spacing: .02em;
}

.lo-hero__trust svg {
	color: var(--lo-gold-400);
	stroke-width: 2.2;
}

/* --- bottom control bar: dots · scroll cue · arrows ---------------------- */
.lo-hero__ui {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	padding-bottom: clamp(22px, 3.4vh, 40px);
	pointer-events: none;
}

.lo-hero__ui-in {
	display: flex;
	align-items: flex-end;
	gap: var(--lo-s5);
}

.lo-hero__dots,
.lo-hero__arrows {
	display: flex;
	align-items: center;
	flex: 1 1 0;
	min-width: 0;
	pointer-events: auto;
}

.lo-hero__dots { gap: 2px; }
.lo-hero__arrows { gap: var(--lo-s3); justify-content: flex-end; }

.lo-hero__dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 34px;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
}

.lo-hero__dot span {
	display: block;
	width: 9px;
	height: 9px;
	border-radius: var(--lo-r-pill);
	background: rgba(255, 255, 255, .42);
	transition: width .4s var(--lo-ease-out), background-color .3s var(--lo-ease), transform .3s var(--lo-ease-out);
}

.lo-hero__dot:hover span { background: rgba(255, 255, 255, .85); transform: scale(1.18); }
.lo-hero__dot.is-active span { width: 32px; background: var(--lo-gold-400); transform: none; }

.lo-hero__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--lo-paper);
	cursor: pointer;
	transition: background-color .3s var(--lo-ease), border-color .3s var(--lo-ease),
		color .3s var(--lo-ease), transform .3s var(--lo-ease-out);
}

.lo-hero__arrow:hover {
	background: var(--lo-gold-500);
	border-color: var(--lo-gold-500);
	color: var(--lo-green-950);
	transform: translateY(-3px);
}

.lo-hero__arrow:active { transform: translateY(-1px); }

.lo-hero__cue {
	display: inline-flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding-bottom: 2px;
	color: rgba(255, 255, 255, .72);
	font-size: var(--lo-fs-xs);
	font-weight: 700;
	letter-spacing: .24em;
	text-transform: uppercase;
	pointer-events: auto;
	transition: color .3s var(--lo-ease);
}

.lo-hero__cue:hover { color: var(--lo-gold-300); }

.lo-hero__cue-line {
	position: relative;
	display: block;
	width: 1px;
	height: 38px;
	overflow: hidden;
	background: linear-gradient(to bottom, rgba(255, 255, 255, .45), rgba(255, 255, 255, 0));
}

.lo-hero__cue-line::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -14px;
	height: 14px;
	background: var(--lo-gold-400);
	animation: lo-hero-cue 2.1s var(--lo-ease) infinite;
}

@keyframes lo-hero-cue {
	0%   { transform: translateY(0);    opacity: 0; }
	25%  { opacity: 1; }
	100% { transform: translateY(52px); opacity: 0; }
}

/* --- autoplay progress -------------------------------------------------- */
.lo-hero__progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 6;
	height: 3px;
	background: rgba(255, 255, 255, .14);
}

.lo-hero__progress span {
	display: block;
	height: 100%;
	transform: scaleX(0);
	transform-origin: left center;
	background: linear-gradient(90deg, var(--lo-gold-600), var(--lo-gold-300));
}

@media (max-width: 1200px) {
	.lo-hero__title { max-width: 15ch; }
}

@media (max-width: 1024px) {
	.lo-hero {
		--lo-hero-h: min(84vh, 700px);
		--lo-hero-ui: clamp(120px, 14vh, 160px);
	}
	.lo-hero__content { max-width: 620px; }
	.lo-hero__veil {
		background:
			linear-gradient(100deg,
				color-mix(in srgb, var(--lo-green-950) 92%, transparent) 0%,
				color-mix(in srgb, var(--lo-green-950) 76%, transparent) 46%,
				color-mix(in srgb, var(--lo-green-900) 40%, transparent) 100%),
			linear-gradient(to top,
				color-mix(in srgb, var(--lo-green-950) 76%, transparent) 0%,
				transparent 58%);
	}
}

@media (max-width: 860px) {
	.lo-hero {
		--lo-hero-h: 600px;
		--lo-hero-ui: 128px;
	}
	.lo-hero__title { max-width: 18ch; }
	.lo-hero__lede { margin-bottom: var(--lo-s6); }
	.lo-hero__actions { margin-bottom: var(--lo-s6); }
	.lo-hero__cue { display: none; }
	.lo-hero__dots { flex: 1 1 auto; }
	.lo-hero__arrows { flex: 0 0 auto; }
}

@media (max-width: 620px) {
	.lo-hero {
		--lo-hero-h: 560px;
		--lo-hero-ui: 118px;
	}
	.lo-hero__inner { padding-block: var(--lo-s8) var(--lo-hero-ui); }
	.lo-hero__eyebrow { letter-spacing: .14em; padding: 7px 14px; }
	.lo-hero__title { max-width: none; }
	.lo-hero__lede { font-size: 1rem; }
	.lo-hero__trust { gap: var(--lo-s2) var(--lo-s5); }
	.lo-hero__trust li { font-size: var(--lo-fs-xs); }
	.lo-hero__arrow { width: 44px; height: 44px; }
}

@media (max-width: 430px) {
	.lo-hero { --lo-hero-ui: 112px; }
	.lo-hero__actions { gap: var(--lo-s3); }
	.lo-hero__actions .lo-btn--lg { padding: 15px 24px; font-size: var(--lo-fs-base); }
	.lo-hero__trust li:last-child { display: none; }
	.lo-hero__dot { width: 24px; }
	.lo-hero__dot.is-active span { width: 24px; }
}


/* ==========================================================================
   2. TRUST — white card lifted over the hero
   ========================================================================== */

.lo-trust {
	--lo-trust-lift: clamp(64px, 7vw, 104px);

	position: relative;
	z-index: 4;
	margin-top: calc(var(--lo-trust-lift) * -1);
	padding-block: 0 var(--lo-section-y);
	/* transparent where the card floats over the photograph, white beneath */
	background: linear-gradient(to bottom,
		transparent 0,
		transparent var(--lo-trust-lift),
		var(--lo-paper) var(--lo-trust-lift));
}

.lo-trust__card {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--lo-s1);
	margin: 0;
	padding: clamp(var(--lo-s4), 1.6vw, var(--lo-s6));
	list-style: none;
	background: var(--lo-surface);
	border: 1px solid var(--lo-line-soft);
	border-radius: var(--lo-r-xl);
	box-shadow: var(--lo-shadow-lg);
}

.lo-trust__item {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: var(--lo-s4);
	margin: 0;
	padding: var(--lo-s4) clamp(var(--lo-s3), 1.2vw, var(--lo-s5));
	border-radius: var(--lo-r);
	transition: background-color .34s var(--lo-ease);
}

.lo-trust__item + .lo-trust__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 16%;
	bottom: 16%;
	width: 1px;
	background: var(--lo-line-soft);
}

.lo-trust__item:hover { background: var(--lo-green-50); }

.lo-trust__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 54px;
	height: 54px;
	border: 1px solid var(--lo-green-100);
	border-radius: 17px;
	background: var(--lo-green-50);
	color: var(--lo-green-700);
	transition: background-color .34s var(--lo-ease), color .34s var(--lo-ease),
		border-color .34s var(--lo-ease), transform .4s var(--lo-ease-out);
}

.lo-trust__item:hover .lo-trust__ico {
	background: var(--lo-green-900);
	border-color: var(--lo-green-900);
	color: var(--lo-gold-300);
	transform: translateY(-4px) rotate(-6deg);
}

.lo-trust__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.lo-trust__label {
	font-family: var(--lo-font-display);
	font-size: var(--lo-fs-md);
	font-weight: 600;
	line-height: 1.25;
	color: var(--lo-ink);
	letter-spacing: -0.01em;
}

.lo-trust__text {
	font-size: var(--lo-fs-sm);
	line-height: 1.55;
	color: var(--lo-text-soft);
}

@media (max-width: 1024px) {
	.lo-trust__card { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--lo-s2); }
	.lo-trust__item + .lo-trust__item::before { display: none; }
	.lo-trust__item:nth-child(odd)::after {
		content: "";
		position: absolute;
		right: calc(var(--lo-s1) * -1);
		top: 14%;
		bottom: 14%;
		width: 1px;
		background: var(--lo-line-soft);
	}
}

/* Overlap is a desktop flourish only. */
@media (max-width: 860px) {
	.lo-trust {
		--lo-trust-lift: 0px;
		margin-top: 0;
		padding-block: var(--lo-section-y);
		background: var(--lo-paper);
	}
	.lo-trust__card { padding: var(--lo-s4); }
}

@media (max-width: 620px) {
	.lo-trust__card { grid-template-columns: minmax(0, 1fr); gap: 0; }
	.lo-trust__item:nth-child(odd)::after { display: none; }
	.lo-trust__item + .lo-trust__item {
		border-top: 1px solid var(--lo-line-soft);
		border-radius: 0;
	}
	.lo-trust__item { padding: var(--lo-s4) var(--lo-s3); }
	.lo-trust__ico { width: 48px; height: 48px; border-radius: 15px; }
}


/* ==========================================================================
   3. CATEGORIES — asymmetric editorial grid
   ========================================================================== */

.lo-cats { overflow: hidden; }

.lo-cats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(var(--lo-s3), 1.3vw, var(--lo-s5));
}

.lo-cat {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--lo-r-lg);
	background: var(--lo-green-900);
	box-shadow: var(--lo-shadow-sm);
	color: var(--lo-paper);
	isolation: isolate;
	transition: transform var(--lo-dur) var(--lo-ease-out), box-shadow var(--lo-dur) var(--lo-ease-out);
}

.lo-cat:hover,
.lo-cat:focus-visible {
	transform: translateY(-6px);
	box-shadow: var(--lo-shadow-lg);
	color: var(--lo-paper);
}

.lo-cat__media {
	display: block;
	aspect-ratio: 1 / 1;
	height: 100%;
	overflow: hidden;
}

.lo-cat__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .95s var(--lo-ease-out);
}

.lo-cat:hover .lo-cat__media img,
.lo-cat:focus-visible .lo-cat__media img { transform: scale(1.07); }

.lo-cat__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top,
		color-mix(in srgb, var(--lo-green-950) 94%, transparent) 0%,
		color-mix(in srgb, var(--lo-green-950) 62%, transparent) 30%,
		color-mix(in srgb, var(--lo-green-950) 12%, transparent) 62%,
		transparent 88%);
	transition: opacity .4s var(--lo-ease);
}

.lo-cat__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: clamp(var(--lo-s4), 1.5vw, var(--lo-s6));
	padding-right: 84px;
}

.lo-cat__meta {
	color: var(--lo-gold-300);
	font-size: var(--lo-fs-xs);
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.lo-cat__name {
	font-family: var(--lo-font-display);
	font-size: var(--lo-fs-lg);
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: -0.015em;
	color: var(--lo-paper);
	text-wrap: balance;
}

/* The blurb slides open on hover — always visible on the feature tile. */
.lo-cat__blurb {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	color: rgba(255, 255, 255, .78);
	font-size: var(--lo-fs-sm);
	line-height: 1.5;
	transition: max-height .5s var(--lo-ease-out), opacity .35s var(--lo-ease), margin-top .5s var(--lo-ease-out);
}

.lo-cat:hover .lo-cat__blurb,
.lo-cat:focus-visible .lo-cat__blurb,
.lo-cat--feature .lo-cat__blurb,
.lo-cat--all .lo-cat__blurb {
	max-height: 5.4em;
	opacity: 1;
	margin-top: 3px;
}

.lo-cat__go {
	position: absolute;
	right: clamp(var(--lo-s4), 1.5vw, var(--lo-s6));
	bottom: clamp(var(--lo-s4), 1.5vw, var(--lo-s6));
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: 50%;
	background: rgba(255, 255, 255, .13);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--lo-paper);
	transition: background-color .34s var(--lo-ease), border-color .34s var(--lo-ease),
		color .34s var(--lo-ease), transform .4s var(--lo-ease-out);
}

.lo-cat__go svg { transition: transform .4s var(--lo-ease-out); }

.lo-cat:hover .lo-cat__go,
.lo-cat:focus-visible .lo-cat__go {
	background: var(--lo-gold-500);
	border-color: var(--lo-gold-500);
	color: var(--lo-green-950);
	transform: translateX(5px);
}

.lo-cat:hover .lo-cat__go svg,
.lo-cat:focus-visible .lo-cat__go svg { transform: translateX(3px); }

.lo-cat__go--gold {
	background: var(--lo-gold-500);
	border-color: var(--lo-gold-500);
	color: var(--lo-green-950);
}

/* --- feature tile: two columns wide, two rows tall ---------------------- */
.lo-cat--feature { grid-column: span 2; grid-row: span 2; }
.lo-cat--feature .lo-cat__name { font-size: var(--lo-fs-2xl); }
.lo-cat--feature .lo-cat__blurb { font-size: var(--lo-fs-base); max-width: 46ch; }
.lo-cat--feature .lo-cat__go { width: 54px; height: 54px; }
.lo-cat--feature .lo-cat__body { padding-right: 100px; }

/* --- closing CTA tile: no photograph, deep green -------------------------- */
.lo-cat--all {
	grid-column: span 2;
	display: flex;
	align-items: flex-end;
	min-height: 188px;
	background:
		radial-gradient(120% 140% at 88% 6%, var(--lo-green-700) 0%, transparent 58%),
		linear-gradient(145deg, var(--lo-green-800) 0%, var(--lo-green-950) 72%);
	border: 1px solid rgba(255, 255, 255, .08);
}

.lo-cat--all .lo-cat__body { position: relative; width: 100%; padding-right: 104px; }
.lo-cat--all .lo-cat__name { font-size: var(--lo-fs-xl); }
.lo-cat--all .lo-ornament--leaf { z-index: 0; }

@media (max-width: 1200px) {
	.lo-cats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
	.lo-cats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lo-cat--feature { grid-row: span 1; }
	.lo-cat--feature .lo-cat__media { aspect-ratio: 16 / 10; }
	.lo-cat--feature .lo-cat__name { font-size: var(--lo-fs-xl); }
	.lo-cat__body { padding-right: 76px; }
	.lo-cat--feature .lo-cat__body,
	.lo-cat--all .lo-cat__body { padding-right: 84px; }
	.lo-cat__blurb { max-height: 5.4em; opacity: 1; margin-top: 3px; }
}

@media (max-width: 620px) {
	.lo-cats__grid { grid-template-columns: minmax(0, 1fr); gap: var(--lo-s4); }
	.lo-cat--feature,
	.lo-cat--all { grid-column: span 1; }
	.lo-cat__media { aspect-ratio: 4 / 3; }
	.lo-cat--feature .lo-cat__media { aspect-ratio: 4 / 3; }
	.lo-cat__name { font-size: var(--lo-fs-xl); }
	.lo-cat--feature .lo-cat__name { font-size: var(--lo-fs-xl); }
	.lo-cat--all { min-height: 170px; }
}

@media (max-width: 430px) {
	.lo-cat__go { width: 42px; height: 42px; }
	.lo-cat--feature .lo-cat__go { width: 42px; height: 42px; }
	.lo-cat__body { padding-right: 70px; }
	.lo-cat--feature .lo-cat__body,
	.lo-cat--all .lo-cat__body { padding-right: 72px; }
}


/* ==========================================================================
   4. FEATURED — best sellers carousel (white)
   ========================================================================== */

.lo-featured { background: var(--lo-surface); }

.lo-featured__tools {
	display: inline-flex;
	align-items: center;
	gap: clamp(var(--lo-s4), 2vw, var(--lo-s7));
	flex-shrink: 0;
	padding-bottom: 4px;
}

.lo-featured__all { white-space: nowrap; }

/* WooCommerce prints <ul class="products"> rules of its own — this file loads
   after shop.css, so the carousel layout wins without !important. */
.lo-featured .lo-carousel__track,
.lo-featured .lo-carousel__track.products {
	display: flex;
	grid-template-columns: none;
	margin: 0;
	padding: var(--lo-s2) var(--lo-s1) var(--lo-s6);
	list-style: none;
}

.lo-featured .lo-carousel__track > li,
.lo-featured .lo-carousel__track > li.product {
	flex: 0 0 auto;
	flex-basis: clamp(228px, 23vw, 292px);
	width: auto;
	margin: 0;
	float: none;
	clear: none;
	scroll-snap-align: start;
}

.lo-featured .lo-carousel__track > li::before { content: none; }

/* --- graceful empty catalogue ------------------------------------------- */
.lo-featured__blank {
	max-width: 640px;
	margin-inline: auto;
	padding: clamp(var(--lo-s7), 5vw, var(--lo-s9)) clamp(var(--lo-s5), 4vw, var(--lo-s8));
	border: 1px dashed var(--lo-line);
	border-radius: var(--lo-r-xl);
	background: var(--lo-green-50);
	text-align: center;
}

.lo-featured__blank-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: var(--lo-s5);
	border-radius: 50%;
	background: var(--lo-paper);
	border: 1px solid var(--lo-green-100);
	color: var(--lo-green-700);
	box-shadow: var(--lo-shadow-sm);
}

.lo-featured__blank h3 { margin-bottom: var(--lo-s3); font-size: var(--lo-fs-xl); }
.lo-featured__blank p { margin-bottom: var(--lo-s6); color: var(--lo-text-soft); }

@media (max-width: 860px) {
	.lo-featured .lo-carousel__head {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--lo-s5);
		margin-bottom: var(--lo-s6);
	}
	.lo-featured__tools {
		display: flex;
		width: 100%;
		justify-content: space-between;
		padding-bottom: 0;
	}
}

@media (max-width: 620px) {
	.lo-featured .lo-carousel__track > li,
	.lo-featured .lo-carousel__track > li.product { flex-basis: min(74vw, 280px); }
}


/* ==========================================================================
   5. PROMISE — mint split, image cluster + four commitments
   ========================================================================== */

.lo-promise { overflow: hidden; }

.lo-promise__split {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
	gap: clamp(var(--lo-s8), 6vw, var(--lo-s10));
	align-items: center;
}

/* --- left: composed image cluster --------------------------------------- */
.lo-promise__art {
	position: relative;
	padding-right: clamp(var(--lo-s5), 4vw, var(--lo-s8));
	padding-bottom: clamp(var(--lo-s8), 7vw, 96px);
}

.lo-promise__main {
	position: relative;
	z-index: 1;
	box-shadow: var(--lo-shadow-lg);
}

.lo-promise__inset {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	width: clamp(172px, 48%, 280px);
	border: 6px solid var(--lo-paper);
	box-shadow: var(--lo-shadow-lg);
}

.lo-promise__badge {
	position: absolute;
	z-index: 3;
	top: clamp(24px, 6%, 60px);
	left: calc(var(--lo-s5) * -1);
	display: flex;
	align-items: center;
	gap: var(--lo-s3);
	max-width: 232px;
	padding: 14px 20px;
	border-radius: var(--lo-r-lg);
	background: var(--lo-surface);
	box-shadow: var(--lo-shadow-lg);
	animation: lo-promise-float 7s ease-in-out infinite;
}

.lo-promise__badge strong {
	font-family: var(--lo-font-display);
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--lo-green-900);
}

.lo-promise__badge span {
	font-size: var(--lo-fs-xs);
	font-weight: 600;
	line-height: 1.4;
	color: var(--lo-text-soft);
}

@keyframes lo-promise-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-9px); }
}

/* --- right: the four commitments ---------------------------------------- */
.lo-promise__head { margin-bottom: var(--lo-s7); max-width: 560px; }

.lo-promise__list {
	display: grid;
	gap: var(--lo-s5);
	margin: 0 0 var(--lo-s8);
	padding: 0;
	list-style: none;
}

.lo-promise__point {
	display: flex;
	align-items: flex-start;
	gap: var(--lo-s5);
	margin: 0;
	padding-bottom: var(--lo-s5);
	border-bottom: 1px solid var(--lo-line-soft);
}

.lo-promise__point:last-child { padding-bottom: 0; border-bottom: 0; }

.lo-promise__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border: 1px solid var(--lo-gold-300);
	border-radius: 50%;
	background: var(--lo-surface);
	color: var(--lo-gold-600);
	font-family: var(--lo-font-display);
	font-size: var(--lo-fs-md);
	font-weight: 600;
	letter-spacing: .02em;
	transition: background-color .34s var(--lo-ease), color .34s var(--lo-ease),
		border-color .34s var(--lo-ease), transform .4s var(--lo-ease-out);
}

.lo-promise__point:hover .lo-promise__num {
	background: var(--lo-gold-500);
	border-color: var(--lo-gold-500);
	color: var(--lo-green-950);
	transform: translateY(-4px);
}

.lo-promise__point-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.lo-promise__point-title {
	font-family: var(--lo-font-display);
	font-size: var(--lo-fs-lg);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.015em;
	color: var(--lo-ink);
}

.lo-promise__point-text {
	font-size: var(--lo-fs-base);
	line-height: 1.68;
	color: var(--lo-text-soft);
}

.lo-promise__cta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--lo-s6);
}

.lo-promise__sign {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	padding-left: var(--lo-s6);
	border-left: 1px solid var(--lo-line);
}

.lo-promise__sign .lo-urdu {
	font-size: 1rem;
	line-height: 1.9;
	color: var(--lo-green-800);
}

.lo-promise__sign-en {
	font-family: var(--lo-font-display);
	font-size: var(--lo-fs-base);
	font-style: italic;
	color: var(--lo-muted);
}

@media (max-width: 1200px) {
	.lo-promise__split { gap: clamp(var(--lo-s7), 4vw, var(--lo-s9)); }
	.lo-promise__badge { max-width: 208px; padding: 12px 16px; }
	.lo-promise__badge strong { font-size: 2.1rem; }
}

/* Single column, photography first. */
@media (max-width: 1024px) {
	.lo-promise__split {
		grid-template-columns: minmax(0, 1fr);
		gap: clamp(var(--lo-s8), 8vw, var(--lo-s9));
	}
	/* `width:100%` is required: auto inline margins alone would drop the grid
	   item out of `stretch` and collapse it to its (percentage-sized) content. */
	.lo-promise__art {
		width: 100%;
		max-width: 560px;
		margin-inline: auto;
		padding-right: clamp(var(--lo-s6), 6vw, var(--lo-s8));
	}
	.lo-promise__badge { left: 0; }
	.lo-promise__head { max-width: none; }
}

@media (max-width: 620px) {
	.lo-promise__art { padding-right: var(--lo-s5); padding-bottom: var(--lo-s8); }
	.lo-promise__inset { width: 50%; border-width: 5px; }
	/* Badge moves to the top-left so it can never meet the bottom-right inset. */
	.lo-promise__badge {
		top: 16px;
		bottom: auto;
		left: 0;
		max-width: 176px;
		padding: 12px 16px;
		animation: none;
	}
	.lo-promise__badge strong { font-size: 1.95rem; }
	.lo-promise__point { gap: var(--lo-s4); }
	.lo-promise__num { width: 42px; height: 42px; font-size: var(--lo-fs-base); }
	.lo-promise__cta { gap: var(--lo-s5); }
	.lo-promise__sign { padding-left: 0; border-left: 0; }
}

@media (max-width: 430px) {
	.lo-promise__art { padding-bottom: var(--lo-s7); padding-right: var(--lo-s4); }
	.lo-promise__inset { width: 56%; }
	.lo-promise__badge { max-width: 152px; padding: 10px 13px; gap: var(--lo-s2); }
	.lo-promise__badge strong { font-size: 1.7rem; }
}
