/** Shopify CDN: Minification failed

Line 620:0 Unexpected "}"
Line 768:0 Unexpected "}"

**/
/* ==========================================================================
   MAISON HAMZA — Luxe Design System
   All responsive logic lives here. Sections only emit CSS custom properties
   via snippets/luxe-style.liquid, so per-section CSS payload stays near zero.
   Breakpoints: mobile-first / tablet >=750px / desktop >=1200px
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  --lx-ink: #141310;
  --lx-ink-soft: #3A3730;
  --lx-canvas: #FAF8F5;
  --lx-linen: #EFEAE3;
  --lx-brass: #B08D4F;
  --lx-brass-lt: #C9AC77;
  --lx-stone: #8A8378;
  --lx-line: #E2DCD3;
  --lx-white: #FFFFFF;

  --lx-font-display: Georgia, 'Times New Roman', serif;
  --lx-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Letterspaced uppercase UI — the brand's core typographic gesture */
  --lx-track-ui: 0.18em;
  --lx-track-logo: 0.32em;

  --lx-gutter: 20px;
  --lx-page: 1440px;

  --lx-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lx-ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --lx-dur: 0.6s;

  --lx-header-h: 72px;
}

@media (min-width: 750px)  { :root { --lx-gutter: 40px; --lx-header-h: 84px; } }
@media (min-width: 1200px) { :root { --lx-gutter: 56px; } }

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

body.lx-body {
  margin: 0;
  background: var(--lx-canvas);
  color: var(--lx-ink);
  font-family: var(--lx-font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lx-body img,
.lx-body svg,
.lx-body video { display: block; max-width: 100%; }

.lx-body a { color: inherit; text-decoration: none; }

.lx-body h1, .lx-body h2, .lx-body h3, .lx-body h4, .lx-body p, .lx-body figure { margin: 0; }

.lx-body :focus-visible {
  outline: 2px solid var(--lx-brass);
  outline-offset: 3px;
}

.lx-visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.lx-body ::selection { background: var(--lx-brass); color: #fff; }

/* Scoped resets — these repeat the .lx-body rules at component level so a
   Luxe section looks identical whether it sits in the standalone layout or
   is layered on top of another theme that owns the <body> tag. */
.lx-section,
.lx-header,
.lx-footer,
.lx-announce,
.lx-drawer {
  font-family: var(--lx-font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lx-section a,
.lx-header a,
.lx-footer a,
.lx-announce a,
.lx-drawer a { color: inherit; text-decoration: none; }

.lx-section img, .lx-section svg,
.lx-header img, .lx-header svg,
.lx-footer img, .lx-footer svg { display: block; max-width: 100%; }

.lx-section h1, .lx-section h2, .lx-section h3,
.lx-section h4, .lx-section p, .lx-section figure,
.lx-section blockquote { margin: 0; }

.lx-section button, .lx-header button, .lx-drawer button, .lx-footer button {
  font: inherit; color: inherit; background: none; border: 0; cursor: pointer;
}

/* --------------------------------------------------------------------------
   3. SECTION SHELL — consumes engine variables
   -------------------------------------------------------------------------- */
.lx-section {
  position: relative;
  padding-top: var(--pad-top-m, var(--pad-top-d, 64px));
  padding-bottom: var(--pad-bot-m, var(--pad-bot-d, 64px));
  padding-left: var(--pad-x-m, var(--pad-x-d, 0px));
  padding-right: var(--pad-x-m, var(--pad-x-d, 0px));
  margin-top: var(--mar-top, 0px);
  margin-bottom: var(--mar-bot, 0px);
  margin-left: var(--mar-left, 0px);
  margin-right: var(--mar-right, 0px);
  background-color: var(--bg-color, transparent);
  color: var(--body-color, inherit);
  border-radius: var(--radius, 0px);
  border-style: solid;
  border-width: var(--border-w, 0px);
  border-color: var(--border-color, transparent);
  isolation: isolate;
}

@media (min-width: 750px) {
  .lx-section {
    padding-top: var(--pad-top-t, var(--pad-top-d, 88px));
    padding-bottom: var(--pad-bot-t, var(--pad-bot-d, 88px));
    padding-left: var(--pad-x-t, var(--pad-x-d, 0px));
    padding-right: var(--pad-x-t, var(--pad-x-d, 0px));
  }
}
@media (min-width: 1200px) {
  .lx-section {
    padding-top: var(--pad-top-d, 120px);
    padding-bottom: var(--pad-bot-d, 120px);
    padding-left: var(--pad-x-d, 0px);
    padding-right: var(--pad-x-d, 0px);
  }
}

/* Background image + gradient + overlay ---------------------------------- */
.lx-section[data-bg-image]::before,
.lx-section[data-bg-gradient]::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background-image: var(--bg-image, var(--bg-gradient, none));
  background-size: cover; background-position: var(--bg-position, center);
  background-repeat: no-repeat;
  border-radius: inherit;
}
.lx-section[data-bg-fixed]::before { background-attachment: fixed; }

.lx-section[data-overlay]::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--overlay-color, #000);
  opacity: var(--overlay-opacity, 0.3);
  border-radius: inherit;
  pointer-events: none;
}

/* Width containers -------------------------------------------------------- */
.lx-wrap {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--lx-gutter);
}
.lx-wrap--boxed { max-width: var(--content-max, 1440px); }
.lx-wrap--narrow { max-width: var(--content-max, 900px); }
.lx-wrap--full { max-width: none; padding-inline: 0; }
.lx-wrap--full-padded { max-width: none; }

/* Visibility -------------------------------------------------------------- */
.lx-hide-m { display: none !important; }
@media (min-width: 750px)  { .lx-hide-m { display: revert !important; } .lx-hide-t { display: none !important; } }
@media (min-width: 1200px) { .lx-hide-t { display: revert !important; } .lx-hide-d { display: none !important; } }

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY ENGINE
   Three addressable roles per section: eyebrow (e), heading (h), body (b).
   -------------------------------------------------------------------------- */
.lx-eyebrow {
  font-family: var(--e-family, var(--lx-font-body));
  font-size: var(--e-size-m, var(--e-size-d, 11px));
  font-weight: var(--e-weight, 500);
  font-style: var(--e-style, normal);
  letter-spacing: var(--e-ls, 0.22em);
  line-height: var(--e-lh, 1.4);
  text-transform: var(--e-transform, uppercase);
  text-align: var(--e-align, inherit);
  color: var(--e-color, var(--lx-brass));
  margin-bottom: var(--e-gap, 20px);
  display: block;
}

.lx-heading {
  font-family: var(--h-family, var(--lx-font-display));
  font-size: var(--h-size-m, var(--h-size-d, 34px));
  font-weight: var(--h-weight, 400);
  font-style: var(--h-style, normal);
  letter-spacing: var(--h-ls, -0.01em);
  line-height: var(--h-lh, 1.1);
  text-transform: var(--h-transform, none);
  text-align: var(--h-align, inherit);
  color: var(--h-color, var(--lx-ink));
  text-wrap: balance;
}

/* SIGNATURE: the italic brass accent word inside a display heading */
.lx-heading em,
.lx-accent {
  font-style: italic;
  font-weight: inherit;
  color: var(--accent-color, var(--lx-brass));
}

.lx-text {
  font-family: var(--b-family, var(--lx-font-body));
  font-size: var(--b-size-m, var(--b-size-d, 15px));
  font-weight: var(--b-weight, 400);
  font-style: var(--b-style, normal);
  letter-spacing: var(--b-ls, 0em);
  line-height: var(--b-lh, 1.8);
  text-transform: var(--b-transform, none);
  text-align: var(--b-align, inherit);
  color: var(--b-color, var(--lx-stone));
}
.lx-text p + p { margin-top: 1.1em; }

@media (min-width: 750px) {
  .lx-eyebrow { font-size: var(--e-size-t, var(--e-size-d, 11px)); }
  .lx-heading { font-size: var(--h-size-t, var(--h-size-d, 48px)); }
  .lx-text    { font-size: var(--b-size-t, var(--b-size-d, 16px)); }
}
@media (min-width: 1200px) {
  .lx-eyebrow { font-size: var(--e-size-d, 11px); }
  .lx-heading { font-size: var(--h-size-d, 64px); }
  .lx-text    { font-size: var(--b-size-d, 16px); }
}

/* Brass hairline above an eyebrow — from the story section of the brief */
.lx-rule {
  display: block; width: 44px; height: 1px;
  background: var(--rule-color, var(--lx-brass));
  margin-bottom: 24px;
}
.lx-rule--center { margin-inline: auto; }

.lx-header-block { max-width: var(--head-max, 720px); }
.lx-header-block[data-align='center'] { margin-inline: auto; text-align: center; }
.lx-header-block[data-align='center'] .lx-rule { margin-inline: auto; }
.lx-header-block[data-align='right'] { margin-inline-start: auto; text-align: right; }
.lx-header-block[data-align='right'] .lx-rule { margin-inline-start: auto; }
.lx-header-block .lx-text { margin-top: 22px; }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.lx-btn {
  --btn-bg: var(--lx-ink);
  --btn-fg: #fff;
  --btn-bd: var(--lx-ink);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--btn-py, 17px) var(--btn-px, 36px);
  font-family: var(--btn-family, var(--lx-font-body));
  font-size: var(--btn-size, 11px);
  font-weight: var(--btn-weight, 600);
  letter-spacing: var(--btn-ls, var(--lx-track-ui));
  text-transform: var(--btn-transform, uppercase);
  line-height: 1;
  color: var(--btn-fg);
  background: transparent;
  border: 1px solid var(--btn-bd);
  border-radius: var(--btn-radius, 0px);
  cursor: pointer;
  overflow: hidden;
  transition: color 0.45s var(--lx-ease), border-color 0.45s var(--lx-ease);
  -webkit-tap-highlight-color: transparent;
}
/* Wipe-fill hover: the fill slides in from the bottom, no colour flash */
.lx-btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--btn-bg);
  transform: translateY(0);
  transition: transform 0.55s var(--lx-ease);
}
.lx-btn > * { position: relative; z-index: 1; }
.lx-btn:hover::before { transform: translateY(-101%); }
.lx-btn:hover { color: var(--btn-bg-hover-fg, var(--lx-ink)); border-color: var(--lx-ink); }

.lx-btn--outline { --btn-bg: transparent; --btn-fg: var(--lx-ink); --btn-bd: var(--lx-ink); }
.lx-btn--outline::before { background: var(--lx-ink); transform: translateY(101%); }
.lx-btn--outline:hover::before { transform: translateY(0); }
.lx-btn--outline:hover { color: #fff; }

.lx-btn--brass { --btn-bg: var(--lx-brass); --btn-bd: var(--lx-brass); }
.lx-btn--brass:hover { color: var(--lx-brass); border-color: var(--lx-brass); }

.lx-btn--light { --btn-bg: #fff; --btn-fg: var(--lx-ink); --btn-bd: #fff; }
.lx-btn--light:hover { color: #fff; border-color: #fff; }

.lx-btn--ghost {
  --btn-bg: transparent; --btn-fg: currentColor; --btn-bd: transparent;
  padding-inline: 0;
}
.lx-btn--ghost::before { display: none; }

/* Underline-sweep text link — "EXPLORE COLLECTION →" */
.lx-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 600;
  letter-spacing: var(--lx-track-ui); text-transform: uppercase;
  color: var(--link-color, var(--lx-brass));
  line-height: 1;
}
.lx-link span { position: relative; padding-bottom: 4px; }
.lx-link span::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--lx-ease);
}
.lx-link:hover span::after { transform: scaleX(1); transform-origin: left; }
.lx-link svg { transition: transform 0.5s var(--lx-ease); }
.lx-link:hover svg { transform: translateX(5px); }

.lx-btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--btn-gap, 40px); }
.lx-btn-row[data-align='center'] { justify-content: center; }
.lx-btn-row[data-align='right'] { justify-content: flex-end; }

/* --------------------------------------------------------------------------
   6. MEDIA
   -------------------------------------------------------------------------- */
.lx-media {
  position: relative; overflow: hidden;
  background: var(--lx-linen);
  border-radius: var(--media-radius, 0px);
  aspect-ratio: var(--ratio, 3 / 4);
}
.lx-media > img,
.lx-media > video,
.lx-media > iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
}
.lx-media--natural { aspect-ratio: auto; }
.lx-media--natural > img { position: static; height: auto; }

.lx-media__ph {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background: var(--lx-linen); fill: rgba(20,19,16,0.12);
}

/* Zoom on hover — applied by the card, opt-in per section */
.lx-zoom img { transition: transform 1.1s var(--lx-ease); will-change: transform; }
.lx-zoom:hover img { transform: scale(var(--zoom, 1.06)); }

/* Scrim used on category cards */
.lx-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top,
    rgba(20,19,16,var(--scrim-strength, 0.72)) 0%,
    rgba(20,19,16,calc(var(--scrim-strength, 0.72) * 0.45)) 38%,
    rgba(20,19,16,0) 72%);
  transition: opacity 0.6s var(--lx-ease);
}

/* --------------------------------------------------------------------------
   7. GRID + CAROUSEL (no library — CSS scroll-snap)
   -------------------------------------------------------------------------- */
.lx-grid {
  display: grid;
  gap: var(--gap-m, var(--gap-d, 16px));
  grid-template-columns: repeat(var(--cols-m, 1), minmax(0, 1fr));
}
@media (min-width: 750px) {
  .lx-grid { gap: var(--gap-t, var(--gap-d, 20px)); grid-template-columns: repeat(var(--cols-t, 2), minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
  .lx-grid { gap: var(--gap-d, 24px); grid-template-columns: repeat(var(--cols-d, 3), minmax(0, 1fr)); }
}

.lx-carousel { position: relative; }

.lx-track {
  display: flex;
  gap: var(--gap-m, var(--gap-d, 16px));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px; /* keeps focus rings visible */
}
.lx-track::-webkit-scrollbar { display: none; }
.lx-track > * {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - (var(--cols-m, 1) - 1) * var(--gap-m, var(--gap-d, 16px))) / var(--cols-m, 1));
}
@media (min-width: 750px) {
  .lx-track { gap: var(--gap-t, var(--gap-d, 20px)); }
  .lx-track > * { flex-basis: calc((100% - (var(--cols-t, 2) - 1) * var(--gap-t, var(--gap-d, 20px))) / var(--cols-t, 2)); }
}
@media (min-width: 1200px) {
  .lx-track { gap: var(--gap-d, 24px); }
  .lx-track > * { flex-basis: calc((100% - (var(--cols-d, 3) - 1) * var(--gap-d, 24px)) / var(--cols-d, 3)); }
}
.lx-track[data-peek='true'] > *:last-child { margin-right: var(--lx-gutter); }

.lx-carousel__nav {
  display: flex; align-items: center; gap: 10px;
}
.lx-carousel__nav[data-pos='top'] { position: absolute; top: -66px; right: 0; }
.lx-carousel__nav[data-pos='bottom'] { justify-content: center; margin-top: 36px; }

.lx-arrow {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--arrow-border, var(--lx-line));
  background: var(--arrow-bg, transparent);
  color: var(--arrow-color, var(--lx-ink));
  border-radius: var(--arrow-radius, 0);
  cursor: pointer;
  transition: background 0.4s var(--lx-ease), color 0.4s var(--lx-ease), border-color 0.4s var(--lx-ease), opacity 0.3s;
}
.lx-arrow:hover { background: var(--lx-ink); color: #fff; border-color: var(--lx-ink); }
.lx-arrow[disabled] { opacity: 0.25; pointer-events: none; }

.lx-progress {
  position: relative; height: 1px; margin-top: 32px;
  background: var(--lx-line); overflow: hidden;
}
.lx-progress__bar {
  position: absolute; left: 0; top: 0; height: 100%; width: 20%;
  background: var(--lx-ink);
  transition: transform 0.25s linear, width 0.25s linear;
}

.lx-dots { display: flex; gap: 8px; justify-content: center; margin-top: 30px; }
.lx-dots button {
  width: 24px; height: 1px; padding: 0; border: 0; cursor: pointer;
  background: var(--lx-line); transition: background 0.3s;
}
.lx-dots button[aria-current='true'] { background: var(--lx-ink); }

/* --------------------------------------------------------------------------
   8. HEADER
   -------------------------------------------------------------------------- */
.lx-announce {
  position: relative; z-index: 60;
  overflow: hidden;
  background: var(--bg-color, var(--lx-ink));
  color: var(--fg-color, #fff);
  font-size: 11px; letter-spacing: var(--lx-track-ui); text-transform: uppercase;
}
.lx-announce__inner { display: flex; align-items: center; justify-content: center; min-height: 40px; gap: 14px; text-align: center; }
.lx-announce__slide { display: none; padding: 11px 0; }
.lx-announce__slide.is-active { display: block; animation: lx-fade-in 0.6s var(--lx-ease) both; }

.lx-header {
  position: relative; z-index: 50;
  background: var(--bg-color, var(--lx-canvas));
  border-bottom: 1px solid var(--header-border, var(--lx-line));
  transition: background 0.45s var(--lx-ease), border-color 0.45s var(--lx-ease), transform 0.45s var(--lx-ease);
}
.lx-header__inner {
  display: grid; align-items: center;
  grid-template-columns: 1fr auto 1fr;
  min-height: var(--lx-header-h);
  gap: 20px;
}
/* Exactly three grid children — start / logo / utils. Visual order is set
   here, not in markup. A fourth child wraps to a second row. */
.lx-header__start {
  display: flex; align-items: center; gap: 8px;
  min-width: 0;
  order: 1;
}
.lx-header[data-layout='logo-center'] .lx-logo { order: 2; justify-self: center; }
.lx-header[data-layout='logo-center'] .lx-header__utils { order: 3; }

.lx-header[data-layout='logo-left'] .lx-header__inner { grid-template-columns: auto 1fr auto; }
.lx-header[data-layout='logo-left'] .lx-logo { order: 1; justify-self: start; }
.lx-header[data-layout='logo-left'] .lx-header__start { order: 2; justify-content: center; }
.lx-header[data-layout='logo-left'] .lx-header__utils { order: 3; }
.lx-header[data-layout='logo-left'] .lx-header__nav { justify-content: center; }

/* Transparent-over-hero mode */
.lx-header[data-transparent='true']:not(.is-stuck):not(.is-open) {
  position: absolute; top: 0; left: 0; right: 0;
  background: transparent; border-bottom-color: transparent;
  color: var(--transparent-fg, #fff);
}
.lx-header[data-transparent='true']:not(.is-stuck):not(.is-open) .lx-logo,
.lx-header[data-transparent='true']:not(.is-stuck):not(.is-open) .lx-nav__link,
.lx-header[data-transparent='true']:not(.is-stuck):not(.is-open) .lx-icon-btn { color: var(--transparent-fg, #fff); }
.lx-header[data-transparent='true']:not(.is-stuck):not(.is-open) .lx-logo__b { color: var(--transparent-accent, var(--lx-brass-lt)); }

.lx-header.is-sticky { position: sticky; top: 0; }
.lx-header.is-stuck { box-shadow: 0 1px 0 rgba(20,19,16,0.06); }
.lx-header.is-hidden { transform: translateY(-100%); }

.lx-logo {
  display: inline-flex; align-items: baseline; gap: 0.34em;
  font-family: var(--logo-family, var(--lx-font-display));
  font-size: var(--logo-size-m, var(--logo-size-d, 17px));
  font-weight: var(--logo-weight, 400);
  letter-spacing: var(--logo-ls, var(--lx-track-logo));
  text-transform: uppercase;
  color: var(--logo-color, var(--lx-ink));
  white-space: nowrap;
}
@media (min-width: 1200px) { .lx-logo { font-size: var(--logo-size-d, 21px); } }
.lx-logo__b { color: var(--logo-accent, var(--lx-brass)); }
.lx-logo img { width: auto; height: var(--logo-img-h, 34px); }

.lx-header__nav { display: none; }
@media (min-width: 1200px) { .lx-header__nav { display: flex; align-items: center; justify-content: center; gap: var(--nav-gap, 38px); } }

.lx-nav__link {
  position: relative; display: block; padding: 12px 0;
  font-family: var(--nav-family, var(--lx-font-body));
  font-size: var(--nav-size, 11px);
  font-weight: var(--nav-weight, 500);
  letter-spacing: var(--nav-ls, var(--lx-track-ui));
  text-transform: var(--nav-transform, uppercase);
  color: var(--nav-color, var(--lx-ink));
  white-space: nowrap;
  transition: color 0.35s var(--lx-ease);
}
.lx-nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 6px; width: 100%; height: 1px;
  background: var(--nav-underline, var(--lx-brass));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--lx-ease);
}
.lx-nav__item:hover > .lx-nav__link::after,
.lx-nav__link[aria-expanded='true']::after { transform: scaleX(1); transform-origin: left; }
.lx-nav__item:hover > .lx-nav__link { color: var(--nav-color-hover, var(--lx-brass)); }

.lx-nav__item { position: relative; }
.lx-nav__caret { margin-left: 6px; transition: transform 0.35s var(--lx-ease); }
.lx-nav__item:hover .lx-nav__caret { transform: rotate(180deg); }

/* Mega menu */
.lx-mega {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 240px;
  background: var(--lx-canvas);
  border: 1px solid var(--lx-line);
  padding: 26px 30px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s var(--lx-ease), transform 0.4s var(--lx-ease), visibility 0.4s;
  z-index: 40;
}
.lx-nav__item:hover .lx-mega,
.lx-nav__item:focus-within .lx-mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.lx-mega--wide {
  left: 0; right: auto; transform: translate(0, 8px);
  width: min(1100px, calc(100vw - var(--lx-gutter) * 2));
  display: grid; grid-template-columns: repeat(var(--mega-cols, 4), 1fr); gap: 34px;
  padding: 44px 48px;
}
.lx-nav__item:hover .lx-mega--wide,
.lx-nav__item:focus-within .lx-mega--wide { transform: translate(0, 0); }
.lx-mega--wide.lx-mega--anchor-center { left: 50%; transform: translate(-50%, 8px); }
.lx-nav__item:hover .lx-mega--anchor-center { transform: translate(-50%, 0); }

.lx-mega__title {
  font-size: 10px; letter-spacing: var(--lx-track-ui); text-transform: uppercase;
  color: var(--lx-brass); margin-bottom: 16px; display: block;
}
.lx-mega__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.lx-mega__list a {
  font-family: var(--lx-font-display); font-size: 15px; color: var(--lx-ink-soft);
  transition: color 0.3s var(--lx-ease), transform 0.4s var(--lx-ease);
  display: inline-block;
}
.lx-mega__list a:hover { color: var(--lx-brass); transform: translateX(4px); }
.lx-mega__promo .lx-media { margin-bottom: 14px; }

.lx-header__utils { display: flex; align-items: center; justify-content: flex-end; gap: var(--util-gap, 6px); }

.lx-icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 0; background: none; padding: 0; cursor: pointer;
  color: var(--icon-color, var(--lx-ink));
  transition: color 0.3s var(--lx-ease), transform 0.3s var(--lx-ease);
}
.lx-icon-btn:hover { color: var(--icon-color-hover, var(--lx-brass)); transform: translateY(-1px); }
.lx-icon-btn__count {
  position: absolute; top: 3px; right: 1px;
  min-width: 16px; height: 16px; padding: 0 4px;
  display: grid; place-items: center;
  font-size: 9px; font-weight: 600; letter-spacing: 0;
  background: var(--count-bg, var(--lx-brass)); color: var(--count-fg, #fff);
  border-radius: 999px;
}
/* display:grid above outranks [hidden]'s UA display:none — which is why an
   empty cart still showed a "0". */
.lx-icon-btn__count[hidden] { display: none; }
}
@media (min-width: 1200px) { .lx-burger { display: none; } }

/* Drawers + overlay */
.lx-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(20,19,16,0.45);
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--lx-ease), visibility 0.5s;
  backdrop-filter: blur(2px);
}
.lx-overlay.is-open { opacity: 1; visibility: visible; }

.lx-drawer {
  position: fixed; top: 0; bottom: 0; z-index: 100;
  width: min(420px, 88vw);
  background: var(--lx-canvas);
  display: flex; flex-direction: column;
  transition: transform 0.55s var(--lx-ease);
  overscroll-behavior: contain;
}
.lx-drawer--left  { left: 0;  transform: translateX(-102%); }
.lx-drawer--right { right: 0; transform: translateX(102%); }
.lx-drawer.is-open { transform: translateX(0); }
.lx-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--lx-gutter); border-bottom: 1px solid var(--lx-line);
  font-size: 11px; letter-spacing: var(--lx-track-ui); text-transform: uppercase;
}
.lx-drawer__body { flex: 1; overflow-y: auto; padding: 26px var(--lx-gutter) 40px; }

/* Mobile nav — staggered entrance */
.lx-mnav { list-style: none; margin: 0; padding: 0; }
.lx-mnav > li { border-bottom: 1px solid var(--lx-line); opacity: 0; transform: translateY(14px); }
.lx-drawer.is-open .lx-mnav > li {
  animation: lx-rise 0.6s var(--lx-ease) forwards;
  animation-delay: calc(var(--i, 0) * 55ms + 120ms);
}
.lx-mnav a, .lx-mnav button {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 18px 0; background: none; border: 0; cursor: pointer;
  font-family: var(--lx-font-display); font-size: 20px; color: var(--lx-ink); text-align: left;
}
.lx-mnav__sub { list-style: none; margin: 0; padding: 0 0 14px 14px; display: none; }
.lx-mnav__sub.is-open { display: block; }
.lx-mnav__sub a { font-size: 15px; padding: 9px 0; color: var(--lx-ink-soft); font-family: var(--lx-font-body); }
.lx-mnav [aria-expanded='true'] .lx-nav__caret { transform: rotate(180deg); }

/* Search */
.lx-search__form { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--lx-ink); padding-bottom: 12px; }
.lx-search__form input {
  flex: 1; border: 0; background: none; padding: 8px 0;
  font-family: var(--lx-font-display); font-size: 22px; color: var(--lx-ink);
}
.lx-search__form input:focus { outline: none; }

/* --------------------------------------------------------------------------
   9. HERO
   -------------------------------------------------------------------------- */
.lx-hero { position: relative; }
.lx-hero__grid { display: grid; }
.lx-hero[data-layout='split'] .lx-hero__grid { grid-template-columns: 1fr; }
@media (min-width: 990px) {
  .lx-hero[data-layout='split'] .lx-hero__grid { grid-template-columns: var(--split-ratio, 1fr 1fr); align-items: stretch; }
  /* Media is first in the DOM, so 'left' is the natural order and 'right'
     is the one that needs moving — this was inverted. */
  .lx-hero[data-layout='split'][data-media='right'] .lx-hero__media { order: 2; }
}

.lx-hero__content {
  display: flex; flex-direction: column; justify-content: var(--v-align, center);
  padding: var(--content-pad-m, 64px var(--lx-gutter)) ;
  min-height: var(--content-min-m, auto);
}

.lx-hero[data-layout='split'] .lx-hero__content {
  background: var(--content-bg, transparent);
}
@media (min-width: 990px) {
  .lx-hero__content { padding: var(--content-pad-d, 100px 7vw); }
}
/* Explicit hex fallback: if the design tokens ever fail to load, the media
   area still paints rather than vanishing into the page background. */
.lx-hero__media { position: relative; overflow: hidden; background: var(--lx-linen, #EFEAE3); }
.lx-hero__ph { position: absolute; inset: 0; background: var(--lx-linen, #EFEAE3); }
/* <picture> is inline by default, so height:100% on the inner <img> resolves
   against an auto-height box and the image will not cover. Make the wrapper a
   block that fills the media area, and size the placeholder SVG too. */
.lx-hero__media picture { display: block; width: 100%; height: 100%; }
.lx-hero__media img,
.lx-hero__media video,
.lx-hero__media svg { width: 100%; height: 100%; object-fit: cover; }

.lx-hero[data-layout='split'] .lx-hero__media { min-height: var(--media-h-m, 62vh); }
@media (min-width: 990px) { .lx-hero[data-layout='split'] .lx-hero__media { min-height: var(--media-h-d, 88vh); } }

/* Full-bleed / fullscreen hero */
.lx-hero[data-layout='full'] .lx-hero__grid,
.lx-hero[data-layout='centered'] .lx-hero__grid { position: relative; }
.lx-hero[data-layout='full'] .lx-hero__media,
.lx-hero[data-layout='centered'] .lx-hero__media { position: absolute; inset: 0; z-index: 0; }
.lx-hero[data-layout='full'] .lx-hero__content,
.lx-hero[data-layout='centered'] .lx-hero__content {
  position: relative; z-index: 2;
  min-height: var(--hero-h-m, 78vh);
}
@media (min-width: 990px) {
  .lx-hero[data-layout='full'] .lx-hero__content,
  .lx-hero[data-layout='centered'] .lx-hero__content { min-height: var(--hero-h-d, 92vh); }
}
.lx-hero[data-layout='centered'] .lx-hero__inner { margin-inline: auto; text-align: center; }
.lx-hero[data-layout='centered'] .lx-btn-row { justify-content: center; }
.lx-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: var(--overlay-color, #141310);
  opacity: var(--overlay-opacity, 0.32);
}
.lx-hero__inner { max-width: var(--inner-max, 620px); width: 100%; }

/* Floating caption card — the "PREMIUM QUALITY / Maison Hamza" plate */
.lx-plate {
  position: absolute; z-index: 3;
  background: var(--plate-bg, #fff);
  border-left: 3px solid var(--plate-accent, var(--lx-brass));
  padding: 20px 28px;
  max-width: 260px;
  bottom: var(--plate-bottom, 8%);
  left: var(--plate-left, auto);
  right: var(--plate-right, 12%);
  box-shadow: 0 18px 50px rgba(20,19,16,0.10);
}
.lx-plate small {
  display: block; font-size: 9px; letter-spacing: var(--lx-track-ui);
  text-transform: uppercase; color: var(--lx-stone); margin-bottom: 6px;
}
.lx-plate strong { font-family: var(--lx-font-display); font-size: 19px; font-weight: 400; color: var(--lx-ink); }
@media (max-width: 749px) { .lx-plate { display: var(--plate-mobile, none); } }

.lx-scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 9px; letter-spacing: var(--lx-track-ui); text-transform: uppercase;
  /* Inherits the section's text colour, so it stays legible on cream.
     Overlay layouts set it to white below, where it sits over imagery. */
  color: var(--cue-color, currentColor);
}
.lx-hero[data-layout='full'] .lx-scroll-cue,
.lx-hero[data-layout='centered'] .lx-scroll-cue { color: var(--cue-color, #fff); }
}
.lx-scroll-cue i { display: block; width: 1px; height: 42px; background: currentColor; opacity: 0.5; overflow: hidden; position: relative; }
.lx-scroll-cue i::after {
  content: ''; position: absolute; inset: 0; background: currentColor;
  animation: lx-cue 2.4s var(--lx-ease-io) infinite;
}
@keyframes lx-cue { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); } }

/* --------------------------------------------------------------------------
   10. BRAND / CATEGORY CARDS
   -------------------------------------------------------------------------- */
/* Auto responsive grid — flex-wrap with a computed basis. Liquid works out
   how many fit per row (--auto-cols); centring keeps a short final row
   balanced. Tablet and mobile use their own counts: six across is unusable
   on a phone. */
.lx-autogrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap-m, 14px);
}
.lx-autogrid > * {
  flex: 0 0 calc((100% - (var(--cols-m, 1) - 1) * var(--gap-m, 14px)) / var(--cols-m, 1));
}
@media (min-width: 750px) {
  .lx-autogrid { gap: var(--gap-t, 20px); }
  .lx-autogrid > * {
    flex-basis: calc((100% - (var(--cols-t, 2) - 1) * var(--gap-t, 20px)) / var(--cols-t, 2));
  }
}
@media (min-width: 1200px) {
  .lx-autogrid { gap: var(--gap-d, 24px); }
  .lx-autogrid > * {
    flex-basis: calc((100% - (var(--auto-cols, 4) - 1) * var(--gap-d, 24px)) / var(--auto-cols, 4));
  }
}

.lx-cat {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--card-radius, 0px);
  box-shadow: var(--card-shadow, none);
  border: var(--card-border-w, 0px) solid var(--card-border, transparent);
  transition: border-color 0.4s var(--lx-ease);
}
.lx-cat:hover, .lx-cat:focus-visible { border-color: var(--card-border-hover, var(--lx-brass)); }
.lx-cat .lx-media { aspect-ratio: var(--ratio, 4 / 5); border-radius: inherit; }
.lx-cat__body {
  position: absolute; left: 0; right: 0; z-index: 2;
  padding: var(--card-pad, 30px);
  color: #fff;
}
.lx-cat[data-title-pos='bottom'] .lx-cat__body { bottom: 0; }
.lx-cat[data-title-pos='center'] .lx-cat__body { top: 50%; transform: translateY(-50%); text-align: center; }
.lx-cat[data-title-pos='below'] .lx-cat__body { position: static; padding: 20px 0 0; color: inherit; }
.lx-cat[data-title-pos='below'] .lx-scrim { display: none; }

.lx-cat__eyebrow { font-size: 10px; letter-spacing: var(--lx-track-ui); text-transform: uppercase; color: var(--cat-eyebrow, rgba(255,255,255,0.72)); display: block; margin-bottom: 10px; }
.lx-cat__title {
  font-family: var(--h-family, var(--lx-font-display));
  font-size: var(--cat-size-m, var(--cat-size-d, 22px));
  font-weight: 400; line-height: 1.15; color: var(--cat-title, #fff);
}
@media (min-width: 1200px) { .lx-cat__title { font-size: var(--cat-size-d, 27px); } }
.lx-cat__count { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; margin-top: 6px; display: block; }
.lx-cat__cta {
  margin-top: 14px;
  opacity: var(--cta-rest-opacity, 1);
  transform: translateY(var(--cta-rest-y, 0));
  transition: opacity 0.5s var(--lx-ease), transform 0.5s var(--lx-ease);
}
.lx-cat[data-reveal-cta='true'] .lx-cat__cta { opacity: 0; transform: translateY(12px); }
.lx-cat[data-reveal-cta='true']:hover .lx-cat__cta { opacity: 1; transform: translateY(0); }
.lx-cat:hover .lx-scrim { opacity: 0.92; }


.lx-cat--circle {
  border: 0;
  width: 100%;
  overflow: visible;
  box-shadow: none;
}
.lx-cat--circle .lx-media {
  max-width: var(--circle-size, 120px);
  margin-inline: auto;
}
.lx-cat--circle .lx-media {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}
.lx-cat--circle .lx-scrim,
.lx-cat--circle .lx-cat__body { display: none; }

/* Hairline ring so pale product shots don't dissolve into the canvas;
   thickens to brass on hover, the only cue a text-free card can carry. */
.lx-cat--circle .lx-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--lx-line);
  transition: box-shadow 0.45s var(--lx-ease);
  pointer-events: none;
  z-index: 2;
}
.lx-cat--circle:hover .lx-media::after,
.lx-cat--circle:focus-visible .lx-media::after {
  box-shadow: inset 0 0 0 2px var(--lx-brass);
}

/* --------------------------------------------------------------------------
   11. PRODUCT CARD
   -------------------------------------------------------------------------- */
.lx-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--card-bg, transparent);
  border-radius: var(--card-radius, 0px);
  border: var(--card-border-w, 0px) solid var(--card-border-c, var(--lx-line));
  padding: var(--card-pad, 0px);
  height: 100%;
}
.lx-card--equal .lx-card__info { flex: 1; display: flex; flex-direction: column; }
.lx-card__media { position: relative; display: block; overflow: hidden; border-radius: inherit; }
.lx-card__media .lx-media { aspect-ratio: var(--ratio, 1 / 1); }

/* Secondary image cross-fade */
.lx-card__alt {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.7s var(--lx-ease);
  object-fit: cover; width: 100%; height: 100%;
}
.lx-card:hover .lx-card__alt { opacity: 1; }

.lx-badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.lx-badges[data-pos='right'] { left: auto; right: 12px; align-items: flex-end; }
.lx-badge {
  display: inline-block; padding: 6px 11px;
  font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 1; color: #fff; background: var(--lx-brass);
  border-radius: var(--badge-radius, 0px);
}
.lx-badge--sale { background: var(--badge-sale-bg, #8C3B2E); }
.lx-badge--sold { background: var(--badge-sold-bg, #6E6A62); }
.lx-badge--new  { background: var(--badge-new-bg, var(--lx-brass)); }
.lx-badge--best { background: var(--badge-best-bg, var(--lx-ink)); }
.lx-badge--custom { background: var(--badge-custom-bg, var(--lx-brass)); }

.lx-card__actions {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(8px);
  transition: opacity 0.45s var(--lx-ease), transform 0.45s var(--lx-ease);
}
.lx-card:hover .lx-card__actions,
.lx-card:focus-within .lx-card__actions { opacity: 1; transform: translateX(0); }
@media (hover: none) { .lx-card__actions { opacity: 1; transform: none; } }
.lx-card__action {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: rgba(255,255,255,0.94); color: var(--lx-ink);
  border: 0; cursor: pointer; border-radius: var(--action-radius, 0px);
  transition: background 0.3s, color 0.3s;
}
.lx-card__action:hover { background: var(--lx-ink); color: #fff; }
.lx-card__action.is-active { background: var(--lx-brass); color: #fff; }

.lx-card__info { padding-top: 18px; }
.lx-card__vendor {
  font-size: 9px; letter-spacing: var(--lx-track-ui); text-transform: uppercase;
  color: var(--vendor-color, var(--lx-stone)); display: block; margin-bottom: 8px;
}
.lx-card__title {
  font-family: var(--h-family, var(--lx-font-display));
  font-size: var(--title-size, 17px); font-weight: 400; line-height: 1.35;
  color: var(--title-color, var(--lx-ink));
  transition: color 0.3s var(--lx-ease);
}
.lx-card:hover .lx-card__title { color: var(--title-color-hover, var(--lx-brass)); }
.lx-card__price { display: flex; align-items: baseline; gap: 9px; margin-top: 9px; font-size: 14px; }
.lx-card__price ins { text-decoration: none; font-weight: 600; color: var(--price-color, var(--lx-ink)); }
.lx-card__price del { color: var(--lx-stone); font-size: 13px; }
.lx-card__price .lx-onsale { color: var(--lx-brass); font-size: 12px; letter-spacing: 0.06em; }

.lx-rating { display: flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 11px; color: var(--lx-stone); }
.lx-stars { display: inline-flex; gap: 2px; color: var(--star-color, var(--lx-brass)); }

.lx-swatches { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.lx-swatch {
  width: 15px; height: 15px; border-radius: 50%;
  border: 1px solid rgba(20,19,16,0.16);
  padding: 0; cursor: pointer; background-size: cover; background-position: center;
  transition: transform 0.3s var(--lx-ease), box-shadow 0.3s;
}
.lx-swatch:hover, .lx-swatch.is-active { transform: scale(1.18); box-shadow: 0 0 0 1px var(--lx-ink); }
.lx-swatch__more { font-size: 10px; color: var(--lx-stone); align-self: center; }

.lx-card__cta { margin-top: auto; padding-top: 16px; }
.lx-card__cta .lx-btn { width: 100%; }
.lx-card[data-cta='hover'] .lx-card__cta {
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s var(--lx-ease), transform 0.45s var(--lx-ease);
}
.lx-card[data-cta='hover']:hover .lx-card__cta,
.lx-card[data-cta='hover']:focus-within .lx-card__cta { opacity: 1; transform: translateY(0); }
@media (hover: none) { .lx-card[data-cta='hover'] .lx-card__cta { opacity: 1; transform: none; } }

/* Overlay CTA style — button floats over the image bottom */
.lx-card[data-cta='overlay'] .lx-card__cta {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
  padding-top: 0; opacity: 0; transform: translateY(10px);
  transition: opacity 0.45s var(--lx-ease), transform 0.45s var(--lx-ease);
}
.lx-card[data-cta='overlay']:hover .lx-card__cta { opacity: 1; transform: translateY(0); }

.lx-card__sold {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
  background: rgba(250,248,245,0.72);
  font-size: 10px; letter-spacing: var(--lx-track-ui); text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   12. MARQUEE — genuinely seamless (group duplicated N times, translate by 100/N%)
   -------------------------------------------------------------------------- */
.lx-marquee {
  --lx-repeat: 4;
  position: relative; overflow: hidden;
  display: flex; width: 100%;
  background: var(--bg-color, transparent);
  -webkit-mask-image: var(--edge-mask, none);
          mask-image: var(--edge-mask, none);
}
.lx-marquee__track {
  display: flex; flex: 0 0 auto; min-width: 100%;
  will-change: transform;
  animation: lx-marquee var(--speed-m, var(--speed-d, 34s)) linear infinite;
  animation-direction: var(--direction, normal);
}
@media (min-width: 750px) { .lx-marquee__track { animation-duration: var(--speed-d, 34s); } }

.lx-marquee[data-pause='true']:hover .lx-marquee__track { animation-play-state: paused; }
.lx-marquee__group { display: flex; align-items: center; flex: 0 0 auto; }

.lx-marquee__item {
  display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto;
  padding-inline: var(--item-gap, 26px);
  font-family: var(--m-family, var(--lx-font-body));
  font-size: var(--m-size-m, var(--m-size-d, 12px));
  font-weight: var(--m-weight, 500);
  font-style: var(--m-style, normal);
  letter-spacing: var(--m-ls, var(--lx-track-ui));
  text-transform: var(--m-transform, uppercase);
  line-height: 1;
  color: var(--m-color, var(--lx-ink));
  white-space: nowrap;
}
@media (min-width: 1200px) { .lx-marquee__item { font-size: var(--m-size-d, 12px); } }
.lx-marquee__sep { color: var(--sep-color, var(--lx-brass)); flex: 0 0 auto; display: inline-flex; padding-inline: var(--item-gap, 26px); }
.lx-marquee__item img, .lx-marquee__item svg { height: var(--icon-size, 20px); width: auto; }

.lx-marquee[data-mask='soft'] {
  --edge-mask: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.lx-marquee[data-mask='strong'] {
  --edge-mask: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

@keyframes lx-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-100% / var(--lx-repeat)), 0, 0); }
}

/* --------------------------------------------------------------------------
   13. VIDEO SECTION
   -------------------------------------------------------------------------- */
.lx-video { position: relative; }
.lx-video__frame {
  position: relative; overflow: hidden;
  border-radius: var(--media-radius, 0px);
  min-height: var(--v-height-m, 60vh);
}
@media (min-width: 990px) { .lx-video__frame { min-height: var(--v-height-d, 78vh); } }
.lx-video__frame video, .lx-video__frame iframe, .lx-video__frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0;
}
.lx-video__overlay { position: absolute; inset: 0; background: var(--overlay-color, #141310); opacity: var(--overlay-opacity, 0.3); }
.lx-video__content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: var(--v-align, center);
  min-height: inherit; padding: 60px var(--lx-gutter);
}
.lx-video__content[data-align='center'] { align-items: center; text-align: center; }
.lx-video__content[data-align='right'] { align-items: flex-end; text-align: right; }
.lx-video__inner { max-width: var(--inner-max, 600px); }

.lx-video[data-layout='split'] .lx-video__grid { display: grid; gap: var(--gap-d, 0px); }
@media (min-width: 990px) {
  .lx-video[data-layout='split'] .lx-video__grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .lx-video[data-layout='split'][data-media='right'] .lx-video__frame { order: 2; }
}
.lx-video[data-layout='split'] .lx-video__content { padding: 56px 6vw; min-height: 0; }

.lx-play {
  position: absolute; z-index: 4; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: var(--play-size, 88px); height: var(--play-size, 88px);
  display: grid; place-items: center;
  border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.10);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: background 0.45s var(--lx-ease), transform 0.45s var(--lx-ease), border-color 0.45s;
}
.lx-play::after {
  content: ''; position: absolute; inset: -1px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  animation: lx-pulse 2.8s var(--lx-ease-io) infinite;
}
.lx-play:hover { background: #fff; color: var(--lx-ink); transform: translate(-50%, -50%) scale(1.06); }
.lx-play.is-hidden { opacity: 0; visibility: hidden; }
@keyframes lx-pulse {
  0%   { transform: scale(1); opacity: 0.9; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --------------------------------------------------------------------------
   14. TESTIMONIALS
   -------------------------------------------------------------------------- */
.lx-quote {
  display: flex; flex-direction: column; height: 100%;
  background: var(--card-bg, var(--lx-white));
  border: var(--card-border-w, 1px) solid var(--card-border-c, var(--lx-line));
  border-radius: var(--card-radius, 0px);
  padding: var(--card-pad, 38px);
}
.lx-quote__stars { color: var(--star-color, var(--lx-brass)); display: flex; gap: 3px; margin-bottom: 20px; }
.lx-quote__text {
  font-family: var(--q-family, var(--lx-font-display));
  font-size: var(--q-size-m, var(--q-size-d, 17px));
  font-style: var(--q-style, normal);
  line-height: var(--q-lh, 1.65);
  color: var(--q-color, var(--lx-ink-soft));
  flex: 1;
}
@media (min-width: 1200px) { .lx-quote__text { font-size: var(--q-size-d, 18px); } }
.lx-quote__foot { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--lx-line); }
.lx-quote__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; background: var(--lx-linen); }
.lx-quote__name { font-family: var(--lx-font-display); font-size: 15px; color: var(--lx-ink); display: block; }
.lx-quote__meta { font-size: 9px; letter-spacing: var(--lx-track-ui); text-transform: uppercase; color: var(--lx-stone); margin-top: 4px; display: flex; align-items: center; gap: 6px; }
.lx-verified { display: inline-flex; align-items: center; gap: 4px; color: var(--lx-brass); }

/* --------------------------------------------------------------------------
   15. NEWSLETTER
   -------------------------------------------------------------------------- */
.lx-news__grid { display: grid; gap: 0; }
@media (min-width: 990px) {
  .lx-news[data-layout='split'] .lx-news__grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .lx-news[data-layout='split'][data-media='right'] .lx-news__media { order: 2; }
}
.lx-news__content { padding: var(--content-pad, 56px 5vw); }
.lx-news[data-layout='centered'] .lx-news__content { text-align: center; max-width: 720px; margin-inline: auto; padding-inline: var(--lx-gutter); }
.lx-news[data-layout='centered'] .lx-form { margin-inline: auto; }

.lx-form { display: flex; gap: 0; max-width: var(--form-max, 520px); margin-top: 34px; }
.lx-form input[type='email'] {
  flex: 1; min-width: 0;
  padding: 17px 18px;
  border: 1px solid var(--field-border, var(--lx-line));
  border-right: 0;
  background: var(--field-bg, transparent);
  color: var(--field-fg, var(--lx-ink));
  font-family: var(--lx-font-body); font-size: 13px;
  border-radius: 0;
}
.lx-form input::placeholder { color: var(--lx-stone); letter-spacing: 0.04em; }
.lx-form input:focus { outline: none; border-color: var(--lx-ink); }
.lx-form .lx-btn { flex: 0 0 auto; border-radius: 0; }
@media (max-width: 599px) { .lx-form { flex-direction: column; gap: 12px; } .lx-form input { border-right: 1px solid var(--field-border, var(--lx-line)); } }
.lx-form__note { font-size: 11px; color: var(--lx-stone); margin-top: 14px; letter-spacing: 0.03em; }
.lx-form__success { margin-top: 16px; font-size: 12px; color: var(--lx-brass); letter-spacing: var(--lx-track-ui); text-transform: uppercase; }

/* --------------------------------------------------------------------------
   16. INSTAGRAM
   -------------------------------------------------------------------------- */
.lx-ig__item { position: relative; display: block; overflow: hidden; border-radius: var(--card-radius, 0px); }
.lx-ig__item .lx-media { aspect-ratio: var(--ratio, 1 / 1); }
.lx-ig__hover {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(20,19,16,var(--hover-opacity, 0.42));
  color: #fff; opacity: 0;
  transition: opacity 0.5s var(--lx-ease);
}
.lx-ig__item:hover .lx-ig__hover { opacity: 1; }
.lx-ig__hover svg { transform: scale(0.8); transition: transform 0.5s var(--lx-ease); }
.lx-ig__item:hover .lx-ig__hover svg { transform: scale(1); }
.lx-ig__handle { display: inline-flex; align-items: center; gap: 9px; }

/* --------------------------------------------------------------------------
   17. TRUST BAR
   -------------------------------------------------------------------------- */
.lx-trust__item { text-align: var(--t-align, center); }
.lx-trust__icon { color: var(--icon-color, var(--lx-brass)); margin-bottom: 18px; display: inline-flex; }
.lx-trust__icon svg { width: var(--icon-size, 28px); height: var(--icon-size, 28px); }
.lx-trust__icon img { height: var(--icon-size, 28px); width: auto; }
.lx-trust__title { font-family: var(--lx-font-display); font-size: var(--t-size, 18px); color: var(--t-color, inherit); margin-bottom: 10px; }

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.lx-footer { background: var(--bg-color, var(--lx-ink)); color: var(--fg-color, rgba(255,255,255,0.66)); }
.lx-footer__grid { display: grid; gap: 44px; grid-template-columns: 1fr; }
@media (min-width: 750px)  { .lx-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 48px; } }
@media (min-width: 990px)  { .lx-footer__grid { grid-template-columns: var(--footer-cols, 1.6fr 1fr 1fr 1fr); gap: 56px; } }
.lx-footer__title {
  font-size: 10px; letter-spacing: var(--lx-track-ui); text-transform: uppercase;
  color: var(--heading-color, #fff); margin-bottom: 22px; display: block;
}
.lx-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.lx-footer__list a { font-size: 13px; color: inherit; transition: color 0.3s var(--lx-ease), transform 0.35s var(--lx-ease); display: inline-block; }
.lx-footer__list a:hover { color: var(--link-hover, var(--lx-brass-lt)); transform: translateX(3px); }
.lx-footer .lx-logo { color: var(--logo-color, #fff); margin-bottom: 20px; }
.lx-footer__blurb { font-size: 13px; line-height: 1.85; max-width: 380px; }

.lx-social { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.lx-social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--social-border, rgba(255,255,255,0.18));
  color: inherit; border-radius: var(--social-radius, 0);
  transition: background 0.35s var(--lx-ease), color 0.35s var(--lx-ease), border-color 0.35s, transform 0.35s var(--lx-ease);
}
.lx-social a:hover { background: var(--lx-brass); border-color: var(--lx-brass); color: #fff; transform: translateY(-2px); }

.lx-footer__bar {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid var(--divider, rgba(255,255,255,0.12));
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 11px; letter-spacing: 0.04em;
}
.lx-payments { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.lx-payments svg, .lx-payments img { height: 22px; width: auto; opacity: 0.75; }
.lx-trustbadges { display: flex; gap: 18px; flex-wrap: wrap; font-size: 10px; letter-spacing: var(--lx-track-ui); text-transform: uppercase; }

/* --------------------------------------------------------------------------
   19. ANIMATIONS — scroll reveal driven by IntersectionObserver
   -------------------------------------------------------------------------- */
[data-lx-anim] {
  opacity: 0;
  transition:
    opacity var(--anim-dur, 0.9s) var(--lx-ease) var(--anim-delay, 0s),
    transform var(--anim-dur, 0.9s) var(--lx-ease) var(--anim-delay, 0s),
    clip-path var(--anim-dur, 0.9s) var(--lx-ease) var(--anim-delay, 0s);
  will-change: opacity, transform;
}
[data-lx-anim='fade'] { opacity: 0; }
[data-lx-anim='up']    { transform: translateY(var(--anim-dist, 34px)); }
[data-lx-anim='down']  { transform: translateY(calc(var(--anim-dist, 34px) * -1)); }
[data-lx-anim='left']  { transform: translateX(var(--anim-dist, 40px)); }
[data-lx-anim='right'] { transform: translateX(calc(var(--anim-dist, 40px) * -1)); }
[data-lx-anim='scale'] { transform: scale(0.94); }
[data-lx-anim='reveal'] { opacity: 1; clip-path: inset(0 0 100% 0); }
[data-lx-anim='blur'] { filter: blur(10px); transform: translateY(20px); }

[data-lx-anim].is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
  filter: none;
}

/* Word-by-word heading reveal (the hero's signature entrance) */
/* Applied directly to the heading element, so it must not override the
   element's own display. The animated pieces are the inner spans. */
.lx-reveal-words .lx-word { will-change: transform; }
.lx-reveal-words .lx-word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.lx-reveal-words .lx-word > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1s var(--lx-ease);
  transition-delay: calc(var(--w, 0) * 70ms + var(--anim-delay, 0s));
}
.lx-reveal-words.is-visible .lx-word > span { transform: translateY(0); }

@keyframes lx-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes lx-rise { to { opacity: 1; transform: translateY(0); } }

/* Parallax layer — transform driven from JS, GPU only */
[data-lx-parallax] { will-change: transform; }

/* --------------------------------------------------------------------------
   20. MOTION + PRINT SAFETY
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-lx-anim] { opacity: 1 !important; transform: none !important; clip-path: none !important; filter: none !important; }
  .lx-reveal-words .lx-word > span { transform: none !important; }
  .lx-marquee__track { animation: none !important; }
}

/* Skeleton shimmer used while section content streams in the editor */
.lx-skeleton { position: relative; overflow: hidden; background: var(--lx-linen); }
.lx-skeleton::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: lx-shimmer 1.4s infinite;
}
@keyframes lx-shimmer { to { transform: translateX(100%); } }


/* --------------------------------------------------------------------------
   WhatsApp button (product card)
   Every value is a custom property fed by the theme editor, so nothing here
   is hardcoded and the mobile overrides live in one media query.
   -------------------------------------------------------------------------- */
.lx-wa-wrap {
  display: flex;
  justify-content: var(--wa-align, center);
  margin-top: var(--wa-gap, 12px);
}
.lx-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  box-sizing: border-box;
  width: var(--wa-w-m, 160px);
  min-height: var(--wa-h-m, 40px);
  padding-inline: var(--wa-pad-m, 12px);
  font-family: var(--lx-font-body);
  font-size: var(--wa-size-m, 11px);
  font-weight: var(--wa-weight, 600);
  letter-spacing: var(--lx-track-ui);
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  color: var(--wa-fg, #fff);
  background: var(--wa-bg, #25D366);
  border: var(--wa-border-w, 0px) solid var(--wa-border, transparent);
  border-radius: var(--wa-radius, 0px);
  transition: background-color 0.35s var(--lx-ease),
              color 0.35s var(--lx-ease),
              border-color 0.35s var(--lx-ease);
}
.lx-wa svg { width: var(--wa-icon-size-m, 15px); height: var(--wa-icon-size-m, 15px); flex: 0 0 auto; }
.lx-wa:hover, .lx-wa:focus-visible {
  background: var(--wa-bg-hover, #128C7E);
  color: var(--wa-fg-hover, #fff);
  border-color: var(--wa-border-hover, transparent);
}
.lx-wa-wrap[data-full-m='true'] .lx-wa { width: 100%; }

@media (min-width: 750px) {
  .lx-wa {
    width: var(--wa-w-d, 200px);
    min-height: var(--wa-h-d, 44px);
    padding-inline: var(--wa-pad-d, 18px);
    font-size: var(--wa-size-d, 11px);
  }
  .lx-wa svg { width: var(--wa-icon-size, 16px); height: var(--wa-icon-size, 16px); }
  .lx-wa-wrap[data-full-m='true'] .lx-wa { width: var(--wa-w-d, 200px); }
  .lx-wa-wrap[data-full-d='true'] .lx-wa { width: 100%; }
}

/* ==========================================================================
   COLLECTION — banner, toolbar, filters, pagination
   ========================================================================== */
 
/* Banner ------------------------------------------------------------------ */
.lx-cbanner { position: relative; display: grid; align-items: center; }
.lx-cbanner[data-has-media='true'] {
  min-height: var(--banner-h-m, 32vh);
  color: #fff;
}
@media (min-width: 990px) {
  .lx-cbanner[data-has-media='true'] { min-height: var(--banner-h-d, 42vh); }
}
.lx-cbanner[data-has-media='false'] { padding-block: 56px 8px; }
 
.lx-cbanner__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--lx-linen, #EFEAE3); }
.lx-cbanner__media picture { display: block; width: 100%; height: 100%; }
.lx-cbanner__media img { width: 100%; height: 100%; object-fit: cover; }
.lx-cbanner__scrim {
  position: absolute; inset: 0;
  background: var(--overlay-color, var(--lx-ink));
  opacity: var(--overlay-opacity, 0.34);
}
.lx-cbanner__content { position: relative; z-index: 2; display: grid; gap: 14px; padding-block: 48px; }
.lx-cbanner__content[data-align='center'] { justify-items: center; text-align: center; }
.lx-cbanner__content[data-align='right'] { justify-items: end; text-align: right; }
.lx-cbanner__body { max-width: var(--banner-max, 720px); }
.lx-cbanner__count {
  font-size: 11px; letter-spacing: var(--lx-track-ui); text-transform: uppercase;
  opacity: 0.75;
}
 
/* Breadcrumb -------------------------------------------------------------- */
.lx-crumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
  font-size: 11px; letter-spacing: var(--lx-track-ui); text-transform: uppercase;
  opacity: 0.7;
}
.lx-crumbs a { transition: opacity 0.3s var(--lx-ease); }
.lx-crumbs a:hover { opacity: 0.6; }
 
/* Toolbar ----------------------------------------------------------------- */
.lx-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding-bottom: 20px; margin-bottom: 28px;
  border-bottom: 1px solid var(--lx-line);
}
.lx-toolbar__left, .lx-toolbar__right { display: flex; align-items: center; gap: 18px; }
.lx-toolbar__btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; letter-spacing: var(--lx-track-ui); text-transform: uppercase;
  padding: 10px 0;
}
.lx-toolbar__badge {
  display: inline-grid; place-items: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--lx-brass); color: #fff;
  border-radius: 999px; font-size: 10px; letter-spacing: 0;
}
.lx-toolbar__count { font-size: 12px; color: var(--lx-stone); }
 
.lx-select { position: relative; display: inline-flex; align-items: center; }
.lx-select select {
  appearance: none; -webkit-appearance: none;
  background: none; border: 0; cursor: pointer;
  padding: 10px 24px 10px 0;
  font-family: inherit; font-size: 11px;
  letter-spacing: var(--lx-track-ui); text-transform: uppercase;
  color: inherit;
}
.lx-select svg { position: absolute; right: 0; pointer-events: none; }
 
/* Active filter pills ----------------------------------------------------- */
.lx-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.lx-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--lx-line);
  font-size: 11px; letter-spacing: 0.04em;
  transition: border-color 0.3s var(--lx-ease), background-color 0.3s var(--lx-ease);
}
.lx-pill:hover { border-color: var(--lx-ink); }
.lx-pill--clear { border-style: dashed; color: var(--lx-stone); }
 
/* Layout: rail + results -------------------------------------------------- */
.lx-carchive__layout { display: block; }
@media (min-width: 990px) {
  .lx-carchive__layout[data-rail='sidebar'] {
    display: grid;
    grid-template-columns: var(--rail-w, 232px) minmax(0, 1fr);
    gap: var(--rail-gap, 48px);
    align-items: start;
  }
}
 
/* Filter rail ------------------------------------------------------------- */
/* Mobile and 'drawer' mode: an off-canvas panel. Desktop sidebar mode: static. */
.lx-filters {
  position: fixed; top: 0; bottom: 0; left: 0;
  z-index: 100;
  width: min(360px, 86vw);
  display: flex; flex-direction: column;
  background: var(--lx-canvas);
  transform: translateX(-100%);
  transition: transform 0.5s var(--lx-ease-out);
  visibility: hidden;
}
.lx-filters.is-open { transform: translateX(0); visibility: visible; }
.lx-filters__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--lx-gutter);
  border-bottom: 1px solid var(--lx-line);
  font-size: 11px; letter-spacing: var(--lx-track-ui); text-transform: uppercase;
  flex: 0 0 auto;
}
.lx-filters__body { flex: 1 1 auto; overflow-y: auto; padding: 8px var(--lx-gutter) 32px; }
 
@media (min-width: 990px) {
  .lx-carchive__layout[data-rail='sidebar'] .lx-filters {
    position: static; width: auto; transform: none; visibility: visible;
    background: none; display: block;
  }
  .lx-carchive__layout[data-rail='sidebar'] .lx-filters__head { display: none; }
  .lx-carchive__layout[data-rail='sidebar'] .lx-filters__body { padding: 0; overflow: visible; }
}
 
/* Facet groups ------------------------------------------------------------ */
.lx-facet { border-bottom: 1px solid var(--lx-line); }
.lx-facet summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 18px 0; cursor: pointer; list-style: none;
  font-size: 11px; letter-spacing: var(--lx-track-ui); text-transform: uppercase;
}
.lx-facet summary::-webkit-details-marker { display: none; }
.lx-facet summary svg { transition: transform 0.35s var(--lx-ease); flex: 0 0 auto; }
.lx-facet[open] summary svg { transform: rotate(180deg); }
.lx-facet__body { padding-bottom: 18px; }
.lx-facet__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; max-height: 280px; overflow-y: auto; }
 
.lx-check {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; cursor: pointer; font-size: 13px;
}
.lx-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.lx-check__box {
  display: grid; place-items: center;
  width: 16px; height: 16px; flex: 0 0 auto;
  border: 1px solid var(--lx-line);
  color: transparent;
  transition: background-color 0.25s var(--lx-ease), border-color 0.25s var(--lx-ease), color 0.25s var(--lx-ease);
}
.lx-check input:checked + .lx-check__box {
  background: var(--lx-ink); border-color: var(--lx-ink); color: #fff;
}
.lx-check input:focus-visible + .lx-check__box { outline: 2px solid var(--lx-brass); outline-offset: 2px; }
.lx-check__label { flex: 1 1 auto; }
.lx-check__count { color: var(--lx-stone); font-size: 11px; }
.lx-check.is-disabled { opacity: 0.38; cursor: not-allowed; }
 
.lx-price { display: flex; align-items: center; gap: 10px; }
.lx-price label { flex: 1 1 0; }
.lx-price input {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--lx-line); background: none;
  font-family: inherit; font-size: 13px; color: inherit;
}
.lx-price input:focus { outline: none; border-color: var(--lx-ink); }
 
/* Results loading state --------------------------------------------------- */
[data-lx-results] { transition: opacity 0.25s var(--lx-ease); }
[data-lx-results].is-loading { opacity: 0.45; pointer-events: none; }
 
/* Pagination -------------------------------------------------------------- */
.lx-pagination {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px;
  margin-top: 64px;
}
.lx-page {
  display: inline-grid; place-items: center;
  min-width: 40px; height: 40px; padding: 0 8px;
  font-size: 13px;
  border: 1px solid transparent;
  transition: border-color 0.3s var(--lx-ease), background-color 0.3s var(--lx-ease), color 0.3s var(--lx-ease);
}
.lx-page:hover { border-color: var(--lx-line); }
.lx-page[aria-current='page'] { background: var(--lx-ink); color: var(--lx-canvas); }
.lx-page--gap { pointer-events: none; opacity: 0.5; }
.lx-page--arrow { border-color: var(--lx-line); }
 
/* Empty state ------------------------------------------------------------- */
.lx-empty {
  display: grid; justify-items: center; gap: 18px;
  padding: 90px 20px; text-align: center;
  color: var(--lx-stone);
}
.lx-empty__title { font-family: var(--lx-font-display); font-size: 20px; color: var(--lx-ink); margin: 0; }