/* ==========================================================================
   LifeOra — storefront styles
   Tokens -> layout -> header/nav -> homepage -> product -> app UI -> shop
   ========================================================================== */

:root {
	--lo-primary: #0E7C66;
	--lo-primary-dark: #0A5F4E;
	--lo-primary-soft: #E6F2EE;
	--lo-accent: #E24C3F;
	--lo-amber: #F5A524;
	--lo-ink: #101B1E;
	--lo-ink-60: #52605F;
	--lo-ink-40: #7C8887;
	--lo-line: #E2E8E6;
	--lo-mist: #F4F7F6;
	--lo-surface: #FFFFFF;
	--lo-cat: var(--lo-primary);

	--lo-radius-sm: 8px;
	--lo-radius: 14px;
	--lo-radius-lg: 22px;
	--lo-shadow: 0 1px 2px rgba(16, 27, 30, .04), 0 12px 30px -18px rgba(16, 27, 30, .35);
	--lo-shadow-lg: 0 30px 70px -40px rgba(16, 27, 30, .55);

	--lo-shell: 1320px;
	--lo-gap: 24px;

	--lo-font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--lo-font);
	font-size: 16px;
	line-height: 1.55;
	color: var(--lo-ink);
	background: var(--lo-mist);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.18; letter-spacing: -.015em; font-weight: 700; }
h1 { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 1.05rem + .9vw, 1.8rem); }

:focus-visible { outline: 2px solid var(--lo-primary); outline-offset: 2px; border-radius: 4px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.lo-skip {
	position: absolute; left: -9999px; top: 0; z-index: 1000;
	background: var(--lo-ink); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--lo-radius-sm) 0;
}
.lo-skip:focus { left: 0; }

.lo-shell { width: 100%; max-width: var(--lo-shell); margin: 0 auto; padding: 0 20px; }

/* Buttons ---------------------------------------------------------------- */

.lo-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 20px; border: 1px solid transparent; border-radius: 999px;
	font-weight: 600; font-size: .95rem; cursor: pointer;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.lo-btn--primary {
	background: linear-gradient(180deg, color-mix(in srgb, var(--lo-primary) 92%, #fff), var(--lo-primary));
	color: #fff; box-shadow: 0 10px 22px -10px color-mix(in srgb, var(--lo-primary) 70%, transparent);
}
.lo-btn--primary:hover { background: var(--lo-primary-dark); transform: translateY(-1px); box-shadow: 0 14px 26px -10px color-mix(in srgb, var(--lo-primary) 75%, transparent); }
.lo-btn--primary:active { transform: translateY(0); }
.lo-btn--dark { background: linear-gradient(180deg, #253538, var(--lo-ink)); color: #fff; }
.lo-btn--dark:hover { background: #1c2c30; transform: translateY(-1px); }
.lo-btn--ghost { background: transparent; border-color: var(--lo-line); color: var(--lo-ink); }
.lo-btn--ghost:hover { border-color: var(--lo-ink); }
.lo-btn--quiet { background: transparent; color: var(--lo-ink-60); }
.lo-btn--quiet:hover { color: var(--lo-ink); }
.lo-btn--sm { padding: 9px 16px; font-size: .86rem; }
.lo-btn--block { width: 100%; }

/* Announcement + header -------------------------------------------------- */

.lo-announce {
	background: var(--lo-ink); color: #fff;
	font-size: .84rem; letter-spacing: .01em;
	text-align: center; padding: 9px 16px;
}
.lo-announce a { text-decoration: underline; text-underline-offset: 3px; }

.lo-header {
	position: sticky; top: 0; z-index: 60;
	background: var(--lo-surface);
	border-bottom: 1px solid var(--lo-line);
}

.lo-header__bar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	padding-top: 14px; padding-bottom: 14px;
}

.lo-header__burger {
	display: none; background: none; border: 0; padding: 6px; color: var(--lo-ink); cursor: pointer;
}

.lo-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.22rem; letter-spacing: -.03em; }
.lo-logo__mark {
	width: 36px; height: 36px; border-radius: 12px;
	display: grid; place-items: center;
	background: var(--lo-primary); color: #fff; font-size: 1.05rem;
}
.lo-logo--footer .lo-logo__word { color: #fff; }

.custom-logo-link img { max-height: 74px; width: auto; }

.lo-search { position: relative; display: flex; align-items: center; }
.lo-search input[type="search"] {
	width: 100%; padding: 13px 52px 13px 18px;
	border: 1px solid var(--lo-line); border-radius: 999px;
	background: var(--lo-mist); font: inherit; color: var(--lo-ink);
}
.lo-search input[type="search"]:focus { background: #fff; border-color: var(--lo-primary); outline: none; }
.lo-search button {
	position: absolute; right: 5px;
	width: 40px; height: 40px; border: 0; border-radius: 50%;
	background: var(--lo-primary); color: #fff; display: grid; place-items: center; cursor: pointer;
}

.lo-header__actions { display: flex; align-items: center; gap: 6px; }
.lo-header__action {
	display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
	padding: 6px 12px; font-size: .74rem; color: var(--lo-ink-60); border-radius: var(--lo-radius-sm);
	position: relative;
}
.lo-header__action:hover { color: var(--lo-primary); background: var(--lo-primary-soft); }
.lo-header__count {
	position: absolute; top: 0; right: 6px;
	min-width: 18px; height: 18px; padding: 0 5px;
	background: var(--lo-accent); color: #fff; border-radius: 999px;
	font-size: .68rem; font-weight: 700; display: grid; place-items: center;
}
.lo-header__app {
	display: inline-flex; align-items: center; gap: 7px;
	background: var(--lo-primary-soft); color: var(--lo-primary-dark);
	border: 0; border-radius: 999px; padding: 9px 15px; font-size: .85rem; font-weight: 600; cursor: pointer;
}
.lo-header__app:hover { background: #d7e9e3; }

/* Category bar + mega menu ------------------------------------------------ */

.lo-header__nav { border-top: 1px solid var(--lo-line); background: var(--lo-surface); }
.lo-catnav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.lo-catnav__item { position: static; }
.lo-catnav__link {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 13px 14px; font-size: .93rem; font-weight: 600; color: var(--lo-ink);
	background: none; border: 0; cursor: pointer; position: relative;
}
.lo-catnav__link::after {
	content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
	background: var(--lo-cat); border-radius: 2px;
	transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.lo-catnav__item:hover .lo-catnav__link::after,
.lo-catnav__link:focus-visible::after { transform: scaleX(1); }
.lo-catnav__badge {
	background: var(--lo-accent); color: #fff; font-size: .62rem; font-weight: 700;
	padding: 2px 6px; border-radius: 999px; letter-spacing: .03em;
}

.lo-mega {
	position: absolute; left: 0; right: 0; top: 100%;
	background: var(--lo-surface); border-top: 1px solid var(--lo-line);
	box-shadow: var(--lo-shadow-lg);
	opacity: 0; visibility: hidden; transform: translateY(-6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 50;
}
.lo-catnav__item.has-mega:hover > .lo-mega,
.lo-catnav__item.has-mega:focus-within > .lo-mega { opacity: 1; visibility: visible; transform: translateY(0); }

.lo-mega__inner {
	max-width: var(--lo-shell); margin: 0 auto; padding: 28px 20px 32px;
	display: grid; grid-template-columns: 1.6fr .9fr 1.1fr; gap: 34px;
}
.lo-mega--list .lo-mega__inner { grid-template-columns: 1fr; }
.lo-mega__title { font-size: .76rem; font-weight: 700; color: var(--lo-ink-40); margin-bottom: 14px; }
.lo-mega__subs { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 26px; }
.lo-mega__subs li { break-inside: avoid; margin-bottom: 12px; }
.lo-mega__subs a { display: block; font-weight: 600; font-size: .95rem; }
.lo-mega__subs a:hover { color: var(--lo-cat); }
.lo-mega__subs span { display: block; font-weight: 400; font-size: .78rem; color: var(--lo-ink-40); }

.lo-mega__brands { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.lo-mega__brands a {
	display: grid; place-items: center; height: 56px; padding: 8px;
	border: 1px solid var(--lo-line); border-radius: var(--lo-radius-sm); background: #fff;
}
.lo-mega__brands img { max-height: 36px; width: auto; object-fit: contain; }
.lo-mega__brand-text { font-size: .8rem; font-weight: 600; text-align: center; }

.lo-mega__products { display: grid; gap: 12px; }
.lo-mega__product { display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: center; }
.lo-mega__product img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--lo-radius-sm); }
.lo-mega__product-name { font-size: .88rem; font-weight: 600; }
.lo-mega__product-price { font-size: .84rem; color: var(--lo-primary); font-weight: 700; }

.lo-mega__more-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 30px; }
.lo-mega__more-list > li > a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.lo-mega__more-children { display: block; font-size: .78rem; color: var(--lo-ink-40); margin-top: 4px; }
.lo-mega__more-children a:hover { color: var(--lo-primary); }

/* Mobile drawer ----------------------------------------------------------- */

.lo-drawer { position: fixed; inset: 0; z-index: 90; }
.lo-drawer[hidden] { display: none; }
.lo-drawer__scrim { position: absolute; inset: 0; background: rgba(16, 27, 30, .45); border: 0; }
.lo-drawer__panel {
	position: relative; z-index: 1;
	width: min(420px, 92vw); height: 100%;
	background: #fff; display: flex; flex-direction: column;
	transform: translateX(-100%); transition: transform .25s ease;
}
.lo-drawer.is-open .lo-drawer__panel { transform: translateX(0); }
.lo-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--lo-line); }
.lo-drawer__title { font-weight: 700; }
.lo-drawer__close, .lo-drawer__toggle { background: none; border: 0; padding: 6px; cursor: pointer; color: var(--lo-ink-60); }
.lo-drawer__body { flex: 1; overflow-y: auto; padding: 8px 0 20px; }
.lo-drawer__list { list-style: none; margin: 0; padding: 0; }
.lo-drawer__row { display: flex; align-items: center; justify-content: space-between; padding: 4px 20px; }
.lo-drawer__link { display: flex; align-items: center; gap: 12px; padding: 12px 0; font-weight: 600; flex: 1; }
.lo-drawer__toggle svg { transition: transform .2s ease; }
.lo-drawer__toggle[aria-expanded="true"] svg { transform: rotate(90deg); }
.lo-drawer__subs { list-style: none; margin: 0 0 8px; padding: 0 20px 8px 52px; display: grid; gap: 10px; }
.lo-drawer__subs a { color: var(--lo-ink-60); font-size: .92rem; }
.lo-drawer__foot { padding: 16px 20px 24px; border-top: 1px solid var(--lo-line); }

/* Sections ---------------------------------------------------------------- */

.lo-main { padding-bottom: 60px; }
.lo-section { padding: 34px 0; }
.lo-section--hero { padding-top: 24px; }
.lo-section--usp { padding: 10px 0 24px; }

.lo-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.lo-section__title { margin: 0; position: relative; padding-left: 16px; }
.lo-section__title::before {
	content: ""; position: absolute; left: 0; top: .2em; bottom: .2em; width: 4px;
	border-radius: 999px; background: linear-gradient(180deg, var(--lo-primary), var(--lo-amber));
}
.lo-section__link { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; font-size: .9rem; color: var(--lo-primary); }

/* Hero */
.lo-hero { display: grid; grid-template-columns: minmax(0, 2.6fr) minmax(260px, 1fr); gap: var(--lo-gap); }
.lo-hero__slider, .lo-hero__placeholder {
	position: relative; overflow: hidden;
	border-radius: var(--lo-radius-lg); background: var(--lo-surface); box-shadow: var(--lo-shadow-lg);
	min-height: 320px;
}
.lo-hero__track { position: relative; height: 100%; }
.lo-hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.lo-hero__slide.is-active { opacity: 1; position: relative; }
.lo-hero__img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; transition: transform 6s ease; }
.lo-hero__slide.is-active .lo-hero__img { transform: scale(1.04); }
.lo-hero__caption {
	position: absolute; inset: auto 0 0 0; padding: 34px 38px;
	background: linear-gradient(to top, rgba(16, 27, 30, .86) 10%, rgba(16, 27, 30, .25) 60%, transparent);
	color: #fff;
}
.lo-hero__caption h2 { color: #fff; margin-bottom: 6px; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.lo-hero__caption p { margin: 0 0 16px; max-width: 46ch; opacity: .92; }
.lo-hero__dots { position: absolute; left: 38px; bottom: 20px; display: flex; gap: 8px; }
.lo-hero__dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.5); cursor: pointer; transition: width .2s ease, background .2s ease; }
.lo-hero__dots button.is-active { width: 26px; background: #fff; }

.lo-hero__placeholder { display: flex; flex-direction: column; justify-content: center; padding: 44px; background: linear-gradient(135deg, #0E7C66 0%, #0A5F4E 55%, #083F34 100%); color: #fff; }
.lo-hero__headline { color: #fff; font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); }
.lo-hero__headline span { display: block; font-size: 1rem; font-weight: 500; opacity: .85; margin-top: 10px; letter-spacing: 0; }
.lo-hero__sub { opacity: .8; font-size: .9rem; }
.lo-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.lo-hero__placeholder .lo-subnav__chip { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); color: #fff; }

.lo-hero__side { display: grid; gap: 12px; align-content: start; }
.lo-hero__tile {
	background: var(--lo-surface); border-radius: var(--lo-radius);
	padding: 16px 18px; display: grid; grid-template-columns: 42px 1fr; gap: 4px 14px;
	box-shadow: var(--lo-shadow); border-left: 3px solid var(--lo-cat);
	transition: transform .18s ease;
}
.lo-hero__tile:hover { transform: translateX(3px); }
.lo-hero__tile-icon { grid-row: span 2; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--lo-cat) 12%, #fff); color: var(--lo-cat); }
.lo-hero__tile-name { font-weight: 700; }
.lo-hero__tile-count { font-size: .78rem; color: var(--lo-ink-40); }

/* USP */
.lo-usp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lo-usp__item { display: flex; align-items: center; gap: 12px; background: var(--lo-surface); border-radius: var(--lo-radius); padding: 14px 16px; box-shadow: var(--lo-shadow); color: var(--lo-primary); }
.lo-usp__item span { display: grid; }
.lo-usp__item strong { font-size: .9rem; color: var(--lo-ink); }
.lo-usp__item em { font-size: .78rem; font-style: normal; color: var(--lo-ink-40); }

/* Category grid */
.lo-catgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.lo-catgrid__item {
	position: relative; background: var(--lo-surface); border-radius: var(--lo-radius);
	padding: 18px 12px; text-align: center; display: grid; gap: 10px; justify-items: center;
	box-shadow: var(--lo-shadow); transition: transform .18s ease, box-shadow .18s ease;
}
.lo-catgrid__item:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -26px rgba(16,27,30,.5); }
.lo-catgrid__media {
	width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; overflow: hidden;
	background: color-mix(in srgb, var(--lo-cat) 12%, #fff); color: var(--lo-cat);
	transition: box-shadow .18s ease;
}
.lo-catgrid__item:hover .lo-catgrid__media { box-shadow: 0 0 0 5px color-mix(in srgb, var(--lo-cat) 14%, #fff); }
.lo-catgrid__media img { width: 100%; height: 100%; object-fit: cover; }
.lo-catgrid__name { font-weight: 600; font-size: .9rem; }
.lo-catgrid__badge { position: absolute; top: 10px; right: 10px; background: var(--lo-accent); color: #fff; font-size: .62rem; font-weight: 700; padding: 3px 7px; border-radius: 999px; }

/* Promo banners */
.lo-promo { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--lo-gap); }
.lo-promo__item { position: relative; border-radius: var(--lo-radius-lg); overflow: hidden; min-height: 180px; background: var(--lo-surface); box-shadow: var(--lo-shadow); }
.lo-promo__item img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.lo-promo__text { position: absolute; inset: auto 0 0 0; padding: 20px; background: linear-gradient(to top, rgba(16,27,30,.8), transparent); color: #fff; display: grid; }
.lo-promo__text strong { font-size: 1.1rem; }
.lo-promo__text em { font-style: normal; font-size: .85rem; opacity: .85; }

/* Product cards ----------------------------------------------------------- */

.lo-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(212px, 1fr)); gap: 16px; }
.lo-products--scroll {
	display: grid; grid-auto-flow: column; grid-auto-columns: minmax(212px, 1fr);
	overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px;
	scrollbar-width: thin;
}
.lo-products--scroll > * { scroll-snap-align: start; }

.lo-card {
	background: var(--lo-surface); border-radius: var(--lo-radius);
	overflow: hidden; display: flex; flex-direction: column;
	box-shadow: var(--lo-shadow); transition: transform .18s ease, box-shadow .18s ease;
}
.lo-card:hover { transform: translateY(-4px); box-shadow: 0 26px 54px -28px rgba(16,27,30,.55); }
.lo-card__media { position: relative; display: block; aspect-ratio: 1 / 1; background: var(--lo-mist); overflow: hidden; }
.lo-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.lo-card:hover .lo-card__media img { transform: scale(1.06); }
.lo-card__flags { position: absolute; top: 10px; left: 10px; display: grid; gap: 5px; justify-items: start; }
.lo-flag { font-size: .66rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; color: #fff; letter-spacing: .02em; box-shadow: 0 4px 10px -4px rgba(16,27,30,.5); }
.lo-flag--sale { background: linear-gradient(135deg, #F0665A, var(--lo-accent)); }
.lo-flag--new { background: linear-gradient(135deg, color-mix(in srgb, var(--lo-primary) 80%, #fff), var(--lo-primary)); }
.lo-flag--best { background: linear-gradient(135deg, #33454A, var(--lo-ink)); }

.lo-card__body { padding: 14px 15px 16px; display: grid; gap: 6px; align-content: start; flex: 1; }
.lo-card__brand { font-size: .72rem; color: var(--lo-ink-40); font-weight: 600; }
.lo-card__title { font-size: .95rem; font-weight: 600; margin: 0; line-height: 1.35; }
.lo-card__title a { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lo-card__price { font-weight: 800; color: var(--lo-ink); font-size: 1.02rem; font-variant-numeric: tabular-nums; }
.lo-card__price del { color: var(--lo-ink-40); font-weight: 500; font-size: .85rem; margin-right: 6px; }
.lo-card__price ins { text-decoration: none; color: var(--lo-accent); }
.lo-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 22px; }
.lo-card__rating { display: inline-flex; align-items: center; gap: 4px; font-size: .78rem; color: var(--lo-amber); font-weight: 600; }
.lo-card__rating em { font-style: normal; color: var(--lo-ink-40); font-weight: 400; }
.lo-card__colors { display: inline-flex; align-items: center; gap: 4px; }
.lo-card__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--lo-swatch); border: 1px solid rgba(16,27,30,.14); }
.lo-card__colors em { font-size: .7rem; color: var(--lo-ink-40); font-style: normal; }
.lo-card__cta {
	margin-top: 4px; text-align: center; padding: 9px 12px; border-radius: 999px;
	background: var(--lo-primary-soft); color: var(--lo-primary-dark); font-weight: 700; font-size: .85rem;
	transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.lo-card__cta:hover { background: var(--lo-primary); color: #fff; box-shadow: 0 10px 20px -10px color-mix(in srgb, var(--lo-primary) 70%, transparent); }
.lo-card__stock { font-size: .8rem; color: var(--lo-ink-40); }

/* Brands strip */
.lo-brands { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.lo-brands__item {
	height: 86px; display: grid; place-items: center; padding: 14px;
	background: var(--lo-surface); border-radius: var(--lo-radius); box-shadow: var(--lo-shadow);
	font-weight: 700; color: var(--lo-ink-60); text-align: center; font-size: .9rem;
}
.lo-brands__item img { max-height: 52px; width: auto; object-fit: contain; }

/* App block */
.lo-section--app .lo-appblock {
	display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center;
	background: var(--lo-ink); color: #fff; border-radius: var(--lo-radius-lg); padding: 38px 40px;
}
.lo-appblock h2 { color: #fff; }
.lo-appblock p { color: rgba(255,255,255,.76); max-width: 54ch; }
.lo-appblock__meta { list-style: none; margin: 18px 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; font-size: .86rem; color: rgba(255,255,255,.78); }
.lo-appblock__meta li { display: inline-flex; align-items: center; gap: 7px; }
.lo-appblock__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.lo-appblock__actions .lo-btn--ghost { border-color: rgba(255,255,255,.3); color: #fff; }
.lo-appblock__qr { display: grid; justify-items: center; gap: 8px; background: #fff; padding: 16px; border-radius: var(--lo-radius); }
.lo-appblock__qr span { font-size: .76rem; color: var(--lo-ink-60); font-weight: 600; }

/* App UI: modal, prompt, banners ------------------------------------------ */

.lo-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; }
.lo-modal[hidden] { display: none; }
.lo-modal__scrim { position: absolute; inset: 0; background: rgba(16,27,30,.6); border: 0; }
.lo-modal__box {
	position: relative; z-index: 1; width: min(720px, 100%);
	background: #fff; border-radius: var(--lo-radius-lg); box-shadow: var(--lo-shadow-lg);
	padding: 34px; animation: lo-pop .22s ease;
}
@keyframes lo-pop { from { opacity: 0; transform: translateY(10px) scale(.98); } }
.lo-modal__close { position: absolute; top: 14px; right: 14px; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--lo-ink-40); }
.lo-modal__grid { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start; }
.lo-modal__qr { padding: 12px; border: 1px solid var(--lo-line); border-radius: var(--lo-radius); background: #fff; }
.lo-modal__qr img { width: 100%; height: auto; }
.lo-modal__eyebrow { display: inline-flex; align-items: center; gap: 6px; margin: 0 0 8px; font-size: .78rem; font-weight: 700; color: var(--lo-primary); }
.lo-modal__lede { color: var(--lo-ink-60); margin-top: 0; }
.lo-modal__meta { font-size: .84rem; color: var(--lo-ink-40); font-variant-numeric: tabular-nums; }
.lo-modal__notes { margin: 8px 0 14px; font-size: .86rem; color: var(--lo-ink-60); }
.lo-modal__notes summary { cursor: pointer; font-weight: 600; color: var(--lo-ink); }
.lo-modal__actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 10px; }
.lo-modal__status { min-height: 20px; font-size: .84rem; color: var(--lo-primary); font-weight: 600; margin: 0; }
.lo-modal__fine { font-size: .78rem; color: var(--lo-ink-40); margin: 6px 0 0; }
.lo-modal__play { display: inline-block; margin-top: 10px; font-size: .82rem; color: var(--lo-ink-60); text-decoration: underline; text-underline-offset: 3px; }

.lo-prompt {
	position: fixed; z-index: 110; right: 24px; bottom: 24px; width: min(390px, calc(100vw - 32px));
	background: #fff; border-radius: var(--lo-radius-lg); box-shadow: var(--lo-shadow-lg);
	padding: 20px 22px; display: grid; grid-template-columns: 44px 1fr; gap: 6px 14px;
	transform: translateY(14px); opacity: 0; transition: opacity .28s ease, transform .28s ease;
}
.lo-prompt[hidden] { display: none; }
.lo-prompt.is-in { opacity: 1; transform: translateY(0); }
.lo-prompt__icon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--lo-primary-soft); color: var(--lo-primary); }
.lo-prompt__text h3 { margin: 0 0 4px; font-size: 1.02rem; }
.lo-prompt__text p { margin: 0; font-size: .87rem; color: var(--lo-ink-60); }
.lo-prompt__actions { grid-column: 2; display: flex; gap: 8px; margin-top: 12px; }

.lo-desknote {
	position: fixed; z-index: 105; left: 24px; bottom: 24px;
	display: flex; align-items: center; gap: 12px;
	background: #fff; border-radius: 999px; box-shadow: var(--lo-shadow-lg);
	padding: 10px 12px 10px 20px; font-size: .88rem; font-weight: 600;
}
.lo-desknote[hidden] { display: none; }
.lo-desknote__close { background: none; border: 0; padding: 4px; cursor: pointer; color: var(--lo-ink-40); }

.lo-appbar {
	position: fixed; z-index: 108; left: 10px; right: 10px; bottom: 10px;
	display: grid; grid-template-columns: auto 40px 1fr auto; align-items: center; gap: 10px;
	background: #fff; border-radius: var(--lo-radius); box-shadow: var(--lo-shadow-lg);
	padding: 10px 12px;
}
.lo-appbar[hidden] { display: none; }
.lo-appbar__close { background: none; border: 0; padding: 2px; color: var(--lo-ink-40); cursor: pointer; }
.lo-appbar__logo { width: 40px; height: 40px; border-radius: 12px; background: var(--lo-primary); color: #fff; display: grid; place-items: center; font-weight: 800; }
.lo-appbar__text { display: grid; line-height: 1.25; }
.lo-appbar__text strong { font-size: .88rem; }
.lo-appbar__text em { font-style: normal; font-size: .74rem; color: var(--lo-ink-40); }

.lo-toast {
	position: fixed; z-index: 130; left: 50%; bottom: 28px; transform: translateX(-50%);
	display: flex; align-items: center; gap: 10px;
	background: var(--lo-ink); color: #fff; border-radius: 999px; padding: 12px 20px;
	font-size: .88rem; font-weight: 600; box-shadow: var(--lo-shadow-lg);
}
.lo-toast[hidden] { display: none; }
.lo-toast__spinner {
	width: 15px; height: 15px; border-radius: 50%;
	border: 2px solid rgba(255,255,255,.35); border-top-color: #fff;
	animation: lo-spin .7s linear infinite;
}
.lo-toast.is-done .lo-toast__spinner { display: none; }
@keyframes lo-spin { to { transform: rotate(360deg); } }

/* Shop, category and product pages ---------------------------------------- */

.lo-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; font-size: .82rem; color: var(--lo-ink-40); padding: 18px 0 6px; }
.lo-crumbs a:hover { color: var(--lo-primary); }

.lo-shop { padding-bottom: 40px; }
.lo-shop__layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 28px; align-items: start; }
.lo-shop__layout:not(:has(.lo-shop__sidebar)) { grid-template-columns: minmax(0, 1fr); }
.lo-shop__sidebar { background: var(--lo-surface); border-radius: var(--lo-radius); padding: 20px; box-shadow: var(--lo-shadow); position: sticky; top: 130px; }
.lo-widget + .lo-widget { margin-top: 24px; }
.lo-widget__title { font-size: .95rem; margin-bottom: 10px; }
.lo-widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .9rem; }

.lo-cathero {
	display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
	background: var(--lo-surface); border-radius: var(--lo-radius-lg); padding: 28px 30px;
	box-shadow: var(--lo-shadow); border-left: 4px solid var(--lo-cat); margin-bottom: 18px;
}
.lo-cathero__title { margin: 0; }
.lo-cathero__desc { color: var(--lo-ink-60); margin: 8px 0 0; max-width: 64ch; }
.lo-cathero__count { font-size: .84rem; color: var(--lo-ink-40); margin: 8px 0 0; }
.lo-cathero__media img { width: 180px; height: 110px; object-fit: cover; border-radius: var(--lo-radius); }

.lo-subnav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.lo-subnav--inline { margin: -4px 0 16px; }
.lo-subnav__chip {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px; border-radius: 999px; background: var(--lo-surface);
	border: 1px solid var(--lo-line); font-size: .85rem; font-weight: 600;
	transition: border-color .18s ease, color .18s ease;
}
.lo-subnav__chip:hover { border-color: var(--lo-cat); color: var(--lo-cat); }
.lo-subnav__chip img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }

.woocommerce ul.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(212px, 1fr)); gap: 16px; margin: 0; padding: 0; list-style: none; }
.woocommerce ul.products::before, .woocommerce ul.products::after { content: none; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; }

.woocommerce div.product { background: var(--lo-surface); border-radius: var(--lo-radius-lg); padding: 28px; box-shadow: var(--lo-shadow); }
.woocommerce div.product .product_title { font-size: 1.6rem; }
.woocommerce div.product p.price { color: var(--lo-ink); font-weight: 800; font-size: 1.6rem; }
.woocommerce div.product p.price del { color: var(--lo-ink-40); font-weight: 500; font-size: 1.05rem; }
.woocommerce div.product p.price ins { text-decoration: none; color: var(--lo-accent); }
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce .single_add_to_cart_button { background: var(--lo-primary); color: #fff; border-radius: 999px; font-weight: 600; padding: 13px 26px; }
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce .single_add_to_cart_button:hover { background: var(--lo-primary-dark); }

.lo-product__brand { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: .84rem; font-weight: 600; color: var(--lo-ink-60); }
.lo-product__brand img { width: 26px; height: 26px; object-fit: contain; }

.lo-colors { margin: 18px 0; }
.lo-colors__label { font-size: .86rem; color: var(--lo-ink-60); }
.lo-colors__swatches { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.lo-swatch {
	width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
	background: var(--lo-swatch); border: 2px solid #fff;
	box-shadow: 0 0 0 1px var(--lo-line); position: relative;
	transition: box-shadow .16s ease, transform .16s ease;
}
.lo-swatch:hover { transform: scale(1.06); }
.lo-swatch[aria-checked="true"] { box-shadow: 0 0 0 2px var(--lo-primary); }
.lo-swatch.is-out { opacity: .4; cursor: not-allowed; }
.lo-swatch.is-out::after { content: ""; position: absolute; inset: 40% 10% auto; height: 2px; background: var(--lo-ink); transform: rotate(-45deg); }

.lo-assurance { list-style: none; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid var(--lo-line); display: grid; gap: 10px; font-size: .87rem; color: var(--lo-ink-60); }
.lo-assurance li { display: flex; align-items: center; gap: 10px; color: var(--lo-ink-60); }
.lo-assurance svg { color: var(--lo-primary); }

.lo-specs { width: 100%; border-collapse: collapse; }
.lo-specs th, .lo-specs td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--lo-line); font-size: .92rem; }
.lo-specs th { width: 34%; color: var(--lo-ink-60); font-weight: 600; }

.lo-video-wrap { position: relative; padding-top: 56.25%; border-radius: var(--lo-radius); overflow: hidden; }
.lo-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lo-video { width: 100%; border-radius: var(--lo-radius); }
.lo-product__video { margin-top: 16px; }

/* Blog, pages, empty states ----------------------------------------------- */

.lo-page, .lo-blog { padding-bottom: 50px; }
.lo-page__article { background: var(--lo-surface); border-radius: var(--lo-radius-lg); padding: 34px; box-shadow: var(--lo-shadow); }
.lo-prose { max-width: 72ch; }
.lo-prose p { margin: 0 0 1.1em; }
.lo-page__media { margin: 20px 0; border-radius: var(--lo-radius); overflow: hidden; }

.lo-blog__layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 28px; align-items: start; }
.lo-postlist { display: grid; gap: 16px; }
.lo-post { display: grid; grid-template-columns: 220px 1fr; gap: 20px; background: var(--lo-surface); border-radius: var(--lo-radius); overflow: hidden; box-shadow: var(--lo-shadow); }
.lo-post__body { padding: 20px 22px 22px 0; }
.lo-post__title { font-size: 1.15rem; margin-bottom: 6px; }
.lo-post__meta { font-size: .8rem; color: var(--lo-ink-40); margin: 0 0 8px; }
.lo-post__excerpt { color: var(--lo-ink-60); margin: 0; }

.lo-empty-state { background: var(--lo-surface); border-radius: var(--lo-radius-lg); padding: 48px 40px; text-align: center; box-shadow: var(--lo-shadow); margin: 30px auto; max-width: 720px; }
.lo-empty-state p { color: var(--lo-ink-60); }
.lo-empty-state__cats { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 20px; }
.lo-search--inline { max-width: 420px; margin: 20px auto 0; }

/* Footer ------------------------------------------------------------------ */

.lo-footer { background: var(--lo-ink); color: rgba(255,255,255,.78); padding-top: 48px; }
.lo-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 40px; }
.lo-footer h3 { color: #fff; font-size: .92rem; margin-bottom: 14px; }
.lo-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .9rem; }
.lo-footer a:hover { color: #fff; }
.lo-footer__about { font-size: .9rem; max-width: 40ch; }
.lo-footer__support { display: flex; align-items: center; gap: 8px; font-size: .9rem; margin-top: 16px; }
.lo-footer__support strong { color: #fff; }
.lo-footer__support em { font-style: normal; color: rgba(255,255,255,.5); font-size: .8rem; }
.lo-footer__hint { font-size: .84rem; color: rgba(255,255,255,.5); }
.lo-footer__meta { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 10px; }
.lo-footer__col--app .lo-btn--dark { background: var(--lo-primary); }
.lo-footer__base { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; font-size: .82rem; }
.lo-footer__base .lo-shell { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.lo-footer__base p { margin: 0; }
.lo-footer__legal { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }

/* Responsive -------------------------------------------------------------- */

@media (max-width: 1100px) {
	.lo-mega__inner { grid-template-columns: 1.4fr 1fr; }
	.lo-mega__col--products { display: none; }
	.lo-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
	.lo-usp { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	.lo-header__bar { grid-template-columns: auto auto 1fr auto; gap: 12px; padding-bottom: 12px; }
	.lo-header__burger { display: block; }
	.lo-header__nav { display: none; }
	.lo-search { order: 4; grid-column: 1 / -1; }
	.lo-header__action span:not(.lo-header__count) { display: none; }
	.lo-header__app span { display: none; }
	.lo-hero { grid-template-columns: 1fr; }
	.lo-hero__side { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); display: grid; }
	.lo-shop__layout, .lo-blog__layout { grid-template-columns: minmax(0, 1fr); }
	.lo-shop__sidebar { position: static; }
	.lo-appblock, .lo-section--app .lo-appblock { grid-template-columns: 1fr; text-align: left; }
	.lo-appblock__qr { justify-self: start; }
	.lo-modal__grid { grid-template-columns: 1fr; }
	.lo-modal__qr { display: none; }
	.lo-post { grid-template-columns: 1fr; }
	.lo-post__body { padding: 0 20px 22px; }
}

@media (max-width: 620px) {
	.lo-section { padding: 24px 0; }
	.lo-products { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.lo-products--scroll { grid-auto-columns: minmax(158px, 1fr); }
	.lo-catgrid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
	.lo-catgrid__media { width: 56px; height: 56px; }
	.lo-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
	.lo-usp { grid-template-columns: 1fr; }
	.lo-cathero { grid-template-columns: 1fr; }
	.lo-cathero__media { display: none; }
	.lo-prompt { right: 10px; left: 10px; width: auto; bottom: 74px; }
	.lo-page__article, .woocommerce div.product { padding: 20px; }
	.lo-desknote { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ==========================================================================
   Shop layer: saved items, compare, quick view, live search, bottom nav
   ========================================================================== */

/* Card action rail -------------------------------------------------------- */

.lo-card { position: relative; }

.lo-card__rail {
	position: absolute; top: 10px; right: 10px; z-index: 3;
	display: grid; gap: 6px;
	opacity: 0; transform: translateX(8px);
	transition: opacity .22s ease, transform .22s ease;
}

.lo-card:hover .lo-card__rail,
.lo-card:focus-within .lo-card__rail { opacity: 1; transform: none; }

.lo-card__act {
	width: 34px; height: 34px; display: grid; place-items: center;
	border: 1px solid var(--lo-line); border-radius: 50%;
	background: rgba(255, 255, 255, .92); backdrop-filter: blur(6px);
	color: var(--lo-ink); cursor: pointer;
	transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.lo-card__act:hover { background: var(--lo-ink); color: #fff; border-color: var(--lo-ink); transform: translateY(-1px); }
.lo-card__act.is-on { background: var(--lo-accent); border-color: var(--lo-accent); color: #fff; }
.lo-card__act.is-on .lo-icon--heart { fill: currentColor; }
.lo-card__act.is-pop { animation: lo-pop .32s ease; }

@keyframes lo-pop {
	0% { transform: scale(1); }
	45% { transform: scale(1.22); }
	100% { transform: scale(1); }
}

@media (max-width: 767px) {
	.lo-card__rail { opacity: 1; transform: none; gap: 4px; }
	.lo-card__act { width: 30px; height: 30px; }
	.lo-card__act:nth-child(n+2) { display: none; }
}

/* Countdown chip ---------------------------------------------------------- */

.lo-countdown {
	display: inline-flex; align-items: center; gap: 5px;
	margin-top: 6px; padding: 3px 9px; border-radius: 999px;
	background: color-mix(in srgb, var(--lo-accent) 12%, transparent);
	color: var(--lo-accent); font-size: .72rem; font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.lo-countdown em { font-style: normal; letter-spacing: .02em; }

.lo-dealbar {
	display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
	margin: 0 0 16px; padding: 10px 14px;
	border-radius: var(--lo-radius-sm);
	background: color-mix(in srgb, var(--lo-accent) 8%, transparent);
	color: var(--lo-accent); font-weight: 600; font-size: .86rem;
}

.lo-dealbar .lo-countdown { margin: 0; background: var(--lo-accent); color: #fff; }

/* Saved / compare buttons on the single product ---------------------------- */

.lo-single-actions { display: flex; gap: 18px; margin: 16px 0 4px; flex-wrap: wrap; }

.lo-linkbtn {
	display: inline-flex; align-items: center; gap: 7px;
	background: none; border: 0; padding: 0; cursor: pointer;
	color: var(--lo-ink-60); font-size: .86rem; font-weight: 600;
	transition: color .18s ease;
}

.lo-linkbtn:hover { color: var(--lo-ink); }
.lo-linkbtn.is-on { color: var(--lo-accent); }
.lo-linkbtn.is-on .lo-icon { fill: currentColor; }

/* Live search suggestions -------------------------------------------------- */

.lo-search { position: relative; }

.lo-suggest {
	position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 60;
	background: var(--lo-surface); border: 1px solid var(--lo-line);
	border-radius: var(--lo-radius); box-shadow: var(--lo-shadow-lg);
	max-height: min(70vh, 520px); overflow-y: auto; padding: 6px;
	animation: lo-fade .16s ease;
}

@keyframes lo-fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

.lo-suggest__group + .lo-suggest__group { border-top: 1px solid var(--lo-line); margin-top: 6px; padding-top: 6px; }

.lo-suggest__term {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 9px 12px; border-radius: var(--lo-radius-sm);
	color: var(--lo-ink); text-decoration: none; font-size: .86rem;
}

.lo-suggest__term em { font-style: normal; font-size: .7rem; color: var(--lo-ink-60); text-transform: uppercase; letter-spacing: .06em; }
.lo-suggest__term:hover { background: color-mix(in srgb, var(--lo-primary) 8%, transparent); }

.lo-suggest__item {
	display: flex; align-items: center; gap: 12px;
	padding: 8px 12px; border-radius: var(--lo-radius-sm);
	color: var(--lo-ink); text-decoration: none;
}

.lo-suggest__item:hover { background: color-mix(in srgb, var(--lo-primary) 8%, transparent); }
.lo-suggest__item img, .lo-suggest__ph { width: 44px; height: 44px; border-radius: var(--lo-radius-sm); object-fit: cover; background: #EEF2F1; flex: none; }
.lo-suggest__meta { display: grid; gap: 2px; min-width: 0; }
.lo-suggest__meta strong { font-size: .86rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lo-suggest__meta em { font-style: normal; font-size: .8rem; color: var(--lo-primary); font-weight: 700; }

.lo-suggest__all {
	display: block; text-align: center; padding: 11px; margin-top: 4px;
	border-radius: var(--lo-radius-sm); background: var(--lo-ink); color: #fff;
	font-size: .82rem; font-weight: 600; text-decoration: none;
}

.lo-suggest__empty { padding: 18px; text-align: center; color: var(--lo-ink-60); font-size: .86rem; margin: 0; }

/* Modals: quick view + compare --------------------------------------------- */

.lo-modal { position: fixed; inset: 0; z-index: 900; display: grid; place-items: center; padding: 20px; }
.lo-modal__backdrop { position: absolute; inset: 0; background: rgba(16, 27, 30, .55); backdrop-filter: blur(3px); opacity: 0; transition: opacity .22s ease; }
.lo-modal.is-open .lo-modal__backdrop { opacity: 1; }

.lo-modal__panel {
	position: relative; z-index: 1;
	width: min(920px, 100%); max-height: 88vh; overflow-y: auto;
	background: var(--lo-surface); border-radius: var(--lo-radius-lg);
	box-shadow: var(--lo-shadow-lg); padding: 26px;
	opacity: 0; transform: translateY(14px) scale(.985);
	transition: opacity .24s ease, transform .24s cubic-bezier(.22, 1, .36, 1);
}

.lo-modal__panel--wide { width: min(1120px, 100%); }
.lo-modal.is-open .lo-modal__panel { opacity: 1; transform: none; }

.lo-modal__close {
	position: absolute; top: 14px; right: 14px; z-index: 2;
	width: 36px; height: 36px; display: grid; place-items: center;
	border: 1px solid var(--lo-line); border-radius: 50%;
	background: #fff; color: var(--lo-ink); cursor: pointer;
}

.lo-modal__close:hover { background: var(--lo-ink); color: #fff; }

.lo-skeleton { height: 320px; border-radius: var(--lo-radius); background: linear-gradient(100deg, #F1F5F4 30%, #E6EDEB 50%, #F1F5F4 70%); background-size: 220% 100%; animation: lo-shimmer 1.2s infinite linear; }

@keyframes lo-shimmer { from { background-position: 180% 0; } to { background-position: -40% 0; } }

/* Quick view layout --------------------------------------------------------- */

.lo-quick { display: grid; gap: 26px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

@media (max-width: 767px) { .lo-quick { grid-template-columns: 1fr; gap: 18px; } }

.lo-quick__stage img, .lo-quick__placeholder { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--lo-radius); background: #F1F5F4; }
.lo-quick__thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }

.lo-quick__thumb {
	width: 58px; height: 58px; padding: 0; overflow: hidden; cursor: pointer;
	border: 2px solid var(--lo-line); border-radius: var(--lo-radius-sm);
	background: #fff; display: grid; place-items: center; color: var(--lo-ink-60);
	transition: border-color .18s ease;
}

.lo-quick__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lo-quick__thumb.is-active, .lo-quick__thumb:hover { border-color: var(--lo-primary); }

.lo-quick__brand { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--lo-ink-60); font-weight: 700; }
.lo-quick__title { font-size: 1.4rem; line-height: 1.25; margin: 6px 0 10px; }
.lo-quick__price { font-size: 1.3rem; font-weight: 800; color: var(--lo-primary); margin: 10px 0; }
.lo-quick__excerpt { font-size: .9rem; color: var(--lo-ink-60); }
.lo-quick__label { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--lo-ink-60); font-weight: 700; display: block; margin-bottom: 6px; }
.lo-quick__colors { margin: 14px 0; }
.lo-quick__specs { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: .84rem; }
.lo-quick__specs th, .lo-quick__specs td { text-align: left; padding: 7px 0; border-bottom: 1px solid var(--lo-line); }
.lo-quick__specs th { color: var(--lo-ink-60); font-weight: 600; width: 42%; }
.lo-quick__actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }

/* Compare table ------------------------------------------------------------- */

.lo-compare { width: 100%; border-collapse: collapse; font-size: .86rem; }
.lo-compare th, .lo-compare td { padding: 12px; border-bottom: 1px solid var(--lo-line); text-align: left; vertical-align: top; }
.lo-compare thead th { position: relative; min-width: 170px; }
.lo-compare thead a { display: grid; gap: 8px; color: var(--lo-ink); text-decoration: none; font-weight: 600; }
.lo-compare thead img { width: 100%; max-width: 130px; border-radius: var(--lo-radius-sm); }
.lo-compare tbody th { color: var(--lo-ink-60); font-weight: 600; width: 180px; }

.lo-compare__drop {
	position: absolute; top: 4px; right: 4px;
	width: 24px; height: 24px; border-radius: 50%; cursor: pointer;
	border: 1px solid var(--lo-line); background: #fff; color: var(--lo-ink-60); line-height: 1;
}

.lo-compare__drop:hover { background: var(--lo-accent); border-color: var(--lo-accent); color: #fff; }

/* Compare tray -------------------------------------------------------------- */

.lo-tray {
	position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 700;
	display: flex; align-items: center; gap: 14px;
	padding: 10px 16px; border-radius: 999px;
	background: var(--lo-ink); color: #fff; box-shadow: var(--lo-shadow-lg);
	animation: lo-rise .28s cubic-bezier(.22, 1, .36, 1);
}

@keyframes lo-rise { from { opacity: 0; transform: translate(-50%, 16px); } to { opacity: 1; transform: translate(-50%, 0); } }

.lo-tray__label { font-size: .82rem; font-weight: 600; }
.lo-tray__label em { font-style: normal; background: rgba(255, 255, 255, .18); border-radius: 999px; padding: 1px 8px; margin-left: 4px; }
.lo-tray__clear { background: none; border: 0; color: rgba(255, 255, 255, .7); font-size: .78rem; cursor: pointer; text-decoration: underline; }
.lo-btn--sm { padding: 7px 14px; font-size: .8rem; }

@media (max-width: 767px) { .lo-tray { bottom: 76px; width: calc(100% - 28px); justify-content: space-between; border-radius: var(--lo-radius); } }

/* Mobile bottom navigation --------------------------------------------------- */

.lo-bottomnav { display: none; }

@media (max-width: 767px) {
	.lo-bottomnav {
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
		display: grid; grid-template-columns: repeat(5, 1fr);
		background: var(--lo-surface); border-top: 1px solid var(--lo-line);
		padding-bottom: env(safe-area-inset-bottom, 0);
		box-shadow: 0 -8px 24px -18px rgba(16, 27, 30, .6);
	}

	body { padding-bottom: 64px; }

	.lo-bottomnav__item {
		position: relative; display: grid; gap: 3px; justify-items: center;
		padding: 9px 4px 8px; background: none; border: 0; cursor: pointer;
		color: var(--lo-ink-60); text-decoration: none; font-size: .64rem; font-weight: 600;
	}

	.lo-bottomnav__item.is-active { color: var(--lo-primary); }
	.lo-bottomnav__bubble { position: relative; display: grid; place-items: center; }
	.lo-bottomnav__bubble .lo-header__count,
	.lo-bottomnav__dot {
		position: absolute; top: -4px; right: -10px;
		min-width: 17px; height: 17px; padding: 0 4px;
		display: grid; place-items: center; border-radius: 999px;
		background: var(--lo-accent); color: #fff; font-size: .6rem; font-style: normal; font-weight: 700;
	}

	.lo-bottomnav__dot { top: 4px; right: 50%; margin-right: -22px; }
}

/* Saved items page ------------------------------------------------------------ */

.lo-wishpage__empty { text-align: center; padding: 48px 20px; color: var(--lo-ink-60); }

/* Free delivery progress ------------------------------------------------------- */

.lo-freeship { margin: 0 0 22px; padding: 14px 18px; border: 1px solid var(--lo-line); border-radius: var(--lo-radius); background: var(--lo-surface); }
.lo-freeship p { margin: 0 0 9px; font-size: .86rem; font-weight: 600; }
.lo-freeship__track { display: block; height: 6px; border-radius: 999px; background: #EDF2F1; overflow: hidden; }
.lo-freeship__track em { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--lo-primary), color-mix(in srgb, var(--lo-primary) 60%, #7BD6BF)); transition: width .4s ease; }

/* Sticky header + back to top --------------------------------------------------- */

.lo-header { transition: transform .28s ease, box-shadow .28s ease; }
.lo-header.is-stuck { position: sticky; top: 0; z-index: 500; box-shadow: var(--lo-shadow); }
.lo-header.is-hidden { transform: none; }

.lo-totop {
	position: fixed; right: 20px; bottom: 26px; z-index: 690;
	width: 44px; height: 44px; display: grid; place-items: center;
	border: 1px solid var(--lo-line); border-radius: 50%;
	background: var(--lo-surface); color: var(--lo-ink); cursor: pointer;
	box-shadow: var(--lo-shadow);
	opacity: 0; pointer-events: none; transform: translateY(10px);
	transition: opacity .22s ease, transform .22s ease;
}

.lo-totop.is-in { opacity: 1; pointer-events: auto; transform: none; }
.lo-totop .lo-icon { transform: rotate(-90deg); }

@media (max-width: 767px) { .lo-totop { bottom: 78px; right: 14px; } }

body.lo-locked { overflow: hidden; }

/* Motion and contrast preferences ------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
	.lo-card__rail, .lo-modal__panel, .lo-modal__backdrop, .lo-header, .lo-totop, .lo-freeship__track em { transition: none; }
	.lo-skeleton, .lo-tray, .lo-suggest, .lo-card__act.is-pop { animation: none; }
}

@media print {
	.lo-bottomnav, .lo-tray, .lo-totop, .lo-modal, .lo-suggest, .lo-card__rail { display: none !important; }
}

.lo-seller-card { background: var(--lo-surface); border-radius: var(--lo-radius); display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 16px; gap: 10px; border: 1px solid rgba(0,0,0,.06); transition: transform .15s ease, box-shadow .15s ease; } .lo-seller-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.08); } .lo-seller-card__logo { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--lo-mist); } .lo-seller-card__logo img { width: 100%; height: 100%; object-fit: cover; } .lo-seller-card__initial { font-weight: 800; font-size: 1.4rem; color: var(--lo-primary); } 
.lo-seller-card__name { font-weight: 700; font-size: 1rem; color: var(--lo-ink); margin-top: 2px; } .lo-seller-card__cta { font-size: .78rem; font-weight: 700; color: #fff; background: var(--lo-primary); padding: 6px 18px; border-radius: 999px; margin-top: 4px; transition: background .15s ease; } .lo-seller-card:hover .lo-seller-card__cta { background: var(--lo-ink); }

