/** Shopify CDN: Minification failed

Line 2400:7 Unexpected "{"
Line 2400:16 Expected ":"
Line 2409:7 Unexpected "{"
Line 2409:16 Expected ":"
Line 2420:7 Unexpected "{"
Line 2420:16 Expected ":"
Line 2427:7 Unexpected "{"
Line 2427:16 Expected ":"
Line 2441:7 Unexpected "{"
Line 2441:16 Expected ":"
... and 80 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:bundle-addons (INDEX:9) */
.bundle {padding:clamp(16px,3vw,36px); background:#fff;}
.bundle__head {text-align:center; margin-bottom:18px;}
.bundle__title {font-weight:800; font-size:clamp(22px,5vw,34px); letter-spacing:.3px;}
.bundle__sub {opacity:.8; max-width:820px; margin:8px auto 0; font-size:clamp(14px,2.2vw,16px);}
.bundle__wrap {display:grid; gap:clamp(12px,2vw,18px); grid-template-columns: 1fr;}
.bundle__cards {display:grid; gap:clamp(10px,1.8vw,16px);}
@media(min-width: 992px){ .bundle__wrap {grid-template-columns: 2fr 1fr;} }

.addon-card {display:flex; gap:12px; padding:10px; border:1px solid rgba(0,0,0,.08); border-radius:16px; align-items:center;}
.addon-card__img {width:72px; height:72px; border-radius:12px; background:#f6f6f6; overflow:hidden; flex:0 0 72px;}
.addon-card__img img {width:100%; height:100%; object-fit:cover;}
.addon-card__body {flex:1 1 auto;}
.addon-card__title {font-weight:600; font-size:14px; line-height:1.3; margin:0 0 6px;}
.addon-card__price {display:flex; gap:8px; align-items:baseline;}
.addon-card__now {font-weight:800;}
.addon-card__was {text-decoration:line-through; opacity:.55; font-size:13px;}

.addon-card__ctrl {display:flex; gap:10px; align-items:center; margin-left:auto;}
.addon-qty {display:flex; border:1px solid rgba(0,0,0,.12); border-radius:999px; overflow:hidden; align-items:center;}
.addon-qty button {border:0; background:transparent; width:32px; height:32px; font-weight:700; cursor:pointer;}
.addon-qty input {width:42px; text-align:center; border:0; outline:0; height:32px; font-weight:700;}

.summary {position:sticky; top:20px; border:1px solid rgba(0,0,0,.08); border-radius:16px; padding:16px; height:fit-content;}
.summary__row {display:flex; justify-content:space-between; margin:6px 0;}
.summary__total {font-weight:900; font-size:18px;}
.summary__save {color:#2563eb; font-weight:700;}
.btn-primary {display:block; width:100%; text-align:center; font-weight:800; border-radius:999px; padding:12px 16px; background:#ff7010; color:#fff;}
.btn-primary:hover {opacity:.95;}
.badge {display:inline-block; padding:4px 8px; border-radius:999px; background:#2563eb; color:#fff; font-size:11px; font-weight:700; margin-left:6px;}
/* END_SECTION:bundle-addons */

/* START_SECTION:collection-banners (INDEX:11) */
/* ================================================
   COLLECTION BANNERS — Namah Crystals editorial
   Two-panel split, content anchored to bottom-left
   ================================================ */

.cb-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--cb-gap, 2px);
  overflow: visible;
  background: #111;
  height: auto;
  min-height: 0;
}

/* ── Single panel ── */
.cb-panel {
  position: relative;
  display: block;
  width: 100%;
  height: var(--cb-height-mobile, 100vh);
  min-height: var(--cb-height-mobile, 100vh);
  flex: 0 0 var(--cb-height-mobile, 100vh);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* ── Image ── */
.cb-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.05);
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.55s ease;
  filter: grayscale(var(--cb-grayscale, 100%));
  will-change: transform;
}

.cb-img--empty {
  background: #1c1c1c;
}

.cb-panel:hover .cb-img,
.cb-panel:focus-visible .cb-img {
  transform: scale(1);
  filter: grayscale(0%) !important;
}

/* ── Overlay — strong at bottom so text is always legible ── */
.cb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.02)  0%,
    rgba(0, 0, 0, 0.08)  40%,
    rgba(0, 0, 0, var(--cb-overlay-end, 0.62)) 100%
  );
  pointer-events: none;
  transition: background 0.7s ease;
}

.cb-panel:hover .cb-overlay,
.cb-panel:focus-visible .cb-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.00)  0%,
    rgba(0, 0, 0, 0.04)  40%,
    rgba(0, 0, 0, 0.28)  100%
  );
}

/* ── Content shell: two flex zones ── */
.cb-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  pointer-events: none;
}

/* Title zone — expands to fill space, centers the title within it */
.cb-title-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 1.5rem;
  width: 100%;
}

/* Footer zone — description + CTA, sits at the panel bottom */
.cb-footer-zone {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 0 2rem 2.5rem;
  width: 100%;
}

/* Eyebrow */
.cb-eyebrow {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0.6rem;
}

/* Main title — Gibs font, uppercase editorial */
.cb-title {
  font-family: 'Gibs', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', Calibri, sans-serif;
  font-size: var(--cb-title-size-mob, 14vw);
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
  line-height: 0.92;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
}

/* Decorative rule — hidden by default, appears on hover */
.cb-rule {
  width: 2.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  margin: 0.75rem auto 0;
  flex-shrink: 0;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cb-panel:hover .cb-rule,
.cb-panel:focus-visible .cb-rule {
  opacity: 1;
  transform: scaleX(1);
}

/* Footer zone — hidden by default, fades in on hover */
.cb-footer-zone {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.cb-panel:hover .cb-footer-zone,
.cb-panel:focus-visible .cb-footer-zone {
  opacity: 1;
  transform: translateY(0);
}

/* Description — revealed on hover */
.cb-desc {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  max-width: 20rem;
  margin: 0;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.6);
}

/* CTA — directly below description */
.cb-cta {
  display: inline-block;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.cb-panel:hover .cb-cta,
.cb-panel:focus-visible .cb-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}

/* Focus ring */
.cb-panel:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: -3px;
}


/* ── Mobile fix: show Luxe then Essentials as two full-screen banners ── */
@media (max-width: 767px) {
  .cb-section-wrapper,
  .cb-section {
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .cb-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    scroll-snap-type: y proximity;
  }

  .cb-panel {
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: none !important;
    flex: 0 0 100vh !important;
    scroll-snap-align: start;
  }

  @supports (height: 100svh) {
    .cb-panel {
      height: 100svh !important;
      min-height: 100svh !important;
      flex-basis: 100svh !important;
    }
  }

  .cb-img-wrap,
  .cb-img {
    height: 100% !important;
  }

  .cb-img {
    object-fit: cover !important;
    object-position: center center !important;
  }

  .cb-title-zone {
    padding: 5.5rem 1.4rem 1.5rem !important;
  }

  .cb-title {
    font-size: clamp(4.6rem, 18vw, 7.2rem) !important;
  }

  .cb-footer-zone {
    opacity: 1 !important;
    transform: none !important;
    padding: 0 1.4rem 3rem !important;
  }

  .cb-desc {
    max-width: 18rem !important;
    font-size: 0.72rem !important;
  }
}

/* ── Desktop — side by side ── */
@media (min-width: 768px) {
  .cb-section {
    flex-direction: row;
    height: min(var(--cb-height-desktop, 90vh), var(--cb-max-desktop, 900px));
  }

  .cb-panel {
    flex: 1 1 50%;
    height: 100%;
  }

  .cb-title {
    font-size: var(--cb-title-size-desk, 5vw);
  }

  .cb-desc {
    font-size: 0.75rem;
    max-width: 22rem;
  }

  .cb-content {
    padding: 3rem 3rem 3.5rem;
  }

  /* Hairline divider between panels */
  .cb-panel:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: var(--cb-gap, 2px);
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 3;
    pointer-events: none;
  }
}

/* ── Large screens ── */
@media (min-width: 1200px) {
  .cb-title {
    font-size: clamp(3.5rem, 4.5vw, 6rem);
  }
  .cb-desc {
    font-size: 0.82rem;
    max-width: 26rem;
  }
  .cb-content {
    padding: 3.5rem 4rem 4rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .cb-img,
  .cb-title,
  .cb-cta {
    transition: none !important;
    transform: none !important;
  }
  .cb-img { transform: scale(1) !important; }
  .cb-cta { opacity: 1 !important; }
}
/* END_SECTION:collection-banners */

/* START_SECTION:essentials-collection (INDEX:15) */
:root {
  --ec-bg: #FAF4F0;
  --ec-white: #FFFFFF;
  --ec-text: #321E1D;
  --ec-accent: #B08D57;
  --ec-border: #E8E2D8;
  --ec-muted: #8a7060;
  --ec-font-head: 'Gibs', 'Cormorant Garamond', Georgia, serif;
  --ec-font-body: 'Urbanist', 'Gill Sans', sans-serif;
  --ec-radius: 12px;
  --ec-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html.ec-essentials-page body,
body.ec-essentials-page,
body.ec-essentials-page main,
body.ec-essentials-page #MainContent,
body.ec-essentials-page .content-for-layout {
  background-color: var(--ec-bg) !important;
}

body.ec-essentials-page footer,
body.ec-essentials-page .bwp-footer,
body.ec-essentials-page .footer,
body.ec-essentials-page .site-footer,
body.ec-essentials-page .shopify-section-group-footer-group,
body.ec-essentials-page [id*="__footer"],
body.ec-essentials-page [id*="footer"] {
  background-color: var(--ec-bg) !important;
}

body.ec-essentials-page .bwp-footer,
body.ec-essentials-page footer.bwp-footer {
  margin-top: 0 !important;
}

.ec-video-hero,
.ec-purpose,
.ec-products,
.ec-feature,
.ec-reviews3d,
.ec-join,
.ec-faq {
  font-family: var(--ec-font-body);
  color: var(--ec-text);
  background-color: var(--ec-bg);
  box-sizing: border-box;
}

.ec-video-hero *,
.ec-purpose *,
.ec-products *,
.ec-feature *,
.ec-reviews3d *,
.ec-join *,
.ec-faq *,
.ec-video-hero *::before,
.ec-purpose *::before,
.ec-products *::before,
.ec-feature *::before,
.ec-reviews3d *::before,
.ec-join *::before,
.ec-faq *::before,
.ec-video-hero *::after,
.ec-purpose *::after,
.ec-products *::after,
.ec-feature *::after,
.ec-reviews3d *::after,
.ec-join *::after,
.ec-faq *::after {
  box-sizing: border-box;
}

.ec-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.ec-container--narrow {
  max-width: 780px;
}

.ec-section-title {
  font-family: var(--ec-font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--ec-text);
  margin: 0 0 2.5rem;
}

.ec-section-empty {
  text-align: center;
  color: var(--ec-muted);
  font-size: 0.9rem;
  padding: 2rem 0;
}

/* SECTION 1 — FULL WIDTH VIDEO HERO */
.ec-video-hero {
  position: relative;
  width: 100%;
  height: var(--ec-video-hero-height, 760px);
  min-height: 520px;
  max-height: 100vh;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  font-family: var(--ec-font-body);
}

.ec-video-hero *,
.ec-video-hero *::before,
.ec-video-hero *::after {
  box-sizing: border-box;
}

.ec-video-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000000;
}

.ec-video-hero__video,
.ec-video-hero__poster {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: var(--ec-video-fit, cover);
  object-position: center;
  background: #000000;
}

.ec-video-hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03), transparent 42%),
    linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.06) 42%, rgba(0,0,0,0.22));
}

.ec-video-hero__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EFE3D9, #FAF4F0 52%, #E5D6C8);
  color: rgba(50, 30, 29, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ec-video-hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 2rem));
  min-height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
  color: #ffffff;
}

.ec-video-hero__content::before {
  content: "";
  width: 74px;
  height: 1px;
  margin: 0 auto 1rem;
  background: var(--ec-accent);
}

.ec-video-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.ec-video-hero__title {
  margin: 0;
  font-family: var(--ec-font-head);
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.ec-video-hero__text {
  max-width: 620px;
  margin: 1.1rem auto 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(0.94rem, 1.35vw, 1.1rem);
  line-height: 1.65;
}

.ec-video-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 50px;
  margin-top: 2rem;
  padding: 0.95rem 2rem;
  background: var(--ec-accent);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s var(--ec-ease), background 0.25s ease;
}

.ec-video-hero__btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: #321E1D;
}

@media (max-width: 1024px) {
  .ec-video-hero {
    height: min(var(--ec-video-hero-height, 760px), 760px);
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .ec-video-hero {
    height: min(var(--ec-video-hero-height, 760px), 640px);
    min-height: 460px;
  }

  .ec-video-hero__content {
    padding: 4rem 1rem;
  }

  .ec-video-hero__btn {
    min-width: 190px;
    min-height: 46px;
  }
}

/* SECTION 2 — SHOP BY PURPOSE */
.ec-purpose {
  padding: 5rem 0 4rem;
}

.ec-purpose__track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}

.ec-purpose__track-wrap::-webkit-scrollbar {
  display: none;
}

.ec-purpose__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.5rem 0.5rem 0.75rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .ec-purpose__track {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.ec-purpose__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ec-text);
  cursor: pointer;
  transition: transform 0.25s var(--ec-ease);
  flex: 0 0 auto;
  width: 120px;
}

.ec-purpose__card:hover {
  transform: translateY(-5px);
}

.ec-purpose__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ec-text);
  min-height: 1.5em;
}

.ec-purpose__icon-wrap {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: var(--ec-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(50, 30, 29, 0.07);
  transition: box-shadow 0.25s var(--ec-ease), transform 0.25s var(--ec-ease);
}

.ec-purpose__card:hover .ec-purpose__icon-wrap {
  box-shadow: 0 12px 36px rgba(176, 141, 87, 0.18);
  transform: scale(1.03);
}

.ec-purpose__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ec-purpose__icon-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5ede6;
}

@media (min-width: 900px) {
  .ec-purpose__card {
    width: 140px;
  }

  .ec-purpose__icon-wrap {
    width: 140px;
    height: 140px;
    border-radius: 28px;
  }
}

@media (max-width: 767px) {
  .ec-purpose {
    padding: 3rem 0 3.25rem;
    overflow: hidden;
  }

  .ec-purpose .ec-container {
    padding-left: 1.25rem;
    padding-right: 0;
  }

  .ec-purpose__track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem;
    margin-right: -1.25rem;
  }

  .ec-purpose__track {
    flex-wrap: nowrap;
    gap: 1rem;
    width: max-content;
    max-width: none;
    margin: 0;
    padding: 0.25rem 1.25rem 0.75rem 0;
  }

  .ec-purpose__card {
    flex: 0 0 148px;
    width: 148px;
    min-width: 148px;
    gap: 0.55rem;
    scroll-snap-align: start;
  }

  .ec-purpose__label {
    min-height: 2.1em;
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .ec-purpose__icon-wrap {
    width: 148px;
    height: 148px;
    border-radius: 22px;
  }
}

/* SECTION 3 — PRODUCTS — SWAROVSKI STYLE 0 GAP GRID */
.ec-products {
  padding: 5rem 0 0 !important;
  background: var(--ec-bg);
}

.ec-products__empty {
  text-align: center;
  color: var(--ec-muted);
  padding: 4rem 0;
  font-size: 0.9rem;
}

.ec-products .ec-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.ec-products .ec-section-title {
  margin: 0 0 4rem !important;
  padding: 0 1.25rem;
}

.ec-products__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-top: 1px solid var(--ec-border);
  border-left: 1px solid var(--ec-border);
}

@media (min-width: 768px) {
  .ec-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 !important;
  }
}

@media (min-width: 1200px) {
  .ec-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 !important;
  }
}
/* PRODUCT GRID GAP FIX */
.ec-products__grid {
  gap: 4px !important;
  padding: 4px !important;
  background: #F1ECE6 !important;
  border: 0 !important;
}

.ec-product-card {
  border: 0 !important;
  border-radius: 0 !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
  margin: 0 !important;
}

.ec-product-card:hover {
  box-shadow: none !important;
  transform: none !important;
}

@media (max-width: 767px) {
  .ec-products__grid {
    gap: 3px !important;
    padding: 3px !important;
  }
}
.ec-product-card {
  position: relative;
  background: #ffffff !important;
  border-radius: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-right: 1px solid var(--ec-border);
  border-bottom: 1px solid var(--ec-border);
  transition: none !important;
}

.ec-product-card:hover {
  box-shadow: none !important;
  transform: none !important;
}

.ec-product-card__img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1.08;
  background: #ffffff !important;
  overflow: hidden;
}

.ec-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  padding: 11% !important;
  display: block;
  background: #ffffff !important;
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.ec-product-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.ec-product-card:hover .ec-product-card__img--primary {
  opacity: 0;
  transform: scale(1.03);
}

.ec-product-card:hover .ec-product-card__img--hover {
  opacity: 1;
  transform: scale(1.03);
}

.ec-product-card__img--empty {
  background: #f5ede6;
}

.ec-product-card__info {
  min-height: 155px;
  padding: 1.35rem 1.25rem 1.75rem !important;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: flex-start;
  gap: 0.45rem;
  text-align: center !important;
  background: #ffffff;
}

.ec-product-card__title {
  font-family: var(--ec-font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  text-align: center !important;
}

.ec-product-card__title a {
  color: var(--ec-text);
  text-decoration: none;
}

.ec-product-card__title a:hover {
  color: var(--ec-accent);
}

.ec-product-card__purpose {
  display: block;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent;
  border: 0;
  color: #5f4b45;
  font-family: var(--ec-font-body);
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center !important;
  letter-spacing: 0;
}

.ec-product-card__price {
  display: flex;
  align-items: center;
  justify-content: center !important;
  gap: 0.5rem;
  margin-top: 0.55rem;
  font-size: 1.18rem !important;
  font-weight: 600 !important;
  line-height: 1.2;
  text-align: center !important;
  color: var(--ec-text);
}

.ec-product-card__price--compare {
  color: var(--ec-muted);
  font-weight: 400;
  font-size: 0.9rem;
}

.ec-product-card__price--current {
  color: var(--ec-text);
  font-size: 1.18rem !important;
  font-weight: 600 !important;
}

@media (max-width: 767px) {
  .ec-products {
    padding-top: 3.5rem !important;
  }

  .ec-products .ec-section-title {
    margin-bottom: 2.5rem !important;
  }

  .ec-product-card__img-wrap {
    aspect-ratio: 1 / 1.05;
  }

  .ec-product-card__img {
    padding: 10% !important;
  }

  .ec-product-card__info {
    min-height: 135px;
    padding: 1rem 0.85rem 1.35rem !important;
  }

  .ec-product-card__title {
    font-size: 0.88rem;
  }

  .ec-product-card__purpose {
    font-size: 0.82rem;
  }

  .ec-product-card__price,
  .ec-product-card__price--current {
    font-size: 1rem !important;
  }
}

/* SECTION 4 — IMAGE + TEXT FEATURE */
.ec-feature {
  padding: 0;
  background: var(--ec-white);
}
/* FIX: Shop by Purpose shadow padding / extra gap */
.ec-purpose {
  padding: 4rem 0 1.5rem !important;
  overflow: visible !important;
}

.ec-purpose__track-wrap {
  padding: 12px 0 18px !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
}

.ec-purpose__track {
  padding: 12px 10px 18px !important;
  align-items: flex-start !important;
}

.ec-purpose__card {
  padding-bottom: 0 !important;
}

.ec-purpose__icon-wrap {
  box-shadow: 0 8px 24px rgba(50, 30, 29, 0.10) !important;
}

.ec-purpose__card:hover .ec-purpose__icon-wrap {
  box-shadow: 0 14px 34px rgba(176, 141, 87, 0.22) !important;
}

/* Mobile fix */
@media (max-width: 767px) {
  .ec-purpose {
    padding: 3rem 0 1.25rem !important;
    overflow: hidden !important;
  }

  .ec-purpose__track-wrap {
    padding-bottom: 18px !important;
  }

  .ec-purpose__track {
    padding-bottom: 18px !important;
  }
}
.ec-feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(480px, 46vw, 720px);
  background: var(--ec-white);
}

.ec-feature__inner--reverse .ec-feature__media {
  order: 2;
}

.ec-feature__inner--reverse .ec-feature__content {
  order: 1;
}

.ec-feature__media {
  position: relative;
  overflow: hidden;
  background: #f5f0eb;
}

.ec-feature__img,
.ec-feature__placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.ec-feature__placeholder {
  min-height: 420px;
  background:
    radial-gradient(circle at 50% 44%, rgba(176, 141, 87, 0.20), transparent 24%),
    linear-gradient(135deg, #F8F1EC 0%, #EEE0D5 100%);
}

.ec-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 8vw, 8rem);
  background: #FFFFFF;
  color: var(--ec-text);
}

.ec-feature__eyebrow {
  margin: 0 0 0.7rem;
  font-family: var(--ec-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ec-text);
}

.ec-feature__title {
  margin: 0 0 1.35rem;
  font-family: var(--ec-font-head);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--ec-text);
}

.ec-feature__text {
  max-width: 560px;
  margin: 0 0 2.25rem;
  font-family: var(--ec-font-body);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ec-text);
}

.ec-feature__text p {
  margin: 0;
}

.ec-feature__links {
  display: grid;
  gap: 0.3rem;
}

.ec-feature__link {
  width: fit-content;
  color: var(--ec-text);
  font-family: var(--ec-font-body);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.ec-feature__link:hover {
  color: var(--ec-accent);
}

@media (max-width: 767px) {
  .ec-feature__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ec-feature__inner--reverse .ec-feature__media,
  .ec-feature__inner--reverse .ec-feature__content {
    order: initial;
  }

  .ec-feature__media {
    min-height: 360px;
  }

  .ec-feature__content {
    padding: 2.5rem 1.5rem 3rem;
  }
}

/* SECTION 5 — 3D CLIENT TESTIMONIALS */
.ec-reviews3d {
  padding: 4rem 0 4.5rem;
  background: var(--ec-bg);
}

.ec-reviews3d__intro {
  max-width: 920px;
  margin: 0 auto 2rem;
  text-align: center;
}

.ec-reviews3d__heading {
  margin-bottom: 0.8rem;
}

.ec-reviews3d__caption {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ec-muted);
  font-family: var(--ec-font-body);
  font-size: 0.98rem;
  line-height: 1.65;
}

.ec-reviews3d__panel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(176, 141, 87, 0.14), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(216, 199, 181, 0.34), transparent 30%),
    linear-gradient(135deg, #FAF4F0 0%, #F4E9DF 56%, #EFE3D9 100%);
  color: var(--ec-text);
  border: 1px solid rgba(216, 199, 181, 0.75);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
  box-shadow: 0 18px 48px rgba(50, 30, 29, 0.08);
}

.ec-reviews3d__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.38) 48%, transparent 100%);
  pointer-events: none;
}

.ec-reviews3d__stage {
  position: relative;
  z-index: 2;
  perspective: 1700px;
}

.ec-reviews3d__viewport {
  position: relative;
  transform-style: preserve-3d;
  height: clamp(420px, 48vw, 590px);
  touch-action: pan-y;
}

.ec-reviews3d__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(230px, 29vw, 360px);
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.3, 1), opacity 0.4s ease;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ec-reviews3d__quote-card {
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.4vw, 1.9rem);
  background: #FFFFFF;
  color: var(--ec-text);
  border: 1px solid rgba(216, 199, 181, 0.95);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(50, 30, 29, 0.14);
}

.ec-reviews3d__stars {
  color: var(--ec-accent);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  line-height: 1;
}

.ec-reviews3d__quote {
  margin: 0;
  font-family: var(--ec-font-body);
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  line-height: 1.65;
  flex: 1 1 auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.ec-reviews3d__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.ec-reviews3d__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--ec-accent);
  color: #fff;
  font-family: var(--ec-font-head);
  font-size: 1.05rem;
  line-height: 1;
}

.ec-reviews3d__name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.ec-reviews3d__role {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  color: var(--ec-muted);
  line-height: 1.2;
}

.ec-reviews3d__nav {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.7rem);
}

.ec-reviews3d__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: transparent;
  color: var(--ec-text);
  border: 1px solid rgba(50, 30, 29, 0.28);
  transition: background 0.2s, color 0.2s, opacity 0.2s, transform 0.2s;
}

.ec-reviews3d__btn--next {
  background: var(--ec-text);
  color: #FFFFFF;
  border-color: var(--ec-text);
}

.ec-reviews3d__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.ec-reviews3d__btn[disabled] {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

@media (max-width: 749px) {
  .ec-reviews3d {
    padding: 3rem 0 3.5rem;
  }

  .ec-reviews3d__panel {
    border-radius: 18px;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .ec-reviews3d__viewport {
    height: 108vw;
    min-height: 430px;
  }
}

/* SECTION 6 — JOIN NAMAH */
.ec-join {
  padding: 0;
  background: var(--ec-join-bg, #EFE3D9);
}

.ec-join__inner {
  position: relative;
  min-height: 280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 3.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ec-join-bg, #EFE3D9) 0%, #FAF4F0 58%, #E5D6C8 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ec-join--has-image .ec-join__inner {
  background-image:
    linear-gradient(rgba(250, 244, 240, 0.45), rgba(250, 244, 240, 0.45)),
    var(--ec-join-image);
}

.ec-join__content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  text-align: center;
  padding: 0.5rem 1rem;
}

.ec-join__content::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 0 auto 1.15rem;
  background: var(--ec-accent);
}

.ec-join__title {
  font-family: var(--ec-font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--ec-text);
  margin: 0 0 1rem;
}

.ec-join__text {
  font-family: var(--ec-font-body);
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ec-text);
  max-width: 690px;
  margin: 0 auto 2rem;
}

.ec-join__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 48px;
  padding: 0.9rem 1.7rem;
  background: var(--ec-accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--ec-font-body);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid var(--ec-text);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ec-join__btn:hover {
  color: #fff;
  background: var(--ec-accent);
  border-color: var(--ec-accent);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .ec-join__inner {
    min-height: auto;
    padding: 2.6rem 1.25rem;
  }

  .ec-join__text {
    margin-bottom: 1.5rem;
  }

  .ec-join__btn {
    width: 100%;
    max-width: 260px;
  }
}

/* SECTION 7 — FAQ */
.ec-faq {
  padding: 5rem 0 6rem;
}

.ec-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ec-border);
}

.ec-faq__item {
  border-bottom: 1px solid var(--ec-border);
}

.ec-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ec-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ec-text);
  text-align: left;
  transition: color 0.2s;
}

.ec-faq__question:hover {
  color: var(--ec-accent);
}

.ec-faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ec-ease);
}

.ec-faq__question[aria-expanded="true"] .ec-faq__icon {
  transform: rotate(45deg);
}

.ec-faq__answer {
  overflow: hidden;
}

.ec-faq__answer[hidden] {
  display: none;
}

.ec-faq__answer-inner {
  padding: 0 0 1.4rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--ec-muted);
}

@media (prefers-reduced-motion: reduce) {
  .ec-purpose__card,
  .ec-product-card,
  .ec-product-card__img,
  .ec-faq__icon,
  .ec-reviews3d__card {
    transition: none !important;
    animation: none !important;
  }
}



/* FINAL PRODUCT GRID — reference style gap + centered product text */
.ec-products__grid {
  gap: 4px !important;
  padding: 4px !important;
  background: #F1ECE6 !important;
  border: 0 !important;
}

.ec-product-card {
  border: 0 !important;
  border-radius: 0 !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
  margin: 0 !important;
}

.ec-product-card:hover {
  box-shadow: none !important;
  transform: none !important;
}

.ec-product-card__info {
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  padding: 1.35rem clamp(1.35rem, 2.5vw, 2.35rem) 1.85rem !important;
  gap: 0.42rem !important;
  min-height: 160px !important;
}

.ec-product-card__title,
.ec-product-card__title a,
.ec-product-card__purpose,
.ec-product-card__price {
  text-align: center !important;
}

.ec-product-card__title {
  width: 100% !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  line-height: 1.35 !important;
}

.ec-product-card__purpose {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #5F4B45 !important;
  font-size: 0.93rem !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

.ec-product-card__price {
  justify-content: center !important;
  width: 100% !important;
  margin-top: 0.72rem !important;
  font-size: 1.08rem !important;
  font-weight: 600 !important;
}

.ec-product-card__price--current {
  font-size: 1.08rem !important;
  font-weight: 600 !important;
}

@media (max-width: 767px) {
  .ec-products__grid {
    gap: 3px !important;
    padding: 3px !important;
  }

  .ec-product-card__info {
    align-items: center !important;
    text-align: center !important;
    padding: 1rem 0.95rem 1.35rem !important;
    min-height: 140px !important;
  }

  .ec-product-card__title {
    font-size: 0.88rem !important;
  }

  .ec-product-card__purpose {
    font-size: 0.82rem !important;
  }

  .ec-product-card__price,
  .ec-product-card__price--current {
    font-size: 1rem !important;
  }
}


/* FINAL FIX — center align product text on all product grids */
.ec-products .ec-product-card__info,
.ec-best-sellers .ec-product-card__info {
  align-items: center !important;
  text-align: center !important;
}

.ec-products .ec-product-card__title,
.ec-products .ec-product-card__title a,
.ec-products .ec-product-card__purpose,
.ec-products .ec-product-card__price,
.ec-best-sellers .ec-product-card__title,
.ec-best-sellers .ec-product-card__title a,
.ec-best-sellers .ec-product-card__purpose,
.ec-best-sellers .ec-product-card__price {
  width: 100% !important;
  text-align: center !important;
  justify-content: center !important;
}


/* NAMAH ESSENTIALS MOBILE VIDEO HERO FULL HEIGHT FIX ONLY
   Same fix as Luxe file:
   - Mobile hero takes full visible screen height
   - Removes bottom gap / next section peek
   - Keeps desktop and all other sections unchanged
*/
@media (max-width: 767px) {
  .ec-video-hero {
    height: 100vh !important;
    height: 100svh !important;
    min-height: 100vh !important;
    min-height: 100svh !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  .ec-video-hero__media,
  .ec-video-hero__video,
  .ec-video-hero__poster {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  .ec-video-hero__video,
  .ec-video-hero__poster {
    object-fit: var(--ec-video-fit, cover) !important;
    object-position: center center !important;
    display: block !important;
  }
}
/* END_SECTION:essentials-collection */

/* START_SECTION:header_3 (INDEX:38) */
/* ==============================================
   NAMAH CRYSTALS — Custom Header (merged)
   Nav left | Logo centered | Icons right
   ============================================== */

.nh-header {
  position: relative;
  z-index: 99999;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid var(--nh-border, #e8e0d8);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  font-family: 'Gibs', 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
}

.nh-header * {
  font-family: inherit;
}

/* ── Sticky behaviour (normal pages) ── */
.nh-header--sticky {
  position: sticky;
  top: 0;
}

.nh-header--sticky.nh-scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

/* ── Transparent mode: homepage + Luxe + Essentials ── */
.nh-header--transparent-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  border-bottom-color: transparent;
  transition: background-color 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

/* Luxe + Essentials transparent header: remove theme divider completely */
.nh-header--transparent-collection:not(.nh-scrolled),
.nh-header--transparent-collection:not(.nh-scrolled).bwp-header,
.nh-header--transparent-collection:not(.nh-scrolled).nh-header--sticky {
  border: 0 !important;
  border-bottom: 0 !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.nh-header--transparent-collection:not(.nh-scrolled)::before,
.nh-header--transparent-collection:not(.nh-scrolled)::after,
.nh-header--transparent-collection:not(.nh-scrolled).bwp-header::before,
.nh-header--transparent-collection:not(.nh-scrolled).bwp-header::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Scrolled: snap to top, go fully solid */
.nh-header--transparent-home.nh-scrolled {
  position: fixed;
  top: 0;
  z-index: 99999;
  background-color: #ffffff;
  border-bottom-color: var(--nh-border, #e8e0d8);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

/* Icons + nav + logo go white while header is transparent */
.nh-header--transparent-home:not(.nh-scrolled) .nh-icon-btn,
.nh-header--transparent-home:not(.nh-scrolled) .nh-logo,
.nh-header--transparent-home:not(.nh-scrolled) .nh-nav__toggle,
.nh-header--transparent-home:not(.nh-scrolled) .nh-nav__arrow,
.nh-header--transparent-home:not(.nh-scrolled) .nh-search-toggle,
.nh-header--transparent-home:not(.nh-scrolled) .search-toggle,
.nh-header--transparent-home:not(.nh-scrolled) .wishlist,
.nh-header--transparent-home:not(.nh-scrolled) .localization-form,
.nh-header--transparent-home:not(.nh-scrolled) .localization-selector,
.nh-header--transparent-home:not(.nh-scrolled) .disclosure__button,
.nh-header--transparent-home:not(.nh-scrolled) .currency-selector,
.nh-header--transparent-home:not(.nh-scrolled) .bwp-currency,
.nh-header--transparent-home:not(.nh-scrolled) select {
  color: #ffffff;
}

.nh-header--transparent-home:not(.nh-scrolled) .disclosure__button svg,
.nh-header--transparent-home:not(.nh-scrolled) .currency-selector svg,
.nh-header--transparent-home:not(.nh-scrolled) .bwp-currency svg {
  stroke: currentColor;
  fill: none;
}

/* ── Inner layout ── */
.nh-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nh-height, 88px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Sections: left / center / right ── */
.nh-left,
.nh-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
}

.nh-right {
  justify-content: flex-end;
  gap: 0.25rem;
}

.nh-center {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Navigation (left) ── */
.nh-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

/* Hide the desktop left menu on the homepage (hamburger stays for mobile).
   Logo remains centered because .nh-left keeps its flex width. */
.nh-hide-left-nav .nh-nav {
  display: none;
}

.nh-nav__item {
  position: relative;
}

/* Keeps dropdown clickable while moving cursor from menu title to dropdown */
.nh-nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  background: transparent;
  pointer-events: auto;
}

.nh-nav__toggle {
  display: flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nh-icon-color, #321E1D);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nh-nav__toggle:hover { opacity: 0.65; }

.nh-nav__arrow {
  display: inline-block;
  font-size: 0.55rem;
  transition: transform 0.25s ease;
  line-height: 1;
}

.nh-nav__item:hover .nh-nav__arrow,
.nh-nav__item.open .nh-nav__arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nh-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: #fff;
  border: 1px solid #e8e0d8;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  z-index: 100000;
  border-radius: 2px;
}

.nh-nav__item:hover .nh-nav__dropdown,
.nh-nav__item.open .nh-nav__dropdown {
  display: block;
}

.nh-nav__dropdown li a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #321E1D;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nh-nav__dropdown li a:hover {
  background: #FAF4F0;
  color: #B08D57;
}

/* ── Logo ── */
.nh-logo {
  display: block;
  line-height: 0;
  text-decoration: none;
  color: #321E1D;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nh-logo img {
  width: var(--nh-logo-w, 135px);
  height: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.nh-logo:hover img {
  opacity: 0.82;
}

/* ── Icon buttons ── */
.nh-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--nh-icon-color, #321E1D);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nh-icon-btn:hover {
  opacity: 0.65;
}

.nh-icon-btn svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Theme search toggle support: uses the same working search markup as Header 3 */
.nh-right .search-toggle {
  position: relative;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-right: 0 !important;
  padding: 0 !important;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--nh-icon-color, #321E1D);
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nh-right .search-toggle:hover {
  opacity: 0.65;
}

.nh-right .search-toggle i {
  display: none !important;
}

.nh-right .search-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0 !important;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* Keep all four right-side icons as fixed-size flex items */
.nh-right > .nh-search-toggle,
.nh-right > .search-toggle,
.nh-right > .wishlist,
.nh-right > .nh-cart-btn,
.nh-right > .nh-icon-btn {
  flex: 0 0 auto;
}

/* ── Wishlist link (theme markup, our own clean icon) ── */
.nh-right .wishlist {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  text-decoration: none;
  color: var(--nh-icon-color, #321E1D);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nh-right .wishlist:hover {
  opacity: 0.65;
}

/* Hide the theme's font-icon — we draw our own SVG instead */
.nh-right .wishlist i {
  display: none;
}

.nh-right .wishlist svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Wishlist count badge */
.nh-right .wishlist .count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 1rem;
  height: 1rem;
  padding: 0 3px;
  border-radius: 50%;
  background: #B08D57;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 600;
  line-height: 1rem;
  text-align: center;
}

/* Hide the badge when empty (count = 0) */
.nh-right .wishlist .count:empty,
.nh-right .wishlist .count[data-count="0"] {
  display: none;
}

/* ── Cart count badge ── */
.nh-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 1rem;
  height: 1rem;
  padding: 0 3px;
  border-radius: 50%;
  background: #B08D57;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 600;
  line-height: 1rem;
  text-align: center;
  display: none;
}

.nh-cart-count.visible {
  display: block;
}

/* ── Search drawer (full-width) ── */
.nh-search-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--nh-border, #e8e0d8);
  padding: 1.75rem 2rem;
  display: none;
  z-index: 100000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nh-search-drawer.open {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nh-search-drawer form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-bottom: 1px solid #321E1D;
  padding-bottom: 0.5rem;
}

.nh-search-drawer input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  color: #321E1D;
  letter-spacing: 0.04em;
}

.nh-search-drawer input[type="search"]::placeholder {
  color: rgba(50, 30, 29, 0.4);
}

.nh-search-drawer button[type="submit"] {
  background: none;
  border: none;
  cursor: pointer;
  color: #321E1D;
  display: flex;
  align-items: center;
}

.nh-search-drawer button[type="submit"] svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.nh-search-close {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #321E1D;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem;
}

/* ── Mobile toggle (hamburger) — hidden on desktop ── */
.nh-menu-toggle {
  display: none;
}

/* ── Mobile drawer ── */
.nh-mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--nh-border, #e8e0d8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 100000;
  padding: 0.5rem 0;
  max-height: calc(100vh - var(--nh-height, 88px));
  overflow-y: auto;
}

.nh-mobile-nav.open {
  display: block;
}

.nh-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nh-mobile-nav > ul > li > .nh-m-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #321E1D;
  text-decoration: none;
  background: none;
  border: none;
  border-bottom: 1px solid #f0e8e0;
  cursor: pointer;
}

.nh-mobile-nav .nh-m-arrow {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
}

.nh-mobile-nav .nh-m-item.open .nh-m-arrow {
  transform: rotate(180deg);
}

.nh-mobile-nav .nh-m-sub {
  display: none;
  background: #FAF4F0;
}

.nh-mobile-nav .nh-m-item.open .nh-m-sub {
  display: block;
}

.nh-mobile-nav .nh-m-sub li a {
  display: block;
  padding: 0.7rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #321E1D;
  text-decoration: none;
  border-bottom: 1px solid #efe5dc;
}

.nh-mobile-nav .nh-m-sub li a:hover {
  color: #B08D57;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nh-inner {
    padding: 0 1rem;
    height: calc(var(--nh-height, 88px) - 10px);
  }

  /* Hide desktop nav, show hamburger */
  .nh-nav {
    display: none;
  }

  .nh-menu-toggle {
    display: flex;
  }

  .nh-logo img {
    width: var(--nh-logo-w-mob, 100px);
  }

  .nh-left,
  .nh-right {
    gap: 0.5rem;
  }
}

@media (max-width: 767px) {
  .nh-right {
    gap: 0.25rem;
  }

  .nh-icon-btn,
  .nh-right .wishlist,
  .nh-right .search-toggle {
    width: 2rem;
    height: 2rem;
  }

  .nh-search-drawer {
    padding: 1.25rem 1rem;
  }

  .nh-search-close {
    right: 1rem;
  }
}

/* Logo-swap: show homepage logo when transparent, main logo when solid */
.nh-logo img.nh-logo-home {
  display: none;
}

.nh-header--transparent-home:not(.nh-scrolled) .nh-logo img.nh-logo-main {
  display: none;
}

.nh-header--transparent-home:not(.nh-scrolled) .nh-logo img.nh-logo-home {
  display: block;
}


/* ==============================================
   MOBILE HEADER FIX — keep search icon on right
   Prevent logo/search overlap on iPhone widths
   ============================================== */
@media (max-width: 767px) {
  #nh-{{ section.id }} .nh-inner {
    position: relative !important;
    height: 58px !important;
    min-height: 58px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    justify-content: center !important;
  }

  #nh-{{ section.id }} .nh-left {
    position: relative !important;
    z-index: 5 !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    gap: 0 !important;
    margin-right: auto !important;
  }

  #nh-{{ section.id }} .nh-menu-toggle {
    display: flex !important;
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
  }

  #nh-{{ section.id }} .nh-center {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2 !important;
    width: auto !important;
    max-width: 105px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    pointer-events: auto !important;
  }

  #nh-{{ section.id }} .nh-logo,
  #nh-{{ section.id }} .nh-logo img {
    max-width: 100px !important;
    width: 100px !important;
  }

  #nh-{{ section.id }} .nh-right {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 5 !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(50vw - 58px) !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 2px !important;
    overflow: visible !important;
  }

  #nh-{{ section.id }} .nh-right > .nh-search-toggle,
  #nh-{{ section.id }} .nh-right > .search-toggle,
  #nh-{{ section.id }} .nh-right > .wishlist,
  #nh-{{ section.id }} .nh-right > .nh-cart-btn,
  #nh-{{ section.id }} .nh-right > .nh-icon-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    flex: 0 0 28px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #nh-{{ section.id }} .nh-right svg,
  #nh-{{ section.id }} .nh-menu-toggle svg,
  #nh-{{ section.id }} .nh-right .search-toggle svg,
  #nh-{{ section.id }} .nh-right .wishlist svg {
    width: 17px !important;
    height: 17px !important;
  }

  #nh-{{ section.id }} .nh-right .wishlist .count,
  #nh-{{ section.id }} .nh-cart-count {
    top: -5px !important;
    right: -3px !important;
    min-width: 14px !important;
    height: 14px !important;
    line-height: 14px !important;
    font-size: 8px !important;
  }

  /* ──────────────────────────────────────────────────────────────
     MOBILE SEARCH POPUP — force full-width across the screen.
     The theme's search snippet can render its popup under a few
     different class names; we cast a wide net here so whichever one
     it uses gets pinned to the full viewport width directly under
     the header instead of floating beside the right-side icon.
     The JS below adds `.nh-search-open` to the popup as a belt-and-
     suspenders hook in case the theme uses a class we don't list.
     ────────────────────────────────────────────────────────────── */
  #nh-{{ section.id }} .content-search-toggle,
  #nh-{{ section.id }} .search-toggle-content,
  #nh-{{ section.id }} .header-search-toggle,
  #nh-{{ section.id }} .search-overlay,
  #nh-{{ section.id }} .search-form-wrapper,
  #nh-{{ section.id }} .search-bar,
  #nh-{{ section.id }} .search-popup,
  #nh-{{ section.id }} .site-search,
  #nh-{{ section.id }} .header-search,
  #nh-{{ section.id }} .predictive-search,
  #nh-{{ section.id }} [class*="search-content"],
  #nh-{{ section.id }} [class*="search-drawer"],
  #nh-{{ section.id }} [class*="search-popup"],
  #nh-{{ section.id }} .nh-search-open {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;
    transform: none !important;
    border-radius: 0 !important;
    z-index: 100000 !important;
    box-sizing: border-box !important;
  }

  /* Make the actual input fill the popup width on mobile */
  #nh-{{ section.id }} .nh-search-open input[type="search"],
  #nh-{{ section.id }} .nh-search-open input[type="text"],
  #nh-{{ section.id }} [class*="search-content"] input,
  #nh-{{ section.id }} [class*="search-drawer"] input,
  #nh-{{ section.id }} [class*="search-popup"] input {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 390px) {
  #nh-{{ section.id }} .nh-logo,
  #nh-{{ section.id }} .nh-logo img {
    max-width: 92px !important;
    width: 92px !important;
  }

  #nh-{{ section.id }} .nh-right {
    right: 8px !important;
    gap: 1px !important;
  }

  #nh-{{ section.id }} .nh-right > .nh-search-toggle,
  #nh-{{ section.id }} .nh-right > .search-toggle,
  #nh-{{ section.id }} .nh-right > .wishlist,
  #nh-{{ section.id }} .nh-right > .nh-cart-btn,
  #nh-{{ section.id }} .nh-right > .nh-icon-btn {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    flex-basis: 26px !important;
  }
}
/* END_SECTION:header_3 */

/* START_SECTION:luxe-collection (INDEX:42) */
:root {
  --lx-bg:        #FFFFFF;
  --lx-surface:   #FAFAFA;
  --lx-white:     #FFFFFF;
  --lx-text:      #321E1D;
  --lx-accent:    #B08D57;
  --lx-border:    #ECE3DA;
  --lx-grid-gap:  #F1ECE6;
  --lx-muted:     #8a7060;
  --lx-purpose-border: #D8C7B5;
  --lx-purpose-text:   #6B5B4F;
  --lx-font-head: 'Gibs', 'Cormorant Garamond', Georgia, serif;
  --lx-font-body: 'Urbanist', 'Gill Sans', sans-serif;
  --lx-radius:    12px;
  --lx-ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lx-hero, .c3d, .lx-vids, .lx-purpose, .lx-products, .lx-feature,
.lx-choose, .lx-reviews3d, .lx-join, .lx-reels, .lx-faq,
.lx-story, .lx-editorial {
  font-family: var(--lx-font-body);
  color: var(--lx-text);
  background-color: var(--lx-bg);
  box-sizing: border-box;
}

.lx-hero *, .lx-hero *::before, .lx-hero *::after,
.c3d *, .c3d *::before, .c3d *::after,
.lx-vids *, .lx-vids *::before, .lx-vids *::after,
.lx-purpose *, .lx-purpose *::before, .lx-purpose *::after,
.lx-products *, .lx-products *::before, .lx-products *::after,
.lx-feature *, .lx-feature *::before, .lx-feature *::after,
.lx-choose *, .lx-choose *::before, .lx-choose *::after,
.lx-reviews3d *, .lx-reviews3d *::before, .lx-reviews3d *::after,
.lx-join *, .lx-join *::before, .lx-join *::after,
.lx-reels *, .lx-reels *::before, .lx-reels *::after,
.lx-faq *, .lx-faq *::before, .lx-faq *::after,
.lx-story *, .lx-story *::before, .lx-story *::after,
.lx-editorial *, .lx-editorial *::before, .lx-editorial *::after {
  box-sizing: border-box;
}

.lx-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.lx-container--narrow { max-width: 780px; }

.lx-section-title {
  font-family: var(--lx-font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400; font-style: italic; letter-spacing: 0.04em;
  text-align: center; color: var(--lx-text); margin: 0 0 2.5rem;
}
.lx-section-empty { text-align: center; color: var(--lx-muted); font-size: 0.9rem; padding: 2rem 0; }

/* ===== HERO (full cover, responsive) ===== */
.lx-hero { position: relative; width: 100%; background: var(--lx-bg); overflow: hidden; height: 100vh; }
.lx-hero__bg { display: block; width: 100%; height: 100%; }
.lx-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.lx-hero__img--empty { width: 100%; height: 100%; background: #f3ece4; }
@media (max-width: 1024px) { .lx-hero { height: 80vh; } }
@media (max-width: 767px)  { .lx-hero { height: 62vh; } }



/* ===== FULL SIZE VIDEO HERO ===== */
.lx-video-hero {
  position: relative;
  width: 100%;
  height: var(--lx-video-hero-height, 760px);
  min-height: 520px;
  max-height: 100vh;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: var(--lx-font-body);
}
.lx-video-hero *, .lx-video-hero *::before, .lx-video-hero *::after { box-sizing: border-box; }
.lx-video-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}
.lx-video-hero__video,
.lx-video-hero__poster {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: var(--lx-video-fit, cover);
  object-position: center;
  background: #000;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}
/* Hero video overlay removed: show uploaded video in original colours */
.lx-video-hero__shade {
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}
.lx-video-hero__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #211817, #321E1D 52%, #120b0a);
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.lx-video-hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 2rem));
  min-height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
  color: #fff;
}
.lx-video-hero__content::before {
  content: "";
  width: 74px;
  height: 1px;
  margin: 0 auto 1rem;
  background: var(--lx-accent);
}
.lx-video-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
}
.lx-video-hero__title {
  margin: 0;
  font-family: var(--lx-font-head);
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.lx-video-hero__text {
  max-width: 620px;
  margin: 1.1rem auto 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.94rem, 1.35vw, 1.1rem);
  line-height: 1.65;
}
.lx-video-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 50px;
  margin-top: 2rem;
  padding: 0.95rem 2rem;
  background: var(--lx-accent);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s var(--lx-ease), background 0.25s ease;
}
.lx-video-hero__btn:hover { transform: translateY(-2px); color: #fff; background: #321E1D; }
@media (max-width: 1024px) {
  .lx-video-hero { height: min(var(--lx-video-hero-height, 760px), 760px); min-height: 500px; }
}
@media (max-width: 767px) {
  .lx-video-hero { height: min(var(--lx-video-hero-height, 760px), 640px); min-height: 460px; }
  .lx-video-hero__content { padding: 4rem 1rem; }
  .lx-video-hero__btn { min-width: 190px; min-height: 46px; }
}

/* ============================================================
   SCROLL STORY  (NEW)  — full-width sticky-pinned slides
   ============================================================ */
.lx-story {
  position: relative;
  width: 100%;
  background: #150e0d;        /* dark base behind imagery */
}
.lx-story--empty { padding: 3rem 1.25rem; background: var(--lx-bg); }

/* The tall scroller gives us the scroll distance; height set inline. */
.lx-story__scroller { position: relative; width: 100%; }

/* The stage pins to the viewport while the scroller passes behind it. */
.lx-story__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  /* small-viewport-aware height for mobile browser chrome */
  height: 100svh;
  width: 100%;
  overflow: hidden;
  background: #150e0d;
}

/* Stacked, cross-fading slides */
.lx-story__slides { position: absolute; inset: 0; }
.lx-story__slide {
  position: absolute;
  inset: 0;
  /* All slides stay painted; JS drives the reveal via clip-path.
     First slide starts fully shown, the rest fully clipped from the top. */
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}
/* The first slide is visible by default before JS runs / for no-JS */
.lx-story__slide[data-index="0"] { clip-path: inset(0 0 0 0); }

/* The slide that owns the copy carries .is-active (set by JS) */
.lx-story__slide.is-active { z-index: 50; }

/* Background media (subtle scale rest state; no per-slide fade now) */
.lx-story__media { position: absolute; inset: 0; overflow: hidden; }
.lx-story__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.lx-story__img--empty {
  background:
    radial-gradient(circle at 35% 30%, rgba(176,141,87,0.28), transparent 45%),
    linear-gradient(135deg, #2a1d1b, #150e0d 70%);
}
.lx-story__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(20,16,14,0.55) 0%, rgba(20,16,14,0.18) 28%, rgba(20,16,14,0) 52%),
    linear-gradient(to right, rgba(20,16,14,0.30) 0%, rgba(20,16,14,0.06) 38%, transparent 70%);
}

/* Slide copy — left-aligned, sitting lower on the frame (matches reference) */
.lx-story__content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 7vh, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;   /* content sits low */
  align-items: flex-start;     /* left-aligned */
  text-align: left;
  color: #fff;
}

/* Index rail with the thin divider line spanning the FULL viewport width.
   Reference behaviour: number sits above the line, rail caption below the line,
   and the slide tag/button starts below this horizontal rail. */
.lx-story__rail {
  --lx-story-rail-top: 46%;
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  top: var(--lx-story-rail-top);
  display: block;
  height: 1px;
  padding: 0 clamp(1.25rem, 4vw, 3.25rem);
  pointer-events: none;
  z-index: 7;
}
.lx-story__index {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.25rem);
  top: -1.6rem;
  font-family: var(--lx-font-body);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.92);
  line-height: 1;
}
.lx-story__rail-label {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.25rem);
  top: 1.4rem;
  font-family: var(--lx-font-body);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  line-height: 1;
  white-space: nowrap;
}
.lx-story__rail-line {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.35);
  overflow: hidden;
}
/* Accent fill that grows left→right with the current slide's scroll progress.
   Width is set inline by JS (0%..100%); the transition keeps it buttery. */
.lx-story__rail-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--lx-accent);
  transition: width 0.12s linear;
}

/* Copy column: locked BELOW the horizontal rail so the tag never overlaps
   the progress line or the heading. This matches the reference spacing. */
.lx-story__copy {
  position: absolute;
  /* Desktop content now uses the left 3 visual sections and stops at the
     green-marked boundary area from your screenshot/reference. */
  --lx-story-copy-left: clamp(1.25rem, 12vw, 14.5rem);
  --lx-story-copy-end: 68vw;
  left: var(--lx-story-copy-left);
  top: calc(46% + clamp(3rem, 6vh, 4.4rem));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(1060px, calc(var(--lx-story-copy-end) - var(--lx-story-copy-left)));
  max-width: min(1060px, calc(100vw - var(--lx-story-copy-left) - 2.5rem));
  pointer-events: none;
}
.lx-story__slide.is-active .lx-story__copy { pointer-events: auto; }

/* Each piece of copy fades + lifts in when its slide activates */
.lx-story__tag,
.lx-story__heading,
.lx-story__text,
.lx-story__btn {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--lx-ease), transform 0.7s var(--lx-ease);
}
.lx-story__slide:not(.is-active) .lx-story__tag,
.lx-story__slide:not(.is-active) .lx-story__heading,
.lx-story__slide:not(.is-active) .lx-story__text,
.lx-story__slide:not(.is-active) .lx-story__btn {
  transition-delay: 0s !important;
  transition-duration: 0.28s;
}
.lx-story__slide.is-active .lx-story__tag    { opacity: 1; transform: none; transition-delay: 0.16s; }
.lx-story__slide.is-active .lx-story__heading{ opacity: 1; transform: none; transition-delay: 0.26s; }
.lx-story__slide.is-active .lx-story__text   { opacity: 1; transform: none; transition-delay: 0.38s; }
.lx-story__slide.is-active .lx-story__btn    { opacity: 1; transform: none; transition-delay: 0.50s; }

/* Colored pill tag/button — now always BELOW the progress line */
.lx-story__tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin: 0 0 clamp(1rem, 2vh, 1.35rem);
  padding: 0.42rem 0.85rem; border-radius: 999px;
  background: var(--lx-accent);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.01em;
  line-height: 1; color: #fff;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
}
.lx-story__tag-ico { flex: 0 0 auto; }

/* Clean sans-serif heading (not italic serif) */
.lx-story__heading {
  margin: 0 0 1.25rem;
  max-width: 100%;
  font-family: var(--lx-font-body);
  font-style: normal; font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.12; letter-spacing: -0.01em;
  color: #fff;            /* force white over any theme h2 color */
  text-shadow: 0 8px 26px rgba(0,0,0,0.45);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.lx-story__text {
  margin: 0 0 1.75rem;
  max-width: 560px;
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  overflow-wrap: break-word;
}
.lx-story__btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  min-height: 48px; padding: 0.85rem 1.5rem;
  background: rgba(255,255,255,0.95);
  color: var(--lx-text);
  text-decoration: none; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; line-height: 1;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, transform 0.25s var(--lx-ease), color 0.25s ease;
}
.lx-story__btn:hover { background: var(--lx-accent); color: #fff; transform: translateY(-2px); }
.lx-story__btn-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--lx-accent); color: #fff;
}
.lx-story__btn:hover .lx-story__btn-ico { background: var(--lx-text); }

/* Persistent UI overlay (progress + dots + hint) */
.lx-story__ui {
  position: absolute;
  z-index: 4;
  right: clamp(1.25rem, 4vw, 3.25rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.lx-story__progress {
  width: 2px; height: clamp(120px, 22vh, 220px);
  background: rgba(255,255,255,0.22);
  border-radius: 999px; overflow: hidden;
}
.lx-story__progress-fill {
  display: block; width: 100%; height: 0%;
  background: var(--lx-accent);
  transition: height 0.15s linear;
}
.lx-story__dots { display: flex; flex-direction: column; gap: 0.55rem; }
.lx-story__dot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.32); border: none;
  transition: background 0.3s var(--lx-ease), transform 0.3s var(--lx-ease);
}
.lx-story__dot.is-active { background: var(--lx-accent); transform: scale(1.35); }

.lx-story__hint {
  position: absolute; z-index: 4;
  left: 50%; bottom: clamp(1.1rem, 3vw, 2rem);
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.78);
}
.lx-story__hint svg { animation: lx-story-bob 1.8s ease-in-out infinite; }
@keyframes lx-story-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* Tablet */
@media (max-width: 1024px) {
  .lx-story__ui { gap: 0.8rem; right: 1rem; }
  .lx-story__copy {
    --lx-story-copy-left: clamp(1.25rem, 8vw, 5rem);
    --lx-story-copy-end: 72vw;
    width: min(760px, calc(var(--lx-story-copy-end) - var(--lx-story-copy-left)));
    max-width: min(760px, calc(100vw - var(--lx-story-copy-left) - 2.5rem));
  }
}

/* Mobile: left-aligned copy, full-width wrapping, dots move to a bottom row. */
@media (max-width: 767px) {
  .lx-story__content { padding-bottom: 5rem; align-items: flex-start; }
  .lx-story__copy {
    top: calc(42% + 3rem);
    left: 1.25rem;
    right: 1.25rem;
    width: auto;
    max-width: none;
  }
  .lx-story__heading { font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
  .lx-story__rail { --lx-story-rail-top: 42%; top: var(--lx-story-rail-top); }
  .lx-story__index { left: 1.25rem; top: -1.45rem; }
  .lx-story__rail-label { left: 1.25rem; top: 1.15rem; font-size: 0.68rem; }
  .lx-story__tag { padding: 0.36rem 0.68rem; font-size: 0.68rem; }
  .lx-story__ui {
    top: auto; bottom: 1.6rem; left: 50%; right: auto;
    transform: translateX(-50%);
    flex-direction: row; align-items: center; gap: 0.9rem;
  }
  .lx-story__progress { display: none; }
  .lx-story__dots { flex-direction: row; }
  .lx-story__hint { display: none; }
}

/* Reduced motion: drop the pin/animation, show a simple readable stack */
@media (prefers-reduced-motion: reduce) {
  .lx-story__scroller { height: auto !important; }
  .lx-story__stage { position: relative; height: auto; }
  .lx-story__slides { position: relative; }
  .lx-story__slide {
    position: relative; inset: auto;
    clip-path: none !important; min-height: 70vh;
  }
  .lx-story__copy { position: relative; left: auto; right: auto; top: auto; max-width: min(680px, 100%); pointer-events: auto; }
  .lx-story__tag, .lx-story__heading, .lx-story__text, .lx-story__btn { opacity: 1; transform: none; transition: none; }
  .lx-story__ui, .lx-story__hint { display: none; }
}

/* ============================================================
   EDITORIAL IMAGE  (NEW) — matches provided screenshot
   ============================================================ */
.lx-editorial { background: var(--lx-bg); padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem); }
.lx-editorial__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(300px, 34vw, 560px);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

/* Brand line */
.lx-editorial__brand {
  display: flex; flex-direction: column; gap: 0.1rem;
  margin-bottom: clamp(1rem, 3vw, 1.75rem);
  font-size: 1rem; line-height: 1.35; color: var(--lx-text);
}
.lx-editorial__brand-name { font-weight: 500; }
.lx-editorial__brand-est { font-weight: 400; }

/* Statement with floated image (text flows around it like the screenshot) */
.lx-editorial__statement::after { content: ""; display: block; clear: both; }
.lx-editorial__float {
  float: left;
  width: clamp(150px, 16vw, 220px);
  margin: 0.4rem 1.6rem 0.4rem 0;
  shape-outside: margin-box;
}
.lx-editorial__float-img {
  display: block; width: 100%; height: auto;
  object-fit: cover; border-radius: 2px;
}
.lx-editorial__lede {
  margin: 0;
  font-family: var(--lx-font-body);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 3.05rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--lx-text);
}

/* Recent news rail */
.lx-editorial__aside { display: flex; flex-direction: column; }
.lx-editorial__aside-label {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin: 0 0 clamp(1rem, 3vw, 2rem);
  font-size: 0.92rem; font-weight: 400; color: var(--lx-text);
}
.lx-editorial__news {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}
.lx-editorial__news > :only-child { grid-column: 1 / -1; max-width: 280px; }
.lx-editorial__card {
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--lx-text);
}
.lx-editorial__card-media {
  display: block; width: 100%; aspect-ratio: 1 / 1;
  overflow: hidden; border-radius: 2px; background: #e3ddd3;
  margin-bottom: 0.85rem;
}
.lx-editorial__card-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s var(--lx-ease);
}
.lx-editorial__card:hover .lx-editorial__card-img { transform: scale(1.04); }
.lx-editorial__card-img--empty {
  background: linear-gradient(135deg, #ddd5c8, #cfc6b6);
}
.lx-editorial__card-title {
  font-size: 0.95rem; font-weight: 400; line-height: 1.4;
  color: var(--lx-text);
}
.lx-editorial__card:hover .lx-editorial__card-title { text-decoration: underline; text-underline-offset: 3px; }
.lx-editorial__card-date {
  margin-top: 0.85rem;
  font-size: 0.85rem; color: #9a8f80; line-height: 1.3;
}

/* Tablet: news rail drops below the statement */
@media (max-width: 1023px) {
  .lx-editorial__inner { grid-template-columns: 1fr; }
  .lx-editorial__aside { margin-top: 1rem; }
  .lx-editorial__news { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 620px; }
}
@media (max-width: 560px) {
  .lx-editorial__float { width: 42%; margin-right: 1.1rem; }
  .lx-editorial__news { grid-template-columns: 1fr; max-width: 340px; }
  .lx-editorial__news > :only-child { max-width: none; }
}

/* ===== CRYSTAL STORY VIDEOS (premium, compact) ===== */
.lx-vids { padding: 4rem 0 4.25rem; background: var(--lx-bg); }
.lx-vids .lx-section-title { margin-bottom: 0.7rem; }
.lx-vids__caption {
  max-width: 600px; margin: 0 auto 2.5rem; text-align: center;
  color: var(--lx-muted); font-size: 0.96rem; line-height: 1.6;
}
.lx-vids__slider { position: relative; }
.lx-vids__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
@media (min-width: 768px)  { .lx-vids__grid { gap: 1.1rem; } }
@media (min-width: 1000px) { .lx-vids__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; } }
.lx-vids__dots { display: none; }

.lx-vid-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #1c1413;
  box-shadow: 0 12px 34px rgba(50, 30, 29, 0.12);
  transition: transform 0.4s var(--lx-ease), box-shadow 0.4s var(--lx-ease);
}
.lx-vid-card::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 16px; pointer-events: none;
  border: 1px solid rgba(176, 141, 87, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: border-color 0.4s var(--lx-ease);
}
.lx-vid-card:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(50, 30, 29, 0.2); }
.lx-vid-card:hover::after { border-color: rgba(176, 141, 87, 0.7); }

.lx-vid-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #1c1413;
  overflow: hidden;
}
.lx-vid-card__video {
  width: 100%; height: 100%; object-fit: cover; display: block; background: #1c1413;
  transition: transform 0.6s var(--lx-ease);
}
.lx-vid-card:hover .lx-vid-card__video { transform: scale(1.04); }

.lx-vid-card__shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(20, 12, 11, 0.82) 0%, rgba(20, 12, 11, 0.28) 38%, rgba(20, 12, 11, 0) 62%);
}
.lx-vid-card__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.7rem; text-align: center; padding: 1rem;
  color: var(--lx-muted); font-size: 0.76rem; line-height: 1.4;
  background: #f7f1ea;
}

.lx-vid-card__tag {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 3;
  display: inline-flex; align-items: center;
  padding: 0.32rem 0.7rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: #fff; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; line-height: 1;
}

.lx-vid-card__play {
  position: absolute; top: 50%; left: 50%; z-index: 4;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  color: #fff; padding-left: 3px; cursor: pointer;
  opacity: 0.92; transition: opacity 0.35s ease, transform 0.35s var(--lx-ease), background 0.2s ease;
}
.lx-vid-card__play:hover { background: rgba(255, 255, 255, 0.26); }
.lx-vid-card__ico-pause { display: none; }
/* When playing: show pause glyph, and let it fade unless hovered */
.lx-vid-card.is-playing .lx-vid-card__ico-play { display: none; }
.lx-vid-card.is-playing .lx-vid-card__ico-pause { display: block; padding-left: 0; }
.lx-vid-card.is-playing .lx-vid-card__play { opacity: 0; transform: translate(-50%, -50%) scale(0.82); }
.lx-vid-card.is-playing:hover .lx-vid-card__play,
.lx-vid-card.is-playing .lx-vid-card__play:focus-visible { opacity: 0.92; transform: translate(-50%, -50%) scale(1); }
/* Paused: play glyph stays fully visible */
.lx-vid-card.is-paused .lx-vid-card__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.lx-vid-card__sound {
  position: absolute; right: 0.7rem; bottom: 0.7rem; z-index: 4;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20, 12, 11, 0.5); color: #fff; border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  transition: background 0.2s ease;
}
.lx-vid-card__sound:hover { background: rgba(20, 12, 11, 0.78); }
.lx-vid-card__ico-on { display: none; }
.lx-vid-card.is-unmuted .lx-vid-card__ico-mute { display: none; }
.lx-vid-card.is-unmuted .lx-vid-card__ico-on { display: block; }

.lx-vid-card__overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 1rem 1rem 1.05rem; text-align: left; color: #fff;
}
.lx-vid-card__title {
  margin: 0; font-family: var(--lx-font-body);
  font-size: 0.95rem; font-weight: 600; line-height: 1.3;
  letter-spacing: 0.01em;
}
.lx-vid-card__desc {
  margin: 0.3rem 0 0; font-size: 0.78rem; line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
}

@media (max-width: 767px) {
  .lx-vids { padding: 3.25rem 0 3.5rem; }

  /* One-by-one swipeable slider on mobile */
  .lx-vids__grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.25rem 0 0.25rem;
    margin: 0 -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .lx-vids__grid::-webkit-scrollbar { display: none; }
  .lx-vid-card {
    flex: 0 0 84%;
    max-width: 84%;
    scroll-snap-align: center;
    border-radius: 14px;
  }
  .lx-vid-card::after { border-radius: 14px; }
  .lx-vid-card__play { width: 48px; height: 48px; }
  .lx-vid-card__title { font-size: 0.88rem; }
  .lx-vid-card__desc { font-size: 0.74rem; -webkit-line-clamp: 2; }
  .lx-vid-card__tag { font-size: 0.56rem; padding: 0.28rem 0.6rem; }

  .lx-vids__dots {
    display: flex; justify-content: center; gap: 0.45rem; margin-top: 1.25rem;
  }
  .lx-vids__dot {
    width: 7px; height: 7px; border-radius: 50%; padding: 0; cursor: pointer;
    background: rgba(50, 30, 29, 0.22); border: none;
    transition: width 0.3s var(--lx-ease), background 0.3s var(--lx-ease);
  }
  .lx-vids__dot.is-active { width: 22px; border-radius: 999px; background: var(--lx-accent); }
}

/* ===== SHOP BY PURPOSE (unchanged) ===== */
.lx-purpose { padding: 5rem 0 4rem; background: var(--lx-bg); }
.lx-purpose__track-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 0.5rem; }
.lx-purpose__track-wrap::-webkit-scrollbar { display: none; }
.lx-purpose__track { display: flex; gap: 1.25rem; width: max-content; padding: 0.5rem 0.5rem 0.75rem; margin: 0 auto; }
@media (min-width: 900px) { .lx-purpose__track { width: 100%; justify-content: center; flex-wrap: wrap; } }
.lx-purpose__card { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--lx-text); cursor: pointer; transition: transform 0.25s var(--lx-ease); flex: 0 0 auto; width: 120px; }
@media (min-width: 900px) { .lx-purpose__card { width: 140px; } }
.lx-purpose__card:hover { transform: translateY(-5px); }
.lx-purpose__label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-align: center; text-transform: uppercase; line-height: 1.3; color: var(--lx-text); min-height: 1.5em; }
.lx-purpose__icon-wrap { width: 120px; height: 120px; border-radius: 24px; background: var(--lx-surface); overflow: hidden; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(50, 30, 29, 0.06); transition: box-shadow 0.25s var(--lx-ease), transform 0.25s var(--lx-ease); }
@media (min-width: 900px) { .lx-purpose__icon-wrap { width: 140px; height: 140px; border-radius: 28px; } }
.lx-purpose__card:hover .lx-purpose__icon-wrap { box-shadow: 0 12px 36px rgba(176, 141, 87, 0.18); transform: scale(1.03); }
.lx-purpose__icon-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lx-purpose__icon-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #f5ede6; }

/* ===== PRODUCTS (Essentials-style 0-gap cards) ===== */
.lx-products { padding: 5rem 0 0 !important; background: var(--lx-bg); }
.lx-products__empty { text-align: center; color: var(--lx-muted); padding: 4rem 0; font-size: 0.9rem; }
.lx-products .lx-container { max-width: 100% !important; padding-left: 0 !important; padding-right: 0 !important; }
.lx-products .lx-section-title { margin: 0 0 4rem !important; padding: 0 1.25rem; }

.lx-products__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px !important;
  padding: 4px !important;
  width: 100%;
  margin: 0 !important;
  background: var(--lx-grid-gap) !important;
  border: 0 !important;
}
/* 2 columns on desktop -> 2 × 3 = 6 products visible initially */
@media (min-width: 768px)  { .lx-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 767px)  { .lx-products__grid { gap: 3px !important; padding: 3px !important; } }

.lx-product-card {
  position: relative;
  background: var(--lx-white) !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  box-shadow: none !important;
  transition: none !important;
}
.lx-product-card:hover { box-shadow: none !important; transform: none !important; }

.lx-product-card__img-wrap {
  display: block; position: relative;
  aspect-ratio: 1 / 1.08;
  background: #fff !important; overflow: hidden;
}
.lx-product-card__img {
  width: 100%; height: 100%;
  object-fit: contain !important; padding: 11% !important;
  display: block; background: #fff !important;
  transition: transform 0.45s ease, opacity 0.35s ease;
}
.lx-product-card__img--hover { position: absolute; inset: 0; opacity: 0; }
.lx-product-card:hover .lx-product-card__img--primary { opacity: 0; transform: scale(1.03); }
.lx-product-card:hover .lx-product-card__img--hover { opacity: 1; transform: scale(1.03); }
.lx-product-card__img--empty { background: #f5ede6; }

.lx-product-card__info {
  min-height: 160px;
  padding: 1.35rem clamp(1.35rem, 2.5vw, 2.35rem) 1.85rem !important;
  display: flex; flex-direction: column;
  align-items: center !important; justify-content: flex-start;
  gap: 0.42rem; text-align: center !important; background: #fff;
}
.lx-product-card__title {
  width: 100% !important;
  font-family: var(--lx-font-body);
  font-size: 1rem !important; font-weight: 700 !important;
  line-height: 1.35 !important; margin: 0; text-align: center !important;
}
.lx-product-card__title a { color: var(--lx-text); text-decoration: none; }
.lx-product-card__title a:hover { color: var(--lx-accent); }
.lx-product-card__purpose {
  display: block !important; width: 100% !important; margin: 0 !important; padding: 0 !important;
  background: transparent !important; border: 0 !important;
  color: #5F4B45 !important; font-size: 0.93rem !important; font-weight: 400 !important;
  line-height: 1.4 !important; text-align: center !important; letter-spacing: 0;
}
.lx-product-card__price {
  display: flex; align-items: center; justify-content: center !important;
  gap: 0.5rem; margin-top: 0.72rem; width: 100% !important;
  font-size: 1.08rem !important; font-weight: 600 !important; line-height: 1.2; color: var(--lx-text);
}
.lx-product-card__price--compare { color: var(--lx-muted); font-weight: 400; font-size: 0.9rem; }
.lx-product-card__price--current { color: var(--lx-text); font-size: 1.08rem !important; font-weight: 600 !important; }

@media (max-width: 767px) {
  .lx-products { padding-top: 3.5rem !important; }
  .lx-products .lx-section-title { margin-bottom: 2.5rem !important; }
  .lx-product-card__img-wrap { aspect-ratio: 1 / 1.05; }
  .lx-product-card__img { padding: 10% !important; }
  .lx-product-card__info { min-height: 140px; padding: 1rem 0.95rem 1.35rem !important; }
  .lx-product-card__title { font-size: 0.88rem !important; }
  .lx-product-card__purpose { font-size: 0.82rem !important; }
  .lx-product-card__price, .lx-product-card__price--current { font-size: 1rem !important; }
}

/* ===== PAGINATION ===== */
.lx-pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin: 3rem 1.25rem 0; flex-wrap: wrap; }
.lx-pagination__page, .lx-pagination__arrow {
  min-width: 40px; height: 40px; padding: 0 0.5rem; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--lx-font-body); font-size: 0.85rem; font-weight: 500;
  color: var(--lx-text); text-decoration: none; border: 1px solid var(--lx-border);
  background: var(--lx-white); transition: all 0.2s var(--lx-ease);
}
.lx-pagination__page:hover, .lx-pagination__arrow:hover { border-color: var(--lx-accent); color: var(--lx-accent); }
.lx-pagination__page--current { background: var(--lx-text); color: #fff; border-color: var(--lx-text); }
.lx-pagination__page--dots { border: none; background: none; cursor: default; color: var(--lx-muted); }
.lx-pagination__arrow--disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.lx-pagination__count { text-align: center; margin: 1rem 1.25rem 0; font-size: 0.78rem; color: var(--lx-muted); letter-spacing: 0.03em; }

/* ===== PRODUCTS: Load More reveal ===== */
/* Cells keep the existing card design; we only control visibility + reveal. */
.lx-products__cell { display: block; }
.lx-products__cell.is-hidden { display: none; }
/* When revealed, fade + lift the newly shown cells in smoothly. */
.lx-products__cell.is-revealing {
  animation: lx-products-reveal 0.55s var(--lx-ease) both;
}
@keyframes lx-products-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.lx-products__more {
  display: flex; justify-content: center;
  margin: clamp(2rem, 4vw, 3rem) 1.25rem 0;
}
.lx-products__more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 50px; padding: 0.95rem 2.2rem;
  background: var(--lx-text); color: #fff;
  border: 1px solid var(--lx-text); border-radius: 999px;
  font-family: var(--lx-font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.03em; line-height: 1; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--lx-ease), opacity 0.3s ease;
}
.lx-products__more-btn:hover { background: var(--lx-accent); border-color: var(--lx-accent); transform: translateY(-2px); }
.lx-products__more-btn:focus-visible { outline: 2px solid var(--lx-accent); outline-offset: 3px; }
.lx-products__more-count { opacity: 0.7; font-weight: 500; }
.lx-products__more-ico {
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--lx-ease);
}
/* When expanded (Show Less), flip the chevron to point up. */
.lx-products__more-btn.is-expanded .lx-products__more-ico { transform: rotate(180deg); }

@media (prefers-reduced-motion: reduce) {
  .lx-products__cell.is-revealing { animation: none; }
  .lx-products__more-ico { transition: none; }
}

/* ===== WHY NAMAH (Image + Text feature) — smaller premium 3D panel ===== */
.lx-feature { padding: 4.25rem 0 0; background: var(--lx-white); perspective: 1400px; }
.lx-feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.82fr);
  min-height: clamp(380px, 34vw, 560px);
  background: var(--lx-white);
  max-width: 1180px;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(236, 227, 218, 0.95);
  box-shadow: 0 26px 80px rgba(50, 30, 29, 0.12), 0 1px 0 rgba(255,255,255,0.8) inset;
  transform: translateZ(0) rotateX(0.001deg);
  transition: transform 0.45s var(--lx-ease), box-shadow 0.45s var(--lx-ease);
}
.lx-feature__inner:hover {
  transform: translateY(-4px) rotateX(0.001deg);
  box-shadow: 0 34px 95px rgba(50, 30, 29, 0.16), 0 1px 0 rgba(255,255,255,0.9) inset;
}
.lx-feature__inner--reverse .lx-feature__media { order: 2; }
.lx-feature__inner--reverse .lx-feature__content { order: 1; }
.lx-feature__media { position: relative; overflow: hidden; background: #f5f0eb; transform: translateZ(18px); }
.lx-feature__img, .lx-feature__placeholder { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.lx-feature__img { transform: scale(1.01); }
.lx-feature__placeholder {
  min-height: 420px;
  background:
    radial-gradient(circle at 50% 44%, rgba(176, 141, 87, 0.20), transparent 24%),
    linear-gradient(135deg, #F8F1EC 0%, #EEE0D5 100%);
}
.lx-feature__content {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: clamp(2.25rem, 5vw, 4.75rem) clamp(1.75rem, 5.5vw, 5rem); background: #fff; color: var(--lx-text);
}
.lx-feature__eyebrow { margin: 0 0 0.7rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lx-text); }
.lx-feature__title {
  margin: 0 0 1.35rem; font-family: var(--lx-font-head);
  font-size: clamp(2rem, 3.6vw, 3.8rem); font-weight: 400; font-style: italic;
  line-height: 1.05; letter-spacing: 0.01em; color: var(--lx-text);
}
.lx-feature__text { max-width: 560px; margin: 0 0 2.25rem; font-size: clamp(0.96rem, 1.25vw, 1.08rem); line-height: 1.65; color: var(--lx-text); }
.lx-feature__text p { margin: 0; }
.lx-feature__links { display: grid; gap: 0.3rem; }
.lx-feature__link { width: fit-content; color: var(--lx-text); font-size: 0.98rem; font-weight: 600; line-height: 1.3; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s ease; }
.lx-feature__link:hover { color: var(--lx-accent); }

@media (max-width: 767px) {
  .lx-feature { padding-top: 3.5rem; }
  .lx-feature__inner { grid-template-columns: 1fr; min-height: auto; width: min(100% - 2rem, 560px); border-radius: 18px; }
  .lx-feature__inner--reverse .lx-feature__media, .lx-feature__inner--reverse .lx-feature__content { order: initial; }
  .lx-feature__media { min-height: 260px; }
  .lx-feature__content { padding: 2.5rem 1.5rem 3rem; }
}

/* ===== CHOOSE THE RIGHT CRYSTAL ===== */
.lx-choose { padding: 5rem 0 0; background: var(--lx-bg); }
.lx-choose__inner {
  position: relative;
  min-height: 320px;
  width: min(1280px, calc(100% - 2.5rem));
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-radius: 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--lx-choose-bg, #FAF7F3) 52%, #F2E9DF 100%);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  border: 1px solid rgba(236, 227, 218, 0.95);
  box-shadow: 0 24px 70px rgba(50, 30, 29, 0.12), 0 1px 0 rgba(255,255,255,0.85) inset;
  transform: translateZ(0);
  transition: transform 0.45s var(--lx-ease), box-shadow 0.45s var(--lx-ease);
}
.lx-choose__inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px rgba(50, 30, 29, 0.16), 0 1px 0 rgba(255,255,255,0.95) inset;
}
.lx-choose--has-image .lx-choose__inner {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.48)),
    var(--lx-choose-image);
}
.lx-choose__content { position: relative; z-index: 2; width: min(720px, 100%); text-align: center; padding: 0.5rem 1rem; }
.lx-choose__content::before { content: ""; display: block; width: 72px; height: 1px; margin: 0 auto 1.15rem; background: var(--lx-accent); }
.lx-choose__eyebrow { margin: 0 0 0.7rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lx-accent); }
.lx-choose__title {
  font-family: var(--lx-font-head); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; font-style: italic; line-height: 1.1; letter-spacing: 0.03em;
  color: var(--lx-text); margin: 0 0 1rem;
}
.lx-choose__text { font-size: clamp(0.92rem, 1.4vw, 1.08rem); line-height: 1.6; color: var(--lx-text); max-width: 560px; margin: 0 auto 2rem; }
.lx-choose__btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 220px; min-height: 48px; padding: 0.9rem 1.9rem;
  background: var(--lx-accent); color: #fff; text-decoration: none;
  font-size: 0.92rem; font-weight: 600; line-height: 1;
  border: 1px solid var(--lx-text); transition: opacity 0.2s ease, transform 0.2s ease;
}
.lx-choose__btn:hover { color: #fff; background: var(--lx-accent); border-color: var(--lx-accent); transform: translateY(-1px); }

@media (max-width: 767px) {
  .lx-choose { padding-top: 3.5rem; }
  .lx-choose__inner { min-height: auto; width: min(100% - 2rem, 560px); padding: 2.8rem 1.25rem; margin: 0 auto; border-radius: 16px; }
  .lx-choose__btn { width: 100%; max-width: 280px; }
}

/* ===== 3D CLIENT TESTIMONIALS ===== */
.lx-reviews3d { padding: 5rem 0 4.5rem; background: var(--lx-bg); }
.lx-reviews3d__intro { max-width: 920px; margin: 0 auto 2rem; text-align: center; }
.lx-reviews3d__heading { margin-bottom: 0.8rem; }
.lx-reviews3d__caption { max-width: 620px; margin: 0 auto; color: var(--lx-muted); font-size: 0.98rem; line-height: 1.65; }
.lx-reviews3d__panel {
  position: relative; max-width: 1200px; margin: 0 auto; overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(176, 141, 87, 0.07), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(176, 141, 87, 0.05), transparent 32%),
    linear-gradient(135deg, #FFFFFF 0%, #FCFAF8 55%, #FAF7F3 100%);
  color: var(--lx-text); border: 1px solid var(--lx-border); border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
  box-shadow: 0 18px 48px rgba(50, 30, 29, 0.06);
}
.lx-reviews3d__panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 48%, transparent 100%); pointer-events: none; }
.lx-reviews3d__stage { position: relative; z-index: 2; perspective: 1700px; }
.lx-reviews3d__viewport { position: relative; transform-style: preserve-3d; height: clamp(420px, 48vw, 590px); touch-action: pan-y; }
.lx-reviews3d__card {
  position: absolute; top: 50%; left: 50%; width: clamp(230px, 29vw, 360px);
  transform: translate(-50%, -50%); transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.3, 1), opacity 0.4s ease;
  cursor: pointer; -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.lx-reviews3d__quote-card {
  aspect-ratio: 4 / 5; box-sizing: border-box; display: flex; flex-direction: column; gap: 1rem;
  padding: clamp(1.25rem, 2.4vw, 1.9rem); background: #fff; color: var(--lx-text);
  border: 1px solid var(--lx-border); border-radius: 18px; box-shadow: 0 20px 46px rgba(50, 30, 29, 0.16);
}
.lx-reviews3d__stars { color: var(--lx-accent); font-size: 0.95rem; letter-spacing: 0.16em; line-height: 1; }
.lx-reviews3d__quote { margin: 0; font-size: clamp(0.9rem, 1.25vw, 1rem); line-height: 1.65; flex: 1 1 auto; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 7; }
.lx-reviews3d__author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.lx-reviews3d__avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; background: var(--lx-accent); color: #fff; font-family: var(--lx-font-head); font-size: 1.05rem; line-height: 1; }
.lx-reviews3d__name { margin: 0; font-size: 0.9rem; font-weight: 600; line-height: 1.2; }
.lx-reviews3d__role { margin: 0.2rem 0 0; font-size: 0.72rem; color: var(--lx-muted); line-height: 1.2; }
.lx-reviews3d__nav { position: relative; z-index: 3; display: flex; gap: 0.8rem; justify-content: center; margin-top: clamp(1rem, 2vw, 1.7rem); }
.lx-reviews3d__btn { width: 46px; height: 46px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; background: transparent; color: var(--lx-text); border: 1px solid rgba(50, 30, 29, 0.28); transition: background 0.2s, color 0.2s, opacity 0.2s, transform 0.2s; }
.lx-reviews3d__btn--next { background: var(--lx-text); color: #fff; border-color: var(--lx-text); }
.lx-reviews3d__btn:hover { opacity: 0.9; transform: translateY(-1px); }
.lx-reviews3d__btn[disabled] { opacity: 0.35; cursor: default; transform: none; }

@media (max-width: 749px) {
  .lx-reviews3d { padding: 3.5rem 0; }
  .lx-reviews3d__panel { border-radius: 18px; padding-left: 0.85rem; padding-right: 0.85rem; }
  .lx-reviews3d__viewport { height: 108vw; min-height: 430px; }
}

/* ===== JOIN NAMAH ===== */
.lx-join { padding: 5rem 0 0; background: var(--lx-join-bg, #FAF7F3); }
.lx-join__inner {
  position: relative; min-height: 280px; max-width: 100%; margin: 0 auto;
  padding: 3.25rem 1.5rem; display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--lx-join-bg, #FAF7F3) 50%, #F6F0E9 100%);
}
.lx-join__content { position: relative; z-index: 2; width: min(760px, 100%); text-align: center; padding: 0.5rem 1rem; }
.lx-join__content::before { content: ""; display: block; width: 72px; height: 1px; margin: 0 auto 1.15rem; background: var(--lx-accent); }
.lx-join__title { font-family: var(--lx-font-head); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; font-style: italic; line-height: 1.1; letter-spacing: 0.03em; color: var(--lx-text); margin: 0 0 1rem; }
.lx-join__text { font-size: clamp(0.92rem, 1.4vw, 1.08rem); line-height: 1.55; color: var(--lx-text); max-width: 690px; margin: 0 auto 2rem; }
.lx-join__btn { display: inline-flex; align-items: center; justify-content: center; min-width: 220px; min-height: 48px; padding: 0.9rem 1.7rem; background: var(--lx-accent); color: #fff; text-decoration: none; font-size: 0.92rem; font-weight: 600; line-height: 1; border: 1px solid var(--lx-text); transition: opacity 0.2s ease, transform 0.2s ease; }
.lx-join__btn:hover { color: #fff; background: var(--lx-accent); border-color: var(--lx-accent); transform: translateY(-1px); }

@media (max-width: 767px) {
  .lx-join { padding-top: 3.5rem; }
  .lx-join__inner { min-height: auto; padding: 2.6rem 1.25rem; }
  .lx-join__text { margin-bottom: 1.5rem; }
  .lx-join__btn { width: 100%; max-width: 260px; }
}

/* ===== INSTAGRAM ===== */
.lx-reels { padding: 5rem 0 6rem; background: var(--lx-bg); }
.nc-instagram-feed { width: 100%; min-height: 100px; }
.nc-instagram-feed__app { width: 100%; }

/* ===== FAQ ===== */
.lx-faq { padding: 5rem 0 6rem; background: var(--lx-bg); }
.lx-faq__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--lx-border); }
.lx-faq__item { border-bottom: 1px solid var(--lx-border); }
.lx-faq__question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem 0; background: none; border: none; cursor: pointer; font-family: var(--lx-font-body); font-size: 0.9rem; font-weight: 500; color: var(--lx-text); text-align: left; transition: color 0.2s; }
.lx-faq__question:hover { color: var(--lx-accent); }
.lx-faq__icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform 0.3s var(--lx-ease); }
.lx-faq__question[aria-expanded="true"] .lx-faq__icon { transform: rotate(45deg); }
.lx-faq__answer { overflow: hidden; }
.lx-faq__answer[hidden] { display: none; }
.lx-faq__answer-inner { padding: 0 0 1.4rem; font-size: 0.88rem; line-height: 1.75; color: var(--lx-muted); }

/* Visible keyboard focus for the new interactive elements */
.lx-story__dot:focus-visible,
.lx-story__btn:focus-visible,
.lx-editorial__card:focus-visible {
  outline: 2px solid var(--lx-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .lx-purpose__card, .lx-product-card, .lx-product-card__img, .lx-faq__icon, .lx-reviews3d__card, .lx-vid-card__video {
    transition: none !important; animation: none !important;
  }
}


/* =========================================================
   NAMAH MOBILE VIDEO HERO HEIGHT FIX
   Mobile only: makes Luxe video hero full screen height
   and removes bottom white gap / next-section peek.
   ========================================================= */
@media screen and (max-width: 767px) {
  .lx-video-hero {
    height: 100vh !important;
    height: 100svh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100svh !important;
    min-height: 100dvh !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .lx-video-hero__media {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .lx-video-hero__video,
  .lx-video-hero__poster {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .lx-video-hero__content {
    min-height: 100% !important;
  }

  .lx-video-hero + * {
    margin-top: 0 !important;
  }
}
/* END_SECTION:luxe-collection */