/* ==========================================================================
   Laraib Organic — home-b.css
   Owns four front-page sections, in page order:

     1. .lo-ing       ingredients   — dark, circular macro portraits carousel
     2. .lo-cta       banner        — full-bleed parallax delivery CTA
     3. .lo-arrivals  new arrivals  — gold promo card + WooCommerce product grid
     4. .lo-process   process       — 4-step field-to-family timeline

   Rules obeyed: every colour is a --lo-* token (alpha-only rgba() on pure
   white/black is used the same way tokens.css and components.css already do),
   rhythm comes from --lo-s* / --lo-section-y, all classes are lo- prefixed.
   Breakpoints: 1200 / 1024 / 860 / 620 / 430.
   ========================================================================== */


/* ==========================================================================
   1. INGREDIENTS — "Seven ingredients we refuse to compromise on"
   ========================================================================== */

.lo-ing {
	overflow: hidden;
}

/* Warm radial glow sitting behind the portrait row. */
.lo-ing .lo-ing__glow {
	--lo-orn-color: var(--lo-gold-500);
	--lo-orn-opacity: .2;
	top: 56%;
	left: 50%;
	width: min(1180px, 132%);
	height: 460px;
	transform: translate(-50%, -50%);
	filter: blur(90px);
}

/* Low-opacity leaf watermark, top-right. */
.lo-ing .lo-ing__leaf {
	--lo-orn-opacity: .1;
	top: clamp(8px, 3vw, 46px);
	right: calc(var(--lo-gutter) * -0.6);
	transform: rotate(24deg);
}

.lo-ing__head {
	max-width: 800px;
	margin-bottom: var(--lo-s9);
}

/* --- the row ------------------------------------------------------------ */

.lo-ing__car {
	--lo-car-fade: 120px;
}

.lo-ing__track {
	gap: var(--lo-s6);
	align-items: flex-start;
	padding-bottom: var(--lo-s5);
}

.lo-ing__track > .lo-ing__item {
	flex: 0 0 clamp(212px, 20vw, 264px);
	text-align: center;
}

/* --- circular portrait + the ring that draws on hover -------------------- */

.lo-ing__portrait {
	position: relative;
	width: clamp(144px, 15vw, 188px);
	aspect-ratio: 1 / 1;
	margin: 0 auto var(--lo-s5);
}

.lo-ing__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0 22px 44px -20px rgba(0, 0, 0, .75);
	transition: transform .7s var(--lo-ease-out), filter .5s var(--lo-ease);
	filter: saturate(.94);
}

.lo-ing__ring {
	position: absolute;
	top: -13px;
	left: -13px;
	width: calc(100% + 26px);
	height: calc(100% + 26px);
	max-width: none;
	overflow: visible;
	pointer-events: none;
}

.lo-ing__ring circle {
	fill: none;
	stroke-width: 1.6;
}

.lo-ing__ring-base {
	stroke: var(--lo-gold-500);
	opacity: .24;
}

/* r = 60 → circumference ≈ 377 */
.lo-ing__ring-draw {
	stroke: var(--lo-gold-400);
	stroke-linecap: round;
	stroke-dasharray: 377;
	stroke-dashoffset: 377;
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
	transition: stroke-dashoffset 1s var(--lo-ease-out);
}

.lo-ing__item:hover .lo-ing__ring-draw,
.lo-ing__item:focus-within .lo-ing__ring-draw {
	stroke-dashoffset: 0;
}

.lo-ing__item:hover .lo-ing__portrait img,
.lo-ing__item:focus-within .lo-ing__portrait img {
	transform: scale(1.05);
	filter: saturate(1.06);
}

/* --- names + note -------------------------------------------------------- */

.lo-ing__name {
	margin: 0 0 6px;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--lo-paper);
}

.lo-ing__ur {
	display: block;
	margin-bottom: var(--lo-s3);
	font-size: var(--lo-fs-xs);
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--lo-gold-400);
}

.lo-ing__note {
	position: relative;
	margin: 0;
	padding-top: var(--lo-s4);
	font-size: var(--lo-fs-sm);
	line-height: 1.68;
	color: rgba(255, 255, 255, .6);
}

.lo-ing__note::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 26px;
	height: 1px;
	transform: translateX(-50%);
	background: var(--lo-gold-500);
	opacity: .5;
	transition: width .5s var(--lo-ease-out), opacity .5s var(--lo-ease);
}

.lo-ing__item:hover .lo-ing__note::before {
	width: 54px;
	opacity: 1;
}

/* --- nav + footnote ------------------------------------------------------ */

.lo-ing__nav {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: var(--lo-s2);
}

.lo-ing__foot {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--lo-s3);
	max-width: 720px;
	margin: var(--lo-s8) auto 0;
	padding-top: var(--lo-s6);
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-size: var(--lo-fs-sm);
	line-height: 1.6;
	color: rgba(255, 255, 255, .58);
	text-align: center;
}

.lo-ing__foot svg {
	color: var(--lo-gold-400);
}


/* ==========================================================================
   2. BANNER — full-bleed delivery CTA over a parallax photograph
   ========================================================================== */

.lo-cta {
	--lo-section-y: clamp(96px, 12vw, 180px);
	position: relative;
	overflow: hidden;
	isolation: isolate;
	text-align: center;
}

.lo-cta__bg {
	position: absolute;
	inset: -18% 0;
	z-index: 0;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	will-change: transform;
}

.lo-cta__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: var(--lo-green-950);
	opacity: .78;
}

@supports (background: color-mix(in srgb, white 50%, transparent)) {
	.lo-cta__veil {
		opacity: 1;
		background:
			radial-gradient(90% 70% at 50% 42%,
				color-mix(in srgb, var(--lo-green-900) 52%, transparent) 0%,
				color-mix(in srgb, var(--lo-green-950) 88%, transparent) 100%),
			linear-gradient(180deg,
				color-mix(in srgb, var(--lo-green-950) 80%, transparent) 0%,
				color-mix(in srgb, var(--lo-green-950) 62%, transparent) 42%,
				color-mix(in srgb, var(--lo-green-950) 92%, transparent) 100%);
	}
}

/* Hairline gold frame — a small piece of couture that costs nothing. */
.lo-cta__veil::after {
	content: "";
	position: absolute;
	inset: clamp(14px, 2vw, 30px);
	border: 1px solid var(--lo-gold-500);
	border-radius: var(--lo-r-lg);
	opacity: .26;
	pointer-events: none;
}

.lo-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 880px;
	margin-inline: auto;
}

.lo-cta__head {
	max-width: none;
	margin-bottom: var(--lo-s7);
}

.lo-cta__head h2 {
	font-size: var(--lo-fs-4xl);
	line-height: 1.06;
	text-shadow: 0 3px 26px var(--lo-green-950);
}

.lo-cta__head p {
	max-width: 660px;
	margin-inline: auto;
	color: rgba(255, 255, 255, .82);
	text-shadow: 0 2px 18px var(--lo-green-950);
}

.lo-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--lo-s4);
}

.lo-cta__points {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--lo-s4) var(--lo-s7);
	margin: var(--lo-s8) 0 0;
	padding: var(--lo-s6) 0 0;
	border-top: 1px solid rgba(255, 255, 255, .16);
	list-style: none;
}

.lo-cta__points li {
	display: flex;
	align-items: center;
	gap: var(--lo-s3);
	margin: 0;
	font-size: var(--lo-fs-sm);
	font-weight: 600;
	letter-spacing: .01em;
	color: rgba(255, 255, 255, .84);
}

.lo-cta__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border: 1px solid var(--lo-gold-500);
	border-radius: 50%;
	color: var(--lo-gold-400);
	background: rgba(255, 255, 255, .06);
}


/* ==========================================================================
   3. NEW ARRIVALS — gold promo card + product grid
   ========================================================================== */

/* `clip` rather than `hidden`: it still contains the ornament, but it does not
   create a scroll container, so the sticky promo card below keeps working. */
.lo-arrivals {
	overflow: clip;
}

.lo-arrivals .lo-arrivals__glow {
	top: -160px;
	right: calc(var(--lo-gutter) * -1);
}

.lo-arrivals__head {
	max-width: 760px;
}

.lo-arrivals__layout {
	display: grid;
	grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
	gap: var(--lo-s6);
	align-items: start;
}

/* --- the tall gold promo card ------------------------------------------- */

.lo-promo {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: clamp(26px, 2.6vw, 40px);
	border-radius: var(--lo-r-xl);
	background: linear-gradient(158deg,
		var(--lo-gold-400) 0%,
		var(--lo-gold-500) 44%,
		var(--lo-gold-600) 100%);
	color: var(--lo-green-900);
	box-shadow: var(--lo-shadow-gold);
	transition: transform var(--lo-dur) var(--lo-ease-out), box-shadow var(--lo-dur) var(--lo-ease-out);
}

/* On a roomy desktop the card rides alongside the grid instead of leaving a
   tall empty slab of gold. Only when it is certain to fit above the fold. */
@media (min-width: 1025px) and (min-height: 900px) {
	.lo-promo {
		position: sticky;
		top: calc(var(--lo-header-h) + var(--lo-s5));
	}
}

.lo-promo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(78% 52% at 84% 4%, rgba(255, 255, 255, .42), transparent 62%);
	pointer-events: none;
}

.lo-promo:hover {
	transform: translateY(-5px);
	box-shadow: 0 34px 70px -24px rgba(140, 99, 24, .62);
}

.lo-promo__body {
	position: relative;
	z-index: 1;
}

.lo-promo__badge {
	display: inline-flex;
	align-items: center;
	margin-bottom: var(--lo-s5);
	padding: 6px 14px;
	border-radius: var(--lo-r-pill);
	background: var(--lo-green-950);
	color: var(--lo-gold-300);
	font-size: var(--lo-fs-xs);
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	line-height: 1.5;
}

.lo-promo__title {
	margin-bottom: var(--lo-s4);
	font-size: clamp(1.5rem, 1.1rem + 1.1vw, 2rem);
	line-height: 1.16;
	color: var(--lo-green-950);
}

.lo-promo__text {
	margin-bottom: var(--lo-s5);
	font-size: var(--lo-fs-base);
	line-height: 1.68;
	color: var(--lo-green-900);
}

.lo-promo__list {
	margin: 0 0 var(--lo-s6);
	padding: var(--lo-s5) 0 0;
	border-top: 1px solid rgba(6, 37, 28, .16);
	list-style: none;
}

.lo-promo__list li {
	display: flex;
	align-items: flex-start;
	gap: var(--lo-s3);
	margin-bottom: var(--lo-s3);
	font-size: var(--lo-fs-sm);
	font-weight: 600;
	line-height: 1.55;
	color: var(--lo-green-900);
}

.lo-promo__list li:last-child {
	margin-bottom: 0;
}

.lo-promo__list svg {
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	padding: 3px;
	margin-top: 1px;
	border-radius: 50%;
	background: var(--lo-green-900);
	color: var(--lo-gold-300);
	stroke-width: 2.4;
}

.lo-promo__btn {
	align-self: flex-start;
	background: var(--lo-green-950);
	box-shadow: 0 12px 26px -14px rgba(6, 37, 28, .9);
}

.lo-promo__btn:hover {
	background: var(--lo-green-800);
}

.lo-promo__shot {
	position: relative;
	z-index: 1;
	align-self: flex-end;
	width: clamp(140px, 64%, 214px);
	aspect-ratio: 1 / 1;
	margin-top: auto;
	overflow: hidden;
	border: 6px solid rgba(255, 255, 255, .42);
	border-radius: 50%;
	box-shadow: var(--lo-shadow-lg);
	transform: translate(18px, 22px);
}

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

.lo-promo:hover .lo-promo__shot img {
	transform: scale(1.07);
}

/* --- product grid -------------------------------------------------------- */

.lo-arrivals__grid {
	display: flex;
	flex-direction: column;
}

/* Layout only — the card interior belongs to shop.css. */
.lo-arrivals .lo-arrivals__grid ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--lo-s5);
	margin: 0;
	padding: 0;
	list-style: none;
}

.lo-arrivals .lo-arrivals__grid ul.products::before,
.lo-arrivals .lo-arrivals__grid ul.products::after {
	content: none;
}

.lo-arrivals .lo-arrivals__grid ul.products li.product {
	float: none;
	clear: none;
	width: auto;
	margin: 0;
	min-width: 0;
}

/* Baseline so an unstyled WooCommerce card still reads as a card here.
   Zero-specificity :where() plus :not(.lo-pcard) means it steps aside the
   moment shop.css ships a real card — it never fights the shop stylesheet. */
:where(.lo-arrivals__grid ul.products li.product:not(.lo-pcard)) {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: var(--lo-s4);
	border: 1px solid var(--lo-line-soft);
	border-radius: var(--lo-r-lg);
	background: var(--lo-surface);
	text-align: left;
}

:where(.lo-arrivals__grid ul.products li.product:not(.lo-pcard) img) {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: var(--lo-r);
	margin-bottom: var(--lo-s3);
}

:where(.lo-arrivals__grid ul.products li.product:not(.lo-pcard) .woocommerce-loop-product__title) {
	margin: 0;
	padding: 0;
	font-family: var(--lo-font-display);
	font-size: var(--lo-fs-md);
	font-weight: 600;
	line-height: 1.3;
	color: var(--lo-text);
}

:where(.lo-arrivals__grid ul.products li.product:not(.lo-pcard) .price) {
	font-weight: 700;
	color: var(--lo-green-800);
}

:where(.lo-arrivals__grid ul.products li.product:not(.lo-pcard) .button) {
	margin-top: auto;
	align-self: flex-start;
}

.lo-arrivals__more {
	margin: var(--lo-s6) 0 0;
	text-align: right;
}

/* --- empty state --------------------------------------------------------- */

.lo-arrivals__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 340px;
	padding: clamp(32px, 5vw, 64px);
	border: 1px dashed var(--lo-green-200);
	border-radius: var(--lo-r-xl);
	background: var(--lo-green-50);
	text-align: center;
}

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

.lo-arrivals__empty h3 {
	margin-bottom: var(--lo-s3);
	font-size: var(--lo-fs-2xl);
}

.lo-arrivals__empty p {
	max-width: 480px;
	margin-bottom: var(--lo-s6);
	font-size: var(--lo-fs-base);
}


/* ==========================================================================
   4. PROCESS — "From our fields to your family"
   ========================================================================== */

.lo-process {
	background: var(--lo-paper);
	overflow: hidden;
}

.lo-process .lo-process__leaf {
	--lo-orn-opacity: .05;
	top: clamp(10px, 3vw, 52px);
	right: calc(var(--lo-gutter) * -0.5);
}

.lo-process__head {
	max-width: 780px;
}

.lo-process__steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--lo-s6);
	margin: 0;
	padding: 0;
	list-style: none;
}

.lo-process__step {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--lo-s5);
	margin: 0;
}

.lo-process__shot {
	aspect-ratio: 4 / 3;
	border-radius: var(--lo-r-lg);
	box-shadow: var(--lo-shadow-sm);
	transition: box-shadow var(--lo-dur) var(--lo-ease-out), transform var(--lo-dur) var(--lo-ease-out);
}

.lo-process__step:hover .lo-process__shot {
	transform: translateY(-4px);
	box-shadow: var(--lo-shadow-lg);
}

.lo-process__step:hover .lo-process__shot img {
	transform: scale(1.06);
}

/* --- number chip + the dashed gold line ---------------------------------- */

.lo-process__marker {
	display: flex;
	align-items: center;
	gap: var(--lo-s3);
}

.lo-process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 72px;
	height: 72px;
	border: 1px solid var(--lo-line);
	border-radius: 50%;
	background: var(--lo-paper);
	font-family: var(--lo-font-display);
	font-size: 1.55rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -.02em;
	color: var(--lo-gold-300);
	transition: transform .32s var(--lo-ease-out), border-color .32s var(--lo-ease),
		background-color .32s var(--lo-ease), box-shadow .32s var(--lo-ease-out);
}

@supports (-webkit-text-stroke: 1px currentColor) {
	.lo-process__num {
		color: transparent;
		-webkit-text-stroke: 1.4px var(--lo-gold-500);
	}

	.lo-process__step:hover .lo-process__num {
		-webkit-text-stroke-color: var(--lo-gold-700);
	}
}

.lo-process__step:hover .lo-process__num {
	transform: translateY(-3px);
	border-color: var(--lo-gold-400);
	background: var(--lo-gold-100);
	box-shadow: var(--lo-shadow-gold);
}

.lo-process__wire {
	flex: 1 1 auto;
	min-width: 0;
	height: 0;
	margin-right: calc(var(--lo-s6) * -1);
	border-top: 2px dashed var(--lo-gold-300);
}

.lo-process__step:last-child .lo-process__wire {
	margin-right: 0;
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

/* --- copy ---------------------------------------------------------------- */

.lo-process__body {
	min-width: 0;
}

.lo-process__title {
	margin-bottom: var(--lo-s2);
	font-size: clamp(1.15rem, .9rem + .6vw, 1.4rem);
	line-height: 1.24;
}

.lo-process__text {
	margin: 0;
	font-size: var(--lo-fs-base);
	line-height: 1.7;
	color: var(--lo-text-soft);
}

/* --- footer row ---------------------------------------------------------- */

.lo-process__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--lo-s4) var(--lo-s6);
	margin-top: var(--lo-s9);
	padding-top: var(--lo-s6);
	border-top: 1px solid var(--lo-line);
}

.lo-process__trace {
	display: flex;
	align-items: center;
	gap: var(--lo-s3);
	margin: 0;
	font-size: var(--lo-fs-base);
	font-weight: 600;
	color: var(--lo-green-900);
}

.lo-process__trace-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--lo-green-50);
	color: var(--lo-green-600);
}


/* ==========================================================================
   5. Responsive
   ========================================================================== */

@media (max-width: 1200px) {
	.lo-arrivals__layout {
		grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
		gap: var(--lo-s5);
	}

	.lo-arrivals .lo-arrivals__grid ul.products {
		gap: var(--lo-s4);
	}

	.lo-process__num {
		width: 64px;
		height: 64px;
		font-size: 1.4rem;
	}
}

@media (max-width: 1024px) {
	.lo-ing__head {
		margin-bottom: var(--lo-s8);
	}

	/* Promo card moves above the grid and lies down. */
	.lo-arrivals__layout {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--lo-s7);
	}

	.lo-promo {
		flex-direction: row;
		align-items: flex-end;
		gap: var(--lo-s6);
	}

	.lo-promo__body {
		flex: 1 1 auto;
		min-width: 0;
	}

	.lo-promo__shot {
		flex: 0 0 clamp(130px, 22vw, 200px);
		width: clamp(130px, 22vw, 200px);
		margin-top: 0;
		transform: translate(14px, 18px);
	}

	.lo-process__steps {
		gap: var(--lo-s5);
	}

	.lo-process__num {
		width: 56px;
		height: 56px;
		font-size: 1.25rem;
	}

	.lo-process__text {
		font-size: var(--lo-fs-sm);
	}

	.lo-process__wire {
		margin-right: calc(var(--lo-s5) * -1);
	}
}

@media (max-width: 860px) {
	/* --- ingredients: tighter cards --- */
	.lo-ing__track {
		gap: var(--lo-s5);
	}

	.lo-ing__track > .lo-ing__item {
		flex: 0 0 clamp(196px, 46vw, 236px);
	}

	/* --- banner --- */
	.lo-cta__points {
		gap: var(--lo-s4) var(--lo-s6);
	}

	/* --- process becomes a vertical timeline with the line on the left --- */
	.lo-process__steps {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--lo-s8);
	}

	.lo-process__step {
		display: grid;
		grid-template-columns: 64px minmax(0, 1fr);
		column-gap: var(--lo-s5);
		row-gap: var(--lo-s4);
		align-items: start;
	}

	.lo-process__step::before {
		content: "";
		position: absolute;
		top: 76px;
		bottom: calc(var(--lo-s8) * -1);
		left: 31px;
		width: 0;
		border-left: 2px dashed var(--lo-gold-300);
	}

	.lo-process__step:last-child::before {
		display: none;
	}

	.lo-process__marker {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.lo-process__num {
		width: 64px;
		height: 64px;
		font-size: 1.35rem;
	}

	.lo-process__wire {
		display: none;
	}

	.lo-process__body {
		grid-column: 2;
		grid-row: 1;
		padding-top: var(--lo-s2);
	}

	.lo-process__shot {
		grid-column: 2;
		grid-row: 2;
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 620px) {
	/* --- ingredients --- */
	.lo-ing__track > .lo-ing__item {
		flex: 0 0 min(230px, 68vw);
	}

	.lo-ing__portrait {
		width: 140px;
	}

	.lo-ing .lo-ing__glow {
		height: 340px;
		filter: blur(70px);
	}

	/* --- banner --- */
	.lo-cta__points {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--lo-s4);
		max-width: 340px;
		margin-inline: auto;
		text-align: left;
	}

	/* --- arrivals --- */
	.lo-arrivals .lo-arrivals__grid ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--lo-s4);
	}

	/* Keep two shoppable columns from overflowing on a 375px screen. */
	.lo-arrivals__grid ul.products li.product .button,
	.lo-arrivals__grid ul.products li.product .lo-btn {
		padding: 12px 18px;
		font-size: var(--lo-fs-sm);
	}

	.lo-promo {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.lo-promo__shot {
		align-self: flex-end;
		flex: 0 0 auto;
		width: clamp(120px, 40vw, 168px);
		margin-top: var(--lo-s5);
	}

	.lo-arrivals__more {
		text-align: left;
	}

	/* --- process --- */
	.lo-process__foot {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 430px) {
	.lo-ing__track > .lo-ing__item {
		flex: 0 0 min(216px, 76vw);
	}

	.lo-cta__actions {
		flex-direction: column;
	}

	.lo-cta__actions .lo-btn {
		width: 100%;
	}

	.lo-cta__veil::after {
		inset: 10px;
	}

	.lo-arrivals .lo-arrivals__grid ul.products {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--lo-s5);
	}

	.lo-process__step {
		grid-template-columns: 52px minmax(0, 1fr);
		column-gap: var(--lo-s4);
	}

	.lo-process__step::before {
		top: 62px;
		left: 25px;
	}

	.lo-process__num {
		width: 52px;
		height: 52px;
		font-size: 1.15rem;
	}
}
