/** Shopify CDN: Minification failed

Line 4065:7 Unexpected "{"
Line 4065:16 Expected ":"
Line 4077:7 Unexpected "{"
Line 4077:16 Expected ":"
Line 4088:7 Unexpected "{"
Line 4088:16 Expected ":"
Line 4095:7 Unexpected "{"
Line 4095:16 Expected ":"
Line 4109:7 Unexpected "{"
Line 4109:16 Expected ":"
... and 84 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-mobile (INDEX:11) */
/* ================================================================
   COLLECTION BANNERS — MOBILE ONLY  (unique cbm-* namespace)
   Two panels, each exactly half the screen, both visible, no scroll.
   ================================================================ */

.cbm {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-columns: 1fr;
  gap: var(--cbm-gap, 2px);
  width: 100%;
  max-width: 100%;
  height: calc(100dvh - var(--cbm-header, 56px));
  min-height: calc(100dvh - var(--cbm-header, 56px));
  max-height: calc(100dvh - var(--cbm-header, 56px));
  margin: 0;
  background: transparent;
  overflow: hidden;
  overflow: clip;
}
@supports not (height: 100dvh) {
  .cbm {
    height: calc(100vh - var(--cbm-header, 56px));
    min-height: calc(100vh - var(--cbm-header, 56px));
    max-height: calc(100vh - var(--cbm-header, 56px));
  }
}
@supports (height: 100svh) {
  .cbm {
    height: calc(100svh - var(--cbm-header, 56px));
    min-height: calc(100svh - var(--cbm-header, 56px));
    max-height: calc(100svh - var(--cbm-header, 56px));
  }
}

@media (max-width: 767px) {
  html:has(.cbm--mobile),
  body:has(.cbm--mobile) {
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  body:has(.cbm--mobile) {
    touch-action: pan-x pan-y;
  }

  html:has(.cbm--mobile),
  body:has(.cbm--mobile),
  body:has(.cbm--mobile) main {
    overflow-x: hidden !important;
  }
}

.cbm-panel {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}

.cbm-img-wrap { position: absolute; inset: 0; overflow: hidden; }

.cbm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: grayscale(var(--cbm-grayscale, 100%));
  transform: scale(1.04);
  transition: filter 0.5s ease, transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: filter, transform;
}

/* Reveal real colour + ease the zoom ONLY when clicked (.is-active set by JS).
   On desktop, hover also previews it. */
.cbm-panel:hover .cbm-img,
.cbm-panel.is-active .cbm-img {
  filter: grayscale(0%);
  transform: scale(1);
}

.cbm-img--empty {
  background: linear-gradient(135deg, #f2f0ec, #d8d4cc);
}

.cbm-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.10) 40%,
    rgba(0,0,0,var(--cbm-overlay, 0.55)) 100%
  );
}

.cbm-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  pointer-events: none;
}

.cbm-eyebrow {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 0.5rem;
}

.cbm-title {
  font-family: 'Gibs', 'Gill Sans', 'Trebuchet MS', sans-serif;
  font-size: var(--cbm-title, 15vw);
  font-weight: normal;
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.cbm-desc {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 20rem;
  margin: 0.9rem 0 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
  /* Hidden by default; revealed on hover/tap (matches the desktop banner). */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.cbm-panel:hover .cbm-desc,
.cbm-panel.is-active .cbm-desc {
  opacity: 1;
  transform: translateY(0);
}

.cbm-cta {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 3px;
}

/* The hairline divider line between the two halves */
.cbm-panel:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: var(--cbm-gap, 2px);
  background: rgba(255,255,255,0.10);
  z-index: 3;
  pointer-events: none;
}

/* ── Visibility control ──
   This section is intended for mobile. Hide it on desktop. */
.cbm--mobile { display: grid; }
@media (min-width: 768px) {
  .cbm--mobile { display: none !important; }
}

/* Optional: allow showing on all sizes if the user picks "all". */
.cbm--all { display: grid; }
/* END_SECTION:collection-banners-mobile */

/* START_SECTION:collection-banners (INDEX:12) */
/* ================================================
   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%));
  
}

.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 base hook (Liquid-free): see the scoped <style> in the section
   markup for the actual 50/50 split, which CAN use the real section id. ── */
@media (max-width: 767px) {
  .cb-section-wrapper {
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .cb-img-wrap,
  .cb-img {
    height: 100% !important;
  }

  .cb-img {
    object-fit: cover !important;
    object-position: center center !important;
  }

  /* Tighter padding + title sized for the half-height panel */
  .cb-title-zone {
    padding: 1.5rem 1.4rem 0.75rem !important;
  }

  .cb-title {
    font-size: clamp(3.2rem, 15vw, 5.5rem) !important;
  }

  /* Keep description/CTA visible (no hover on mobile) but compact */
  .cb-footer-zone {
    opacity: 1 !important;
    transform: none !important;
    padding: 0 1.4rem 1.5rem !important;
    gap: 0.5rem !important;
  }

  .cb-desc {
    max-width: 20rem !important;
    font-size: 0.66rem !important;
    line-height: 1.5 !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:17) */
/* ==========================================================
   NAMAH ESSENTIALS — FINAL MOBILE RESPONSIVE OVERRIDES
   Responsive overrides for the complete Essentials section.
   ========================================================== */

html.ec-essentials-page,
body.ec-essentials-page {
  width: 100%;
  max-width: 100%;
  overflow-x: clip !important;
}

.ec-video-hero,
.ec-purpose,
.ec-products,
.ec-feature,
.ec-reviews3d,
.ec-join,
.ec-faq,
.ec-container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.ec-video-hero img,
.ec-purpose img,
.ec-products img,
.ec-feature img,
.ec-reviews3d img,
.ec-join img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .ec-container {
    width: 100% !important;
    padding-inline: 16px !important;
  }

  /* Hero: use the actually visible mobile viewport. */
  .ec-video-hero {
    width: 100% !important;
    height: 100vh !important;
    height: 100svh !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  @supports (height: 100dvh) {
    .ec-video-hero {
      height: 100dvh !important;
    }
  }

  .ec-video-hero__media,
  .ec-video-hero__video,
  .ec-video-hero__poster {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
  }

  .ec-video-hero__video,
  .ec-video-hero__poster {
    object-fit: cover !important;
    object-position: center center !important;
  }

  .ec-video-hero__content {
    width: 100% !important;
    min-height: 100% !important;
    padding:
      calc(72px + env(safe-area-inset-top))
      20px
      calc(32px + env(safe-area-inset-bottom)) !important;
  }

  .ec-video-hero__title {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(2.25rem, 12vw, 4.5rem) !important;
    line-height: .94 !important;
    letter-spacing: .04em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .ec-video-hero__text {
    width: min(100%, 34rem);
    margin-top: 14px !important;
    font-size: .94rem !important;
    line-height: 1.5 !important;
  }

  .ec-video-hero__btn {
    width: auto !important;
    min-width: 172px !important;
    min-height: 46px !important;
    margin-top: 22px !important;
    padding: 13px 22px !important;
  }

  /* Purpose cards intentionally swipe horizontally on mobile. */
  .ec-purpose {
    padding: 42px 0 28px !important;
    overflow: hidden;
  }

  .ec-purpose .ec-section-title {
    margin-bottom: 24px !important;
  }

  .ec-purpose__track-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 16px 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    overscroll-behavior-inline: contain;
  }

  .ec-purpose__track {
    display: flex !important;
    width: max-content !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 12px !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
  }

  .ec-purpose__card {
    /* Viewport minus 32px side padding and two 12px gaps, divided by 3. */
    flex: 0 0 calc((100vw - 56px) / 3) !important;
    width: calc((100vw - 56px) / 3) !important;
    min-width: 0 !important;
    scroll-snap-align: start;
  }

  .ec-purpose__icon-wrap {
    width: min(76px, calc((100vw - 80px) / 3)) !important;
    height: min(76px, calc((100vw - 80px) / 3)) !important;
    margin-inline: auto !important;
  }

  .ec-purpose__label {
    width: max-content !important;
    max-width: none !important;
    margin-inline: auto !important;
    font-size: clamp(8px, 2.35vw, 10px) !important;
    line-height: 1.15 !important;
    letter-spacing: .035em !important;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  /* Product cards: balanced two-column grid without side overflow. */
  .ec-products {
    padding-top: 30px !important;
    overflow: hidden;
  }

  .ec-products__grid {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2px !important;
    padding: 2px !important;
  }

  .ec-product-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .ec-product-card__img-wrap {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
  }

  .ec-product-card__img {
    width: 100% !important;
    height: 100% !important;
    padding: 10px !important;
    object-fit: contain !important;
  }

  .ec-product-card__info {
    width: 100% !important;
    min-height: 108px !important;
    padding: 12px 7px 14px !important;
  }

  .ec-product-card__title,
  .ec-product-card__title a {
    font-size: .76rem !important;
    line-height: 1.25 !important;
    overflow-wrap: anywhere;
  }

  .ec-product-card__purpose {
    font-size: .66rem !important;
  }

  .ec-product-card__price,
  .ec-product-card__price--current {
    font-size: .76rem !important;
  }

  /* Image/text feature becomes a natural vertical stack. */
  .ec-feature__inner,
  .ec-feature__inner--reverse {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
  }

  .ec-feature__media,
  .ec-feature__inner--reverse .ec-feature__media {
    order: 1 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 5;
  }

  .ec-feature__content,
  .ec-feature__inner--reverse .ec-feature__content {
    order: 2 !important;
    width: 100% !important;
    padding: 40px 20px 46px !important;
  }

  .ec-feature__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .ec-feature__title {
    max-width: 100% !important;
    font-size: clamp(2rem, 10vw, 3.2rem) !important;
    line-height: 1 !important;
    overflow-wrap: anywhere;
  }

  .ec-feature__text {
    max-width: 100% !important;
    font-size: .94rem !important;
    line-height: 1.6 !important;
  }

  /* Keep transformed review cards clipped inside the phone. */
  .ec-reviews3d {
    padding: 48px 0 !important;
    overflow: hidden !important;
  }

  .ec-reviews3d__panel {
    width: calc(100% - 24px) !important;
    max-width: none !important;
    margin-inline: auto !important;
    padding-inline: 10px !important;
    overflow: hidden !important;
  }

  .ec-reviews3d__viewport {
    width: 100% !important;
    min-height: 330px !important;
    overflow: hidden !important;
  }

  .ec-reviews3d__card {
    width: min(74vw, 252px) !important;
    max-width: calc(100vw - 48px) !important;
  }

  /* Newsletter / join section. */
  .ec-join {
    overflow: hidden !important;
  }

  .ec-join__inner {
    width: 100% !important;
    min-height: 0 !important;
    padding: 52px 20px !important;
  }

  .ec-join__content {
    width: 100% !important;
    max-width: 34rem !important;
    margin-inline: auto !important;
  }

  .ec-join__title {
    font-size: clamp(2rem, 10vw, 3.1rem) !important;
    line-height: 1 !important;
    overflow-wrap: anywhere;
  }

  .ec-join__text {
    font-size: .94rem !important;
    line-height: 1.55 !important;
  }

  .ec-join__btn {
    max-width: 100%;
    white-space: normal;
  }

  /* FAQ remains readable and never pushes past the screen edge. */
  .ec-faq {
    padding: 48px 0 !important;
  }

  .ec-faq__question {
    width: 100% !important;
    gap: 12px !important;
    padding-block: 18px !important;
    font-size: .92rem !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }

  .ec-faq__answer {
    max-width: 100% !important;
    font-size: .9rem !important;
    line-height: 1.6 !important;
    overflow-wrap: anywhere;
  }
}

@media screen and (max-width: 359px) {
  .ec-container {
    padding-inline: 12px !important;
  }

  .ec-video-hero__content {
    padding-inline: 16px !important;
  }

  .ec-video-hero__title {
    font-size: clamp(2rem, 12vw, 3.1rem) !important;
  }

  .ec-products__grid {
    grid-template-columns: 1fr !important;
  }

  .ec-product-card__img-wrap {
    aspect-ratio: 4 / 3 !important;
  }

  .ec-product-card__info {
    min-height: 0 !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .ec-container {
    padding-inline: 24px !important;
  }

  .ec-video-hero {
    min-height: 0 !important;
    height: 100svh !important;
  }

  .ec-video-hero__title {
    font-size: clamp(4rem, 10vw, 7rem) !important;
    letter-spacing: .08em !important;
  }

  .ec-feature__content {
    padding: 48px 36px !important;
  }

  .ec-reviews3d__panel {
    width: calc(100% - 48px) !important;
  }
}



: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;
  }
}

/* RESPONSIVE HARDENING PATCH
   Keeps the Essentials page balanced on large desktop, laptop, tablet, and mobile.
*/
.ec-essentials-page,
.ec-essentials-page body {
  overflow-x: hidden;
}

.ec-video-hero,
.ec-purpose,
.ec-products,
.ec-feature,
.ec-reviews3d,
.ec-join,
.ec-faq {
  max-width: 100%;
}

.ec-container {
  width: min(100%, 1480px) !important;
  padding-left: clamp(16px, 3vw, 56px) !important;
  padding-right: clamp(16px, 3vw, 56px) !important;
}

.ec-section-title {
  font-size: clamp(1.5rem, 1.25rem + 0.7vw, 2.25rem) !important;
  line-height: 1.15 !important;
}

.ec-video-hero {
  height: 100vh !important;
  height: 100svh !important;
  min-height: 640px !important;
  max-height: none !important;
}

.ec-video-hero__video,
.ec-video-hero__poster {
  object-fit: cover !important;
  object-position: center center !important;
}

.ec-video-hero__title {
  font-size: clamp(2.5rem, 8vw, 8.5rem) !important;
  letter-spacing: clamp(0.12em, 1.2vw, 0.34em) !important;
  max-width: min(92vw, 1300px) !important;
  overflow-wrap: anywhere;
}

.ec-purpose {
  padding: clamp(2.5rem, 4vw, 5.5rem) 0 clamp(2rem, 3.5vw, 4.5rem) !important;
}

.ec-purpose__track-wrap {
  max-width: 100%;
}

.ec-purpose__track {
  gap: clamp(0.75rem, 1.4vw, 1.35rem) !important;
}

.ec-purpose__icon-wrap {
  width: clamp(72px, 7vw, 118px) !important;
  height: clamp(72px, 7vw, 118px) !important;
}

.ec-purpose__label {
  font-size: clamp(0.58rem, 0.52rem + 0.22vw, 0.78rem) !important;
  line-height: 1.2 !important;
  min-height: 1.5em;
}

.ec-products {
  padding-top: clamp(2rem, 3vw, 4rem) !important;
}

.ec-products__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 2px !important;
  padding: 2px !important;
}

.ec-product-card {
  min-width: 0;
}

.ec-product-card__img-wrap {
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
}

.ec-product-card__img {
  object-fit: contain !important;
  object-position: center center !important;
  padding: clamp(12px, 2.4vw, 42px) !important;
}

.ec-product-card__info {
  min-height: clamp(112px, 9vw, 158px) !important;
  padding: clamp(0.9rem, 1.5vw, 1.35rem) clamp(0.7rem, 1.5vw, 1.5rem) clamp(1rem, 1.8vw, 1.65rem) !important;
}

.ec-product-card__title {
  font-size: clamp(0.78rem, 0.7rem + 0.28vw, 1rem) !important;
  line-height: 1.3 !important;
}

.ec-product-card__purpose {
  font-size: clamp(0.72rem, 0.66rem + 0.22vw, 0.9rem) !important;
}

.ec-product-card__price,
.ec-product-card__price--current {
  font-size: clamp(0.82rem, 0.75rem + 0.25vw, 1.02rem) !important;
}

.ec-feature__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  min-height: clamp(480px, 45vw, 760px) !important;
}

.ec-feature__media {
  min-height: clamp(420px, 42vw, 760px) !important;
}

.ec-feature__img {
  object-fit: cover !important;
}

.ec-feature__content {
  padding: clamp(2.25rem, 6vw, 7rem) clamp(1.5rem, 6vw, 8rem) !important;
}

.ec-feature__title {
  font-size: clamp(2rem, 2.2vw, 3.8rem) !important;
  line-height: 1.08 !important;
}

.ec-feature__text {
  font-size: clamp(0.9rem, 0.84rem + 0.25vw, 1.08rem) !important;
  max-width: 620px !important;
}

.ec-reviews3d {
  padding: clamp(3rem, 5vw, 6rem) 0 !important;
}

.ec-reviews3d__panel {
  width: min(100%, 960px) !important;
  max-width: calc(100vw - 32px) !important;
}

.ec-reviews3d__viewport {
  min-height: clamp(300px, 26vw, 430px) !important;
}

.ec-reviews3d__card {
  width: clamp(210px, 18vw, 300px) !important;
}

.ec-reviews3d__quote {
  font-size: clamp(0.76rem, 0.7rem + 0.18vw, 0.92rem) !important;
}

.ec-faq .ec-container,
.ec-container--narrow {
  width: min(100%, 900px) !important;
}

.ec-faq {
  padding: clamp(3rem, 5vw, 6rem) 0 !important;
}

.ec-faq__question {
  gap: 1rem !important;
}

@media (min-width: 768px) {
  .ec-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1120px) {
  .ec-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1600px) {
  .ec-container {
    width: min(100%, 1680px) !important;
  }

  .ec-video-hero {
    height: 100vh !important;
    height: 100svh !important;
    min-height: 760px !important;
  }

  .ec-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .ec-product-card__img {
    padding: clamp(32px, 2.8vw, 58px) !important;
  }

  .ec-feature__inner {
    min-height: min(46vw, 820px) !important;
  }
}

@media (max-width: 1024px) {
  .ec-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .ec-video-hero {
    height: 100vh !important;
    height: 100svh !important;
    min-height: 620px !important;
  }

  .ec-purpose__track {
    justify-content: flex-start !important;
  }

  .ec-feature__inner {
    min-height: 0 !important;
  }

  .ec-feature__content {
    padding: 3rem 2rem !important;
  }
}

@media (max-width: 767px) {
  .ec-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .ec-video-hero {
    height: 100svh !important;
    min-height: 560px !important;
    max-height: none !important;
  }

  .ec-video-hero__title {
    font-size: clamp(2.8rem, 14vw, 5.4rem) !important;
    letter-spacing: 0.12em !important;
  }

  .ec-purpose {
    padding: 2.25rem 0 1.5rem !important;
  }

  .ec-purpose__track-wrap {
    margin-left: -14px !important;
    margin-right: -14px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .ec-purpose__track {
    width: max-content !important;
    min-width: 100% !important;
    justify-content: flex-start !important;
  }

  .ec-purpose__card {
    width: 84px !important;
    flex: 0 0 84px !important;
  }

  .ec-purpose__icon-wrap {
    width: 70px !important;
    height: 70px !important;
  }

  .ec-products {
    padding-top: 1.6rem !important;
  }

  .ec-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2px !important;
    padding: 2px !important;
  }

  .ec-product-card__img {
    padding: 12px !important;
  }

  .ec-product-card__info {
    min-height: 112px !important;
    padding: 0.8rem 0.55rem 1rem !important;
  }

  .ec-product-card__title {
    font-size: 0.78rem !important;
  }

  .ec-product-card__purpose {
    font-size: 0.68rem !important;
  }

  .ec-product-card__price,
  .ec-product-card__price--current {
    font-size: 0.78rem !important;
  }

  .ec-feature__inner,
  .ec-feature__inner--reverse {
    grid-template-columns: 1fr !important;
  }

  .ec-feature__inner--reverse .ec-feature__media,
  .ec-feature__inner--reverse .ec-feature__content {
    order: initial !important;
  }

  .ec-feature__media {
    min-height: 360px !important;
  }

  .ec-feature__content {
    padding: 2.5rem 1.25rem !important;
    text-align: left !important;
  }

  .ec-feature__title {
    font-size: clamp(1.9rem, 9vw, 3rem) !important;
  }

  .ec-reviews3d__panel {
    max-width: calc(100vw - 24px) !important;
  }

  .ec-reviews3d__viewport {
    min-height: 340px !important;
    overflow: hidden !important;
  }

  .ec-reviews3d__card {
    width: min(72vw, 250px) !important;
  }

  .ec-faq__question {
    font-size: 0.9rem !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 420px) {
  .ec-video-hero {
    min-height: 520px !important;
  }

  .ec-product-card__info {
    min-height: 104px !important;
  }

  .ec-product-card__title {
    font-size: 0.72rem !important;
  }

  .ec-product-card__purpose,
  .ec-product-card__price,
  .ec-product-card__price--current {
    font-size: 0.68rem !important;
  }
}


/* =========================================================
   FINAL CHANGE: ESSENTIALS INTENTION → MATCH LUXE
   Final intention-section overrides.
   ========================================================= */

.ec-purpose {
  width: 100% !important;
  padding: clamp(40px, 4vw, 64px) 0 24px !important;
  overflow: hidden !important;
  background: #fff !important;
}

.ec-purpose .ec-container {
  width: min(100%, 1480px) !important;
  max-width: 100% !important;
  padding-inline: clamp(16px, 3vw, 56px) !important;
}

.ec-purpose .ec-section-title {
  margin: 0 0 clamp(28px, 3vw, 42px) !important;
  color: var(--ec-text, #321e1d) !important;
  font-family: 'Gibs', 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  font-weight: 400 !important;
  font-style: italic !important;
  line-height: 1.15 !important;
  letter-spacing: .04em !important;
  text-align: center !important;
}

.ec-purpose__track-wrap {
  width: 100% !important;
  max-width: 100% !important;
  padding: 12px 0 18px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.ec-purpose__track-wrap::-webkit-scrollbar {
  display: none;
}

.ec-purpose__track {
  display: flex !important;
  align-items: flex-start !important;
  width: max-content !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 10px 18px !important;
  gap: clamp(12px, 1.4vw, 22px) !important;
}

.ec-purpose__card {
  display: flex !important;
  flex: 0 0 clamp(110px, 10vw, 140px) !important;
  flex-direction: column !important;
  align-items: center !important;
  width: clamp(110px, 10vw, 140px) !important;
  min-width: 0 !important;
  gap: 10px !important;
  padding: 0 !important;
  text-decoration: none !important;
}

.ec-purpose__label {
  order: 1;
  width: max-content !important;
  max-width: none !important;
  min-height: 1.5em !important;
  margin-inline: auto !important;
  color: var(--ec-text, #321e1d) !important;
  font-size: clamp(9px, .7vw, 11px) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  letter-spacing: .045em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.ec-purpose__icon-wrap {
  order: 2;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: clamp(96px, 8.4vw, 118px) !important;
  height: clamp(96px, 8.4vw, 118px) !important;
  overflow: hidden !important;
  border-radius: clamp(20px, 2vw, 26px) !important;
  background: #fafafa !important;
  box-shadow: 0 8px 24px rgba(50, 30, 29, .10) !important;
}

.ec-purpose__icon-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media screen and (min-width: 900px) {
  .ec-purpose__track-wrap {
    overflow: visible !important;
  }

  .ec-purpose__track {
    width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}

@media screen and (max-width: 767px) {
  .ec-purpose {
    padding: 52px 0 32px !important;
  }

  .ec-purpose .ec-container {
    padding-inline: 16px !important;
  }

  .ec-purpose .ec-section-title {
    margin-bottom: 44px !important;
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .ec-purpose__track-wrap {
    width: calc(100% + 32px) !important;
    max-width: none !important;
    margin-inline: -16px !important;
    padding: 0 16px 24px !important;
    scroll-padding-left: 16px;
    scroll-snap-type: x mandatory;
  }

  .ec-purpose__track {
    width: max-content !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 12px !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
  }

  .ec-purpose__card {
    /* Exactly three full cards across the mobile viewport. */
    flex: 0 0 calc((100vw - 56px) / 3) !important;
    width: calc((100vw - 56px) / 3) !important;
    gap: 9px !important;
    scroll-snap-align: start;
  }

  .ec-purpose__label {
    font-size: clamp(8px, 2.35vw, 10px) !important;
    line-height: 1.15 !important;
    letter-spacing: .035em !important;
    white-space: nowrap !important;
  }

  .ec-purpose__icon-wrap {
    width: min(76px, calc((100vw - 80px) / 3)) !important;
    height: min(76px, calc((100vw - 80px) / 3)) !important;
    border-radius: clamp(16px, 5vw, 22px) !important;
  }
}

@media screen and (max-width: 359px) {
  .ec-purpose .ec-container {
    padding-inline: 12px !important;
  }

  .ec-purpose__track-wrap {
    width: calc(100% + 24px) !important;
    margin-inline: -12px !important;
    padding-inline: 12px !important;
    scroll-padding-left: 12px;
  }

  .ec-purpose__track {
    gap: 10px !important;
  }

  .ec-purpose__card {
    flex-basis: calc((100vw - 44px) / 3) !important;
    width: calc((100vw - 44px) / 3) !important;
  }

  .ec-purpose__label {
    font-size: 7.5px !important;
    letter-spacing: .02em !important;
  }
}


/* Final category and testimonial fixes */
.ec-reviews3d {
  padding: 5rem 0 4.5rem !important;
}

.ec-reviews3d__panel {
  width: auto !important;
  max-width: min(1200px, calc(100vw - 32px)) !important;
  overflow: hidden !important;
  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, #fff 0%, #fcfaf8 55%, #faf7f3 100%) !important;
  border: 1px solid var(--ec-border) !important;
  border-radius: 24px !important;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem) !important;
  box-shadow: 0 18px 48px rgba(50, 30, 29, 0.06) !important;
}

.ec-reviews3d__stage {
  perspective: 1700px !important;
}

.ec-reviews3d__viewport {
  height: clamp(420px, 48vw, 590px) !important;
  min-height: 420px !important;
  overflow: visible !important;
  transform-style: preserve-3d !important;
}

.ec-reviews3d__card {
  width: clamp(230px, 29vw, 360px) !important;
  transform-origin: center center !important;
  backface-visibility: hidden !important;
}

.ec-reviews3d__quote-card {
  box-sizing: border-box !important;
  aspect-ratio: 4 / 5 !important;
  padding: clamp(1.25rem, 2.4vw, 1.9rem) !important;
  background: #fff !important;
  border: 1px solid var(--ec-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 46px rgba(50, 30, 29, 0.16) !important;
}

.ec-reviews3d__quote {
  font-size: clamp(0.9rem, 1.25vw, 1rem) !important;
  line-height: 1.65 !important;
  -webkit-line-clamp: 7 !important;
}

.ec-purpose__icon-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.ec-reviews3d__stars {
  font-family: Arial, sans-serif !important;
  white-space: nowrap;
}

.ec-reviews3d__btn {
  font-family: Arial, sans-serif !important;
  line-height: 1 !important;
}

@media (max-width: 767px) {
  .ec-purpose,
  .ec-purpose__track-wrap,
  .ec-purpose__track,
  .ec-purpose__card,
  .ec-purpose__icon-wrap,
  .ec-purpose__icon-img {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .ec-purpose__track-wrap {
    display: block !important;
    overflow-x: auto !important;
    padding: 0 16px 14px !important;
    margin: 0 !important;
  }

  .ec-purpose__track {
    display: flex !important;
    width: max-content !important;
    min-width: 100% !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
  }

  .ec-purpose__card {
    display: flex !important;
    flex: 0 0 112px !important;
    width: 112px !important;
  }

  .ec-purpose__icon-wrap {
    width: 104px !important;
    height: 104px !important;
    border-radius: 18px !important;
  }

  .ec-purpose__label {
    max-width: 112px !important;
    white-space: normal !important;
    text-align: center !important;
    font-size: 10px !important;
  }

  .ec-reviews3d__panel {
    min-height: 0;
    max-width: calc(100vw - 24px) !important;
    border-radius: 18px !important;
    padding: 1.5rem 0.85rem 1.75rem !important;
  }

  .ec-reviews3d__viewport {
    height: 108vw !important;
    min-height: 430px !important;
    max-height: 520px !important;
    overflow: visible !important;
  }

  .ec-reviews3d__card {
    width: min(78vw, 320px) !important;
  }

  .ec-reviews3d__quote-card {
    padding: 1.25rem !important;
  }

  .ec-reviews3d__quote {
    font-size: 0.9rem !important;
  }
}
/* ===== FIND YOUR BRACELET (Crystal Calculator CTA) ===== */
.ec-calc-cta {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #faf4f0;
  padding: clamp(48px, 8vw, 100px) clamp(16px, 4vw, 48px);
  text-align: center;
}

.ec-calc-cta::before,
.ec-calc-cta::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.ec-calc-cta::before {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 30px;
  background: rgba(182, 135, 69, 0.10);
  border: 1px solid rgba(182, 135, 69, 0.18);
}

.ec-calc-cta::after {
  width: 320px;
  height: 320px;
  right: -130px;
  bottom: -70px;
  background: rgba(59, 42, 33, 0.05);
  border: 1px solid rgba(59, 42, 33, 0.08);
}

.ec-calc-cta__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.ec-calc-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid #d2b99f;
  background: #fffdf9;
  color: #8f6530;
  font-family: var(--ec-font-body);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
  box-shadow: 0 12px 32px rgba(73, 50, 34, 0.05);
  white-space: normal;
}

.ec-calc-cta__heading {
  width: 100%;
  max-width: 100%;
  font-family: 'Bricolage Grotesque', var(--ec-font-head), sans-serif;
  font-size: clamp(30px, 6.5vw, 62px);
  line-height: 1.1;
  margin: 18px 0 16px;
  letter-spacing: -0.03em;
  color: var(--ec-text);
  overflow-wrap: break-word;
}

.ec-calc-cta__dim {
  color: #a4917f;
}

.ec-calc-cta__text {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 34px;
  color: var(--ec-muted);
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.65;
  overflow-wrap: break-word;
}

.ec-calc-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 17px 34px;
  border-radius: 999px;
  background: var(--ec-text);
  color: #ffffff;
  font-family: 'Bricolage Grotesque', var(--ec-font-body), sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(59, 42, 33, .16);
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
  white-space: normal;
  text-align: center;
}

.ec-calc-cta__btn,
.ec-calc-cta__btn:visited,
.ec-calc-cta__btn:active {
  color: #ffffff !important;
}

.ec-calc-cta__btn:hover {
  transform: translateY(-2px);
  background: var(--ec-accent);
  box-shadow: 0 24px 46px rgba(59, 42, 33, .2);
  color: #ffffff !important;
}

@media (max-width: 620px) {
  .ec-calc-cta {
    padding: 40px 16px;
  }

  .ec-calc-cta__heading {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .ec-calc-cta__btn {
    width: 100%;
    padding: 16px 20px;
  }
}


/* ===== PERFORMANCE: defer below-the-fold rendering ===== */
.ec-products,
.ec-calc-cta,
.ec-feature,
.ec-best-sellers,
.ec-reviews3d,
.ec-faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}
/* END_SECTION:essentials-collection */

/* START_SECTION:header_3 (INDEX:40) */
/* ==============================================
   WRAPPER — holds marquee + header slot together
   ============================================== */
.nh-wrap {
  position: relative;
  width: 100%;
  max-width: 100vw;
  z-index: 99999;
}

/* Header positions itself relative to THIS slot, which sits in normal
   document flow right after the marquee — so top:0 on the header always
   means "right below the marquee," whether the header is absolute
   (transparent mode) or fixed (scrolled state). */
.nh-header-slot {
  position: relative;
  width: 100%;
}

/* ==============================================
   ANNOUNCEMENT MARQUEE
   ============================================== */
.nh-marquee-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: #fff8f2;
  color: #6b213c;
  white-space: nowrap;
  box-sizing: border-box;
  border-top: 1px solid #d9b36c;
  border-bottom: 1px solid #d9b36c;
}

.nh-marquee-bar__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: nh-marquee-scroll 35s linear infinite;
  will-change: transform;
}

.nh-marquee-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 2.5rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b213c;
  white-space: nowrap;
  flex-shrink: 0;
}

.nh-marquee-bar__item::before,
.nh-marquee-bar__item::after {
  content: "✦";
  color: #c79a45;
  font-size: 0.78rem;
  line-height: 1;
}

.nh-marquee-bar__flag {
  display: inline-flex;
  flex-direction: column;
  width: 16px;
  height: 11px;
  border-radius: 1px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}

.nh-marquee-bar__flag span {
  flex: 1;
}

.nh-marquee-bar__flag span:nth-child(1) { background: #FF9933; }
.nh-marquee-bar__flag span:nth-child(2) { background: #FFFFFF; }
.nh-marquee-bar__flag span:nth-child(3) { background: #138808; }

@keyframes nh-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.nh-marquee-bar:hover .nh-marquee-bar__track {
  animation-play-state: paused;
}

@media (max-width: 767px) {
  .nh-marquee-bar__item {
    padding: 0.5rem 1.5rem;
    font-size: 0.68rem;
  }
  .nh-marquee-bar__track {
    animation-duration: 28s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nh-marquee-bar__track {
    animation: none;
    justify-content: center;
    width: 100%;
  }
  .nh-marquee-bar__item:nth-child(n+6) {
    display: none;
  }
}

/* ==============================================
   NAMAH CRYSTALS — Custom Header
   Nav left | Logo centered | Icons right
   ============================================== */

.nh-header {
  position: relative;
  z-index: 1;
  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 ──
   Positioned absolute relative to .nh-header-slot (not the viewport),
   so top:0 here means "right below the marquee" automatically. */
.nh-header--transparent-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* was inheriting z-index:1, which let later sections (rail arrows at z-index:3,
     sticky panels) paint over the bar while it was transparent */
  z-index: 9999;
  background-color: transparent;
  border-bottom-color: transparent;
  transition: background-color 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

.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: fixed to the viewport top. Safe now because the header
   sits inside .nh-header-slot which is already below the marquee in
   normal flow — the marquee itself scrolls away with the page. */
.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);
}

.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;
}

.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;
}

.nh-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.nh-hide-left-nav .nh-nav {
  display: none;
}

.nh-nav__item {
  position: relative;
}

.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);
}

.nh-nav__dropdown {
  /* animated rather than display:none so it can actually ease in/out */
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 210px;
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  z-index: 100000;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 50px rgba(28, 22, 16, 0.16), 0 2px 6px rgba(28, 22, 16, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px) scale(0.97);
  transition: opacity 0.28s cubic-bezier(.22,.61,.36,1),
              transform 0.36s cubic-bezier(.22,1.2,.36,1),
              visibility 0s linear 0.3s;
}

.nh-nav__item:hover .nh-nav__dropdown,
.nh-nav__item.open .nh-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
  transition: opacity 0.24s cubic-bezier(.22,.61,.36,1),
              transform 0.42s cubic-bezier(.22,1.2,.36,1),
              visibility 0s;
}

/* little pointer up to the tab */
.nh-nav__dropdown::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
  background: inherit;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 3px 0 0 0;
}

.nh-nav__dropdown li {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.22,.61,.36,1);
}
.nh-nav__item:hover .nh-nav__dropdown li,
.nh-nav__item.open .nh-nav__dropdown li {
  opacity: 1;
  transform: translateY(0);
}
/* stagger, so the items arrive just after the panel */
.nh-nav__dropdown li:nth-child(1) { transition-delay: .05s; }
.nh-nav__dropdown li:nth-child(2) { transition-delay: .09s; }
.nh-nav__dropdown li:nth-child(3) { transition-delay: .13s; }
.nh-nav__dropdown li:nth-child(4) { transition-delay: .17s; }
.nh-nav__dropdown li:nth-child(5) { transition-delay: .21s; }
.nh-nav__dropdown li:nth-child(6) { transition-delay: .25s; }

.nh-nav__dropdown li a {
  display: block;
  padding: 0.66rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #321E1D;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nh-nav__dropdown li a:hover {
  background: rgba(176, 141, 87, 0.12);
  color: #B08D57;
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .nh-nav__dropdown,
  .nh-nav__dropdown li { transition-duration: .001s; transition-delay: 0s; }
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.nh-right .wishlist .count:empty,
.nh-right .wishlist .count[data-count="0"] {
  display: none;
}

.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;
}

.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;
}

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

/* ── Mobile drawer ───────────────────────────────────────────────────
   Full-height slide-in panel rather than a dropdown strip: the old version
   was a white shelf of 12px uppercase rows that left the hero showing
   underneath and read as an unfinished overlay. */
.nh-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100000;
  visibility: hidden;
  pointer-events: none;
}
.nh-mobile-nav.open { visibility: visible; pointer-events: auto; }
@media (min-width: 1025px) { .nh-mobile-nav { display: none; } }

.nh-mnav__scrim {
  position: absolute; inset: 0;
  background: rgba(22, 18, 14, 0.42);
  opacity: 0;
  transition: opacity .38s cubic-bezier(.22,.61,.36,1);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.nh-mobile-nav.open .nh-mnav__scrim { opacity: 1; }

.nh-mnav__panel {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: min(86vw, 390px);
  background: var(--nh-ground, #F7F2EB);
  color: var(--nh-ink, #1B1B1B);
  display: flex; flex-direction: column;
  padding: 20px 28px calc(26px + env(safe-area-inset-bottom));
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  transform: translateX(-101%);
  transition: transform .44s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 0 70px rgba(0,0,0,.20);
}
.nh-mobile-nav.open .nh-mnav__panel { transform: none; }

.nh-mnav__top {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 44px; margin-bottom: 26px;
}
.nh-mnav__brand {
  font-family: var(--nh-font-head, inherit);
  font-size: 15px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--nh-accent, #B08D57);
}
.nh-mnav__close {
  appearance: none; border: 0; background: none; color: inherit;
  width: 44px; height: 44px; margin-right: -12px;
  display: grid; place-items: center; cursor: pointer;
  border-radius: 50%; transition: background .2s ease;
}
.nh-mnav__close:active { background: rgba(0,0,0,.06); }

/* search reads as a field, not another menu row */
.nh-mnav__search {
  appearance: none; width: 100%; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; margin-bottom: 30px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(27,27,27,.10);
  border-radius: 999px;
  font: inherit; font-size: 14px; color: rgba(27,27,27,.55);
  text-align: left;
  transition: border-color .2s ease, background .2s ease;
}
.nh-mnav__search:active { border-color: var(--nh-accent, #B08D57); background: #fff; }

.nh-mnav__list { list-style: none; margin: 0; padding: 0; flex: 1 0 auto; }
.nh-m-item + .nh-m-item { border-top: 1px solid rgba(27,27,27,.09); }

.nh-mobile-nav .nh-m-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; padding: 19px 0;
  background: none; border: 0; cursor: pointer;
  font-family: var(--nh-font-head, inherit);
  font-size: 25px; line-height: 1.15; letter-spacing: -.012em;
  font-weight: 400; text-transform: none;
  color: var(--nh-ink, #1B1B1B); text-decoration: none;
  text-align: left;
}
.nh-mnav__list .nh-m-ext { display: inline-flex; opacity: .38; }

/* chevron drawn rather than a ▾ glyph, so it aligns and rotates cleanly */
.nh-mobile-nav .nh-m-arrow {
  width: 9px; height: 9px; flex: none; margin-right: 4px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translate(-2px,-2px);
  opacity: .45;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), opacity .2s ease;
}
.nh-mobile-nav .nh-m-item.open .nh-m-arrow {
  transform: rotate(225deg) translate(-2px,-2px);
  opacity: .9;
}

/* one grid child, otherwise 0fr only collapses the first row */
.nh-mobile-nav .nh-m-subwrap {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.22,.61,.36,1);
}
.nh-mobile-nav .nh-m-item.open .nh-m-subwrap { grid-template-rows: 1fr; }
.nh-mobile-nav .nh-m-sub {
  list-style: none; margin: 0; padding: 0;
  overflow: hidden; min-height: 0;
}
.nh-mobile-nav .nh-m-sub li:first-child { padding-top: 2px; }
.nh-mobile-nav .nh-m-sub li:last-child { padding-bottom: 18px; }
.nh-mobile-nav .nh-m-sub li a {
  display: block; padding: 11px 0 11px 2px;
  font-size: 14.5px; letter-spacing: .01em; text-transform: none;
  color: rgba(27,27,27,.62); text-decoration: none;
  border: 0;
}
.nh-mobile-nav .nh-m-sub li a:active { color: var(--nh-accent, #B08D57); }

.nh-mnav__foot { padding-top: 30px; }
.nh-mnav__mini {
  display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 14px;
}
.nh-mnav__mini a {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(27,27,27,.55); text-decoration: none;
}
.nh-mnav__note {
  margin: 0; font-size: 11.5px; line-height: 1.5;
  color: rgba(27,27,27,.38);
}

/* staggered settle, once the panel itself has slid in */
@media (prefers-reduced-motion: no-preference) {
  .nh-mnav__panel > * { opacity: 0; transform: translateY(9px); }
  .nh-mobile-nav.open .nh-mnav__panel > * {
    opacity: 1; transform: none;
    transition: opacity .42s ease, transform .42s cubic-bezier(.22,.61,.36,1);
  }
  .nh-mobile-nav.open .nh-mnav__panel > *:nth-child(1) { transition-delay: .12s; }
  .nh-mobile-nav.open .nh-mnav__panel > *:nth-child(2) { transition-delay: .18s; }
  .nh-mobile-nav.open .nh-mnav__panel > *:nth-child(3) { transition-delay: .24s; }
  .nh-mobile-nav.open .nh-mnav__panel > *:nth-child(4) { transition-delay: .30s; }
}
@media (prefers-reduced-motion: reduce) {
  .nh-mnav__panel, .nh-mnav__scrim { transition: none; }
}
html.nh-mnav-lock { overflow: hidden; }

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

  .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;
  }
}

.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
   ============================================== */
@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;
  }

  /* Widened from a fixed 34px: the left column now carries the menu button and
     the stories launcher, which moves here on phones because the right icon row
     has no room for a fifth item. */
  #nh-{{ section.id }} .nh-left {
    position: relative !important;
    z-index: 5 !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 34px !important;
    max-width: none !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;
  }

  /* search moves into the hamburger on phones - see the menu markup */
  #nh-{{ section.id }} .nh-right > .search-toggle,
  #nh-{{ section.id }} .nh-right > .nh-search-toggle {
    display: none !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;
  }

  #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;
  }

  #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;
  }
}

.nh-mobile-search-screen {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (min-width: 768px) {
  .nh-mobile-search-screen,
  .nh-mobile-search-screen.open {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 767px) {
  body.namah-mobile-search-active {
    overflow: hidden !important;
    touch-action: none !important;
  }

  .nh-mobile-search-screen {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    color: #111111 !important;
    z-index: 2147483000 !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
    font-family: 'Gibs', 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif !important;
  }

  .nh-mobile-search-screen.open {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .nh-mobile-search-head {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
    width: 100% !important;
    padding: calc(env(safe-area-inset-top, 0px) + 18px) 18px 16px !important;
    background: #ffffff !important;
    border-bottom: 1px solid #eeeeee !important;
    box-sizing: border-box !important;
  }

  .nh-mobile-search-back {
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #111111 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nh-mobile-search-back svg {
    width: 30px !important;
    height: 30px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  .nh-mobile-search-form {
    width: 100% !important;
    height: 58px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 54px !important;
    align-items: center !important;
    border: 2px solid #111111 !important;
    border-radius: 7px !important;
    background: #ffffff !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .nh-mobile-search-input {
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    padding: 0 0 0 20px !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #111111 !important;
    font-size: 26px !important;
    line-height: 1 !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
  }

  .nh-mobile-search-input::placeholder {
    color: #9b9b9b !important;
    opacity: 1 !important;
  }

  .nh-mobile-search-submit {
    width: 54px !important;
    height: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #111111 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nh-mobile-search-submit svg {
    width: 31px !important;
    height: 31px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  .nh-mobile-search-body {
    width: 100% !important;
    padding: 28px 18px 48px !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
  }

  .nh-mobile-search-title {
    margin: 0 0 18px !important;
    color: #111111 !important;
    font-size: 28px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    font-family: inherit !important;
  }

  .nh-mobile-search-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 11px 12px !important;
    align-items: center !important;
  }

  .nh-mobile-search-tags a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    padding: 0 17px !important;
    border-radius: 6px !important;
    background: #000000 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 20px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    box-sizing: border-box !important;
  }

  body.namah-mobile-search-active .content-search-toggle,
  body.namah-mobile-search-active .search-toggle-content,
  body.namah-mobile-search-active .header-search-toggle,
  body.namah-mobile-search-active .search-overlay,
  body.namah-mobile-search-active .search-popup,
  body.namah-mobile-search-active .site-search,
  body.namah-mobile-search-active .header-search,
  body.namah-mobile-search-active .predictive-search,
  body.namah-mobile-search-active [class*="search-content"],
  body.namah-mobile-search-active [class*="search-drawer"],
  body.namah-mobile-search-active [class*="search-popup"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 390px) {
  .nh-mobile-search-head {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 10px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .nh-mobile-search-back {
    width: 38px !important;
    height: 38px !important;
  }

  .nh-mobile-search-form {
    height: 54px !important;
    grid-template-columns: minmax(0, 1fr) 50px !important;
  }

  .nh-mobile-search-input {
    font-size: 23px !important;
    padding-left: 16px !important;
  }

  .nh-mobile-search-submit {
    width: 50px !important;
  }

  .nh-mobile-search-submit svg {
    width: 28px !important;
    height: 28px !important;
  }

  .nh-mobile-search-body {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .nh-mobile-search-title {
    font-size: 26px !important;
  }

  .nh-mobile-search-tags a {
    min-height: 43px !important;
    padding: 0 14px !important;
    font-size: 18px !important;
  }
}

@media (max-width: 767px) {
  .nh-mobile-search-tags a[href*="collections/luxe"],
  .nh-mobile-search-tags a[href*="collections/trending-products"] {
    display: none !important;
  }
}
/* =========================================================
   FINAL MOBILE-ONLY SEARCH FIX
   Hides homepage content behind mobile search
   Does NOT affect desktop
   ========================================================= */

@media screen and (max-width: 767px) {

  body.namah-mobile-search-active #MainContent,
  body.namah-mobile-search-active main {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  body.namah-mobile-search-active .nh-mobile-search-screen {
    position: fixed !important;
    inset: 0 !important;

    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;

    background: #ffffff !important;

    visibility: visible !important;
    opacity: 1 !important;

    z-index: 2147483647 !important;

    pointer-events: auto !important;
  }

  body.namah-mobile-search-active .nh-mobile-search-screen.open {
    display: flex !important;
  }
}
/* END_SECTION:header_3 */

/* START_SECTION:luxe-collection (INDEX:44) */
: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; }

/* Initial-render optimization: below-fold sections are skipped until needed. */
.lx-editorial, .lx-vids, .lx-purpose, .lx-products, .lx-calc-cta,
.lx-feature, .lx-choose, .lx-reviews3d, .lx-faq {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.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; } }

/* ===== FIND YOUR BRACELET (Crystal Calculator CTA) ===== */
.lx-calc-cta {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: clamp(48px, 8vw, 100px) clamp(16px, 4vw, 48px);
  text-align: center;
}

.lx-calc-cta::before,
.lx-calc-cta::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.lx-calc-cta::before {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 30px;
  background: rgba(182, 135, 69, 0.06);
  border: 1px solid rgba(182, 135, 69, 0.12);
}

.lx-calc-cta::after {
  width: 320px;
  height: 320px;
  right: -130px;
  bottom: -70px;
  background: rgba(59, 42, 33, 0.03);
  border: 1px solid rgba(59, 42, 33, 0.06);
}

.lx-calc-cta__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.lx-calc-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid #d2b99f;
  background: #fffdf9;
  color: #8f6530;
  font-family: var(--lx-font-body);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
  box-shadow: 0 12px 32px rgba(73, 50, 34, 0.05);
  white-space: normal;
}

.lx-calc-cta__heading {
  width: 100%;
  max-width: 100%;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(30px, 6.5vw, 62px);
  line-height: 1.1;
  margin: 18px 0 16px;
  letter-spacing: -0.03em;
  color: var(--lx-text);
  overflow-wrap: break-word;
}

.lx-calc-cta__dim {
  color: #a4917f;
}

.lx-calc-cta__text {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 34px;
  color: var(--lx-muted);
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.65;
  overflow-wrap: break-word;
}

.lx-calc-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 17px 34px;
  border-radius: 999px;
  background: var(--lx-text);
  color: #ffffff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(59, 42, 33, .16);
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
  white-space: normal;
  text-align: center;
}

.lx-calc-cta__btn,
.lx-calc-cta__btn:visited,
.lx-calc-cta__btn:active {
  color: #ffffff !important;
}

.lx-calc-cta__btn:hover {
  transform: translateY(-2px);
  background: var(--lx-accent);
  box-shadow: 0 24px 46px rgba(59, 42, 33, .2);
  color: #ffffff !important;
}

@media (max-width: 620px) {
  .lx-calc-cta {
    padding: 40px 16px;
  }

  .lx-calc-cta__heading {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .lx-calc-cta__btn {
    width: 100%;
    padding: 16px 20px;
  }
}

/* ===== 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);
}
/* 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; }
.lx-story__tag-ico {
  display: none !important;
}

/* 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: View All link ===== */
.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);
}
@media (prefers-reduced-motion: reduce) { .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;
  }
}

/* ==========================================================
   LUXE — EXPLORE BY INTENTION
   Matches the Essentials section on desktop, tablet and mobile.
   Paste at the END of the Luxe {% stylesheet %} block.
   ========================================================== */

.lx-purpose {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: clamp(40px, 4vw, 64px) 0 24px !important;
  overflow: hidden !important;
  background: var(--lx-bg, #faf4f0) !important;
}

.lx-purpose .lx-container {
  width: min(100%, 1480px) !important;
  max-width: 100% !important;
  padding-inline: clamp(16px, 3vw, 56px) !important;
}

.lx-purpose .lx-section-title {
  margin: 0 0 clamp(28px, 3vw, 42px) !important;
  color: var(--lx-text, #321e1d) !important;
  font-size: clamp(1.5rem, 1.25rem + .7vw, 2.25rem) !important;
  line-height: 1.15 !important;
  text-align: center !important;
}

.lx-purpose__track-wrap {
  width: 100% !important;
  max-width: 100% !important;
  padding: 12px 0 18px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.lx-purpose__track-wrap::-webkit-scrollbar {
  display: none;
}

.lx-purpose__track {
  display: flex !important;
  align-items: flex-start !important;
  gap: clamp(12px, 1.4vw, 22px) !important;
  width: max-content !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 10px 18px !important;
}

.lx-purpose__card {
  display: flex !important;
  flex: 0 0 clamp(110px, 10vw, 140px) !important;
  flex-direction: column !important;
  align-items: center !important;
  width: clamp(110px, 10vw, 140px) !important;
  min-width: 0 !important;
  gap: 10px !important;
  padding: 0 !important;
  color: var(--lx-text, #321e1d) !important;
  text-decoration: none !important;
}

.lx-purpose__label {
  order: 1;
  width: max-content !important;
  max-width: none !important;
  min-height: 1.5em !important;
  margin-inline: auto !important;
  color: var(--lx-text, #321e1d) !important;
  font-size: clamp(9px, .7vw, 11px) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  letter-spacing: .045em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.lx-purpose__icon-wrap {
  order: 2;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: clamp(96px, 8.4vw, 118px) !important;
  height: clamp(96px, 8.4vw, 118px) !important;
  overflow: hidden !important;
  border-radius: clamp(20px, 2vw, 26px) !important;
  background: var(--lx-surface, #fff) !important;
  box-shadow: 0 8px 24px rgba(50, 30, 29, .10) !important;
  transition: box-shadow .25s ease, transform .25s ease !important;
}

.lx-purpose__icon-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.lx-purpose__card:hover {
  transform: translateY(-5px);
}

.lx-purpose__card:hover .lx-purpose__icon-wrap {
  transform: scale(1.03);
  box-shadow: 0 14px 34px rgba(176, 141, 87, .22) !important;
}

/* Desktop: show all intention cards centered, like Essentials. */
@media screen and (min-width: 900px) {
  .lx-purpose__track-wrap {
    overflow: visible !important;
  }

  .lx-purpose__track {
    width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}

/* Tablet: swipe naturally if all cards cannot fit. */
@media screen and (min-width: 768px) and (max-width: 899px) {
  .lx-purpose .lx-container {
    padding-inline: 24px !important;
  }

  .lx-purpose__track {
    margin: 0 !important;
  }
}

/* Mobile: exactly three complete cards, no half fourth card. */
@media screen and (max-width: 767px) {
  .lx-purpose {
    padding: 42px 0 28px !important;
  }

  .lx-purpose .lx-container {
    padding-inline: 16px !important;
  }

  .lx-purpose .lx-section-title {
    margin-bottom: 24px !important;
  }

  .lx-purpose__track-wrap {
    width: calc(100% + 32px) !important;
    max-width: none !important;
    margin-inline: -16px !important;
    padding: 0 16px 18px !important;
    scroll-padding-left: 16px;
    scroll-snap-type: x mandatory;
  }

  .lx-purpose__track {
    width: max-content !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 12px !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
  }

  .lx-purpose__card {
    /* 100vw − 32px outer padding − two 12px gaps, divided by 3. */
    flex: 0 0 calc((100vw - 56px) / 3) !important;
    width: calc((100vw - 56px) / 3) !important;
    gap: 9px !important;
    scroll-snap-align: start;
  }

  .lx-purpose__label {
    font-size: clamp(8px, 2.35vw, 10px) !important;
    line-height: 1.15 !important;
    letter-spacing: .035em !important;
    white-space: nowrap !important;
  }

  .lx-purpose__icon-wrap {
    width: min(76px, calc((100vw - 80px) / 3)) !important;
    height: min(76px, calc((100vw - 80px) / 3)) !important;
    border-radius: clamp(16px, 5vw, 22px) !important;
  }
}

@media screen and (max-width: 359px) {
  .lx-purpose .lx-container {
    padding-inline: 12px !important;
  }

  .lx-purpose__track-wrap {
    width: calc(100% + 24px) !important;
    margin-inline: -12px !important;
    padding-inline: 12px !important;
    scroll-padding-left: 12px;
  }

  .lx-purpose__card {
    /* 100vw − 24px outer padding − two 10px gaps, divided by 3. */
    flex-basis: calc((100vw - 44px) / 3) !important;
    width: calc((100vw - 44px) / 3) !important;
  }

  .lx-purpose__track {
    gap: 10px !important;
  }

  .lx-purpose__label {
    font-size: 7.5px !important;
    letter-spacing: .02em !important;
  }
}


/* =========================================================
   LUXE VIDEO HERO — FULL VIEWPORT HEIGHT (desktop + tablet)
   The base rule sizes the hero from the `full_video_height`
   px setting (capped at 100vh), so on tall screens it stopped
   short at 800px. Essentials already had this override; Luxe
   never got it. Mobile (<=767px) is handled by the existing
   MOBILE VIDEO HERO HEIGHT FIX block above, which also does
   dvh, so this is scoped to 768px and up to avoid fighting it.
   ========================================================= */
@media screen and (min-width: 768px) {
  .lx-video-hero {
    height: 100vh !important;
    height: 100svh !important;
    height: 100dvh !important;
    min-height: 640px !important;
    max-height: none !important;
  }
}
/* END_SECTION:luxe-collection */

/* START_SECTION:nh-about (INDEX:57) */
.nhab{ padding-block:0 !important; }
.nhab__track{ height:calc(var(--nhab-len,200) * 1vh); position:relative; }
/* desktop damps the wheel via nh-smooth-scroll; touch has no damping, so a phone
   needs a longer track to hit a comparable words-per-pixel pace */
@media (max-width:749px){
  .nhab__track{ height:calc(var(--nhab-len-m,320) * 1vh); }
}
.nhab__pin{
  position:sticky; top:0; height:100vh; height:100svh;
  display:grid; place-items:center;
}
.nhab__inner{ width:100%; text-align:center; }
.nhab__eyebrow{
  margin:0 0 clamp(1rem,2.5vw,1.8rem);
  display:inline-flex; align-items:center; gap:.55em;
  font-family:var(--nh-font-body); font-size:var(--nh-fs-label);
  color:var(--nh-ink); letter-spacing:.02em;
}
.nhab__dot{
  width:6px; height:6px; border-radius:50%; background:var(--nh-ink); display:inline-block;
}
.nhab__text{
  margin:0 auto; max-width:22ch;
  font-family:var(--nh-font-head); font-weight:600;
  font-size:clamp(1.7rem,4.4vw,3.6rem); line-height:1.14; letter-spacing:-0.01em;
  color:var(--nh-ink);
  /* max-width in ch keeps the line count stable so the reveal reads evenly */
  max-width:min(22ch, 100%);
}
.nhab__crystal{
  position:absolute; left:50%; top:50%;
  width:clamp(180px, 24vw, 360px);
  height:auto;
  z-index:3;                 /* deliberately over the words */
  pointer-events:none;
  will-change:transform;
  transform:translate(-50%,-50%) translateY(120vh);   /* parked off-screen */
  filter:drop-shadow(0 18px 40px rgba(40,26,60,.18));
}
@media (max-width:749px){
  .nhab__crystal{ width:clamp(150px, 46vw, 260px); }
}
@media (prefers-reduced-motion: reduce){
  .nhab__crystal{ display:none; }
}
.nhab__w{ opacity:1; transition:opacity .18s linear; }
/* only dim the words once JS is driving the reveal, so a no-JS page stays readable */
.nhab.is-live .nhab__w{ opacity:var(--o,.16); }
@media (prefers-reduced-motion: reduce){
  .nhab.is-live .nhab__w{ opacity:1; }
  .nhab__track{ height:auto; }
  .nhab__pin{ position:static; height:auto; padding-block:var(--nh-sec-y); }
}
/* END_SECTION:nh-about */

/* START_SECTION:nh-banner-rail (INDEX:58) */
.nhb__viewport{ position:relative; }
.nhb__track{
  /* no inline padding: the banner fills the panel edge to edge, and the
     panel's own overflow:hidden rounds its corners for us */
  list-style:none; margin:0; padding:0;
  display:grid; grid-auto-flow:column; grid-auto-columns:100%;
  gap:var(--nh-gap); overflow-x:auto; overscroll-behavior-x:contain;
  scroll-snap-type:x mandatory; scroll-behavior:smooth; scrollbar-width:none;
}
.nhb__track::-webkit-scrollbar{ display:none; }
.nhb__item{ scroll-snap-align:center; min-width:0; }
.nhb__card{
  position:relative; display:block; overflow:hidden; text-decoration:none;
  border-radius:var(--nh-panel-r); background:var(--nh-line);
  height:calc(var(--nhb-vh,80) * 1vh);
}
.nhb__img{ width:100%; height:100%; object-fit:cover; display:block;
  transition:transform var(--nh-slow) var(--nh-ease); }
.nhb__card:hover .nhb__img{ transform:scale(1.03); }
.nhb__img--empty{ background:linear-gradient(140deg,#e8e1d6,#cfc4b4); }
.nhb__shade{ position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 45%,rgba(0,0,0,.55) 100%); }
.nhb__content{
  position:absolute; inset:auto 0 0; padding:clamp(1rem,2.5vw,2rem);
  display:flex; flex-direction:column; gap:.4rem; color:#fff; text-align:left;
}
.nhb__eyebrow{ font-family:var(--nh-font-body); font-size:var(--nh-fs-eyebrow);
  letter-spacing:var(--nh-track-wide); text-transform:uppercase; opacity:.9; }
.nhb__title{ font-family:var(--nh-font-head); font-weight:700; line-height:1.05;
  font-size:clamp(1.4rem,3vw,2.4rem); }
.nhb__cta{ margin-top:.35rem; font-family:var(--nh-font-body);
  font-size:var(--nh-fs-label); font-weight:600; letter-spacing:var(--nh-track-wide);
  text-transform:uppercase; }
.nhb__dots{
  position:absolute; left:0; right:0; bottom:clamp(1rem,2.5vh,1.75rem); z-index:3;
  display:flex; justify-content:center; gap:9px;
}
.nhb__dot{
  width:7px; height:7px; padding:0; border:0; cursor:pointer; border-radius:999px;
  background:rgba(255,255,255,.5); transition:width var(--nh-fast) var(--nh-ease),background var(--nh-fast);
}
.nhb__dot.is-active{ width:26px; background:#fff; }
@media (max-width:749px){
  .nhb__track{ grid-auto-columns:100%; }
}
/* END_SECTION:nh-banner-rail */

/* START_SECTION:nh-collection-banner (INDEX:59) */
.nhcb{
  background:var(--nh-ground, #F7F2EB);
  padding-block:clamp(.75rem,1.6vw,1.25rem);
}
.nhcb__inner{
  position:relative;
  width:var(--nhcb-w,95vw);
  max-width:100%;
  height:var(--nhcb-h,200px);
  margin-inline:auto;
  border-radius:var(--nh-panel-r, 18px);
  overflow:hidden;
  background:var(--nh-line,#E4DED4);
}
.nhcb__img{ width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.nhcb__img--empty{ background:linear-gradient(120deg,#EDE7DD,#D9CFBF); }
.nhcb__shade{
  position:absolute; inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.45) 0%,rgba(0,0,0,.12) 55%,rgba(0,0,0,0) 100%);
  opacity:var(--nhcb-shade,1);
}
.nhcb__content{
  position:absolute; inset:0; display:flex; flex-direction:column;
  justify-content:center; gap:.35rem;
  padding-inline:clamp(1.25rem,4vw,3rem);
  color:var(--nhcb-title,#fff);
}
.nhcb__title{
  margin:0; font-family:var(--nh-font-head); font-weight:700;
  font-size:clamp(1.5rem,3.4vw,2.6rem); line-height:1.05; letter-spacing:.01em;
  /* the theme sets a colour on every h1-h6; an inherited colour always loses to
     a direct rule, so the title has to claim it explicitly */
  color:var(--nhcb-title,#fff);
}
.nhcb__count{
  margin:0; font-family:var(--nh-font-body); font-size:var(--nh-fs-eyebrow,.6875rem);
  letter-spacing:.14em; text-transform:uppercase; opacity:.85; color:var(--nhcb-title,#fff);
}
@media (max-width:749px){
  .nhcb__inner{ height:clamp(140px, var(--nhcb-h,200px), 200px); }
}
/* END_SECTION:nh-collection-banner */

/* START_SECTION:nh-collection-cards (INDEX:60) */
.nhcc__track{
  list-style:none; margin:0; padding:0 var(--nh-pad);
  display:grid; grid-auto-flow:column;
  grid-auto-columns:calc((100% - (2 * var(--nh-pad)) - (2 * var(--nh-gap))) / 3);
  gap:var(--nh-gap);
  overflow-x:auto; overscroll-behavior-x:contain;
  scrollbar-width:none; cursor:grab;
}
.nhcc__track::-webkit-scrollbar{ display:none; }
.nhcc__track.is-dragging{ cursor:grabbing; scroll-behavior:auto; }
.nhcc__track.is-dragging a{ pointer-events:none; }
.nhcc__item{ min-width:0; }
.nhcc__card{
  position:relative; display:block; overflow:hidden; text-decoration:none;
  aspect-ratio:var(--nhcc-ratio,3/4); border-radius:var(--nh-r);
  background:var(--nh-line);
}
.nhcc__img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform var(--nh-slow) var(--nh-ease);
}
.nhcc__card:hover .nhcc__img{ transform:scale(1.04); }
.nhcc__img--empty{ background:linear-gradient(150deg,#e6ded2,#c9bda9); }
.nhcc__shade{
  position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg,rgba(0,0,0,.28) 0%,rgba(0,0,0,0) 42%,rgba(0,0,0,.30) 100%);
}
/* name set vertically down the left edge */
.nhcc__title{
  position:absolute; top:clamp(.9rem,1.6vw,1.5rem); left:clamp(.6rem,1.2vw,1.1rem);
  writing-mode:vertical-rl; transform:rotate(180deg); transform-origin:center;
  font-family:var(--nh-font-head); font-weight:600; color:#fff;
  font-size:clamp(1.6rem,3.2vw,2.9rem); line-height:1; letter-spacing:.01em;
  text-shadow:0 2px 18px rgba(0,0,0,.28); pointer-events:none;
}
.nhcc__btn{
  position:absolute; left:50%; bottom:clamp(.9rem,2vw,1.6rem); transform:translateX(-50%);
  display:inline-flex; align-items:center; justify-content:center; text-align:center;
  min-width:min(78%,15rem); padding:.85em 1.4em;
  background:var(--nh-surface); color:var(--nh-ink);
  font-family:var(--nh-font-body); font-size:var(--nh-fs-label); font-weight:500;
  border-radius:var(--nh-r-pill); white-space:nowrap;
  transition:transform var(--nh-fast) var(--nh-ease);
}
.nhcc__card:hover .nhcc__btn{ transform:translateX(-50%) translateY(-2px); }
@media (max-width:899px){
  .nhcc__track{ grid-auto-columns:calc((100% - (2 * var(--nh-pad)) - var(--nh-gap)) / 2); }
}
@media (max-width:749px){
  .nhcc__track{ grid-auto-columns:78vw; }
}
/* END_SECTION:nh-collection-cards */

/* START_SECTION:nh-contact (INDEX:61) */
.nhct{ background:var(--nh-ground,#F7F2EB); color:var(--nh-ink,#1B1B1B);
  padding-block:clamp(38px,6vw,86px); }
.nhct__wrap{ max-width:1180px; margin:0 auto; padding-inline:clamp(1.25rem,4vw,2.5rem);
  display:grid; grid-template-columns:1fr; gap:clamp(30px,5vw,72px); }
@media(min-width:900px){ .nhct__wrap{ grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); } }

.nhct__eyebrow{ margin:0 0 12px; font-size:10.5px; letter-spacing:.26em;
  text-transform:uppercase; color:var(--nh-accent,#B08D57); }
.nhct__title{ margin:0 0 16px; font-family:var(--nh-font-head,inherit); font-weight:400;
  font-size:clamp(28px,4vw,44px); line-height:1.08; letter-spacing:-.015em; }
.nhct__blurb{ margin:0 0 30px; font-size:15.5px; line-height:1.7; opacity:.72; max-width:44ch; }

.nhct__meta{ margin:0; }
.nhct__meta > div{ padding:14px 0; border-top:1px solid rgba(27,27,27,.10); }
.nhct__meta dt{ font-size:10.5px; letter-spacing:.16em; text-transform:uppercase; opacity:.62; margin-bottom:5px; }
.nhct__meta dd{ margin:0; font-size:14.5px; line-height:1.6; }
.nhct__meta a{ color:inherit; text-decoration:underline; text-underline-offset:3px;
  text-decoration-thickness:1px; text-decoration-color:rgba(27,27,27,.25); }
.nhct__meta a:hover,.nhct__meta a:focus{ text-decoration-color:currentColor; }

.nhct__card{ background:var(--nh-surface,#fff); border:1px solid rgba(27,27,27,.09);
  border-radius:var(--nh-r-card,14px); padding:clamp(22px,3vw,38px); }
.nhct__row{ margin-bottom:20px; }
.nhct__label{ display:block; margin-bottom:7px; font-size:12px; letter-spacing:.1em;
  text-transform:uppercase; opacity:.7; }
.nhct__req{ color:var(--nh-accent,#B08D57); }
.nhct__opt{ text-transform:none; letter-spacing:0; opacity:.55; font-size:11.5px; }
.nhct__input{ width:100%; box-sizing:border-box; font:inherit; font-size:15px;
  color:inherit; background:var(--nh-ground,#F7F2EB);
  border:1px solid rgba(27,27,27,.14); border-radius:10px;
  padding:13px 15px; min-height:48px;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.nhct__textarea{ resize:vertical; min-height:132px; line-height:1.6; }
.nhct__input:hover{ border-color:rgba(27,27,27,.26); }
.nhct__input:focus{ outline:none; background:var(--nh-surface,#fff);
  border-color:var(--nh-accent,#B08D57); box-shadow:0 0 0 3px rgba(176,141,87,.18); }
.nhct__input[aria-invalid="true"]{ border-color:#B4442F; box-shadow:0 0 0 3px rgba(180,68,47,.12); }
.nhct__hint{ margin:6px 0 0; font-size:12px; opacity:.68; }
.nhct__err{ margin:6px 0 0; font-size:12.5px; color:#9B3A26; }
.nhct__required-note{ margin:0 0 20px; font-size:12px; opacity:.68; }
.nhct__required-note span{ color:var(--nh-accent,#B08D57); }

.nhct__submit{ appearance:none; cursor:pointer; font:inherit;
  font-size:12px; letter-spacing:.18em; text-transform:uppercase;
  background:var(--nh-ink,#1B1B1B); color:var(--nh-ground,#F7F2EB);
  border:1px solid var(--nh-ink,#1B1B1B); border-radius:999px;
  padding:16px 34px; min-height:52px;
  transition:background .25s ease,color .25s ease; }
.nhct__submit:hover,.nhct__submit:focus{ background:transparent; color:var(--nh-ink,#1B1B1B); }
.nhct__submit[disabled]{ opacity:.55; cursor:progress; }

.nhct__note{ margin:0 0 22px; padding:15px 17px; border-radius:10px; font-size:14px; line-height:1.6; }
.nhct__note p{ margin:0; }
.nhct__note--ok{ background:rgba(40,160,92,.09); border:1px solid rgba(40,160,92,.30); }
.nhct__note--bad{ background:rgba(180,68,47,.07); border:1px solid rgba(180,68,47,.28); }
.nhct__notetitle{ font-weight:500; margin-bottom:6px !important; }
.nhct__note ul{ margin:6px 0 0; padding-left:18px; }
.nhct__note a{ color:#9B3A26; }

/* muted text sits at >=.62 opacity, not the .45-.5 that reads nicer but lands
   under 4.5:1 against these light grounds */

/* a focus ring you can actually see, on every interactive thing here */
.nhct a:focus-visible,.nhct button:focus-visible,.nhct__note:focus-visible{
  outline:2px solid var(--nh-accent,#B08D57); outline-offset:3px; border-radius:4px; }

@media (prefers-reduced-motion: reduce){
  .nhct__input,.nhct__submit{ transition:none; }
}
/* END_SECTION:nh-contact */

/* START_SECTION:nh-globe (INDEX:62) */
/* Centred column: copy on top, globe centred beneath and deliberately clipped
   by the panel so roughly three quarters of the sphere shows. */
.nhg{ padding-bottom:0 !important; }
.nhg__inner{ display:block; text-align:center; }
.nhg__copy{ margin-inline:auto; max-width:62ch; }
.nhg__eyebrow{
  margin:0 0 .7rem; font-family:var(--nh-font-body); font-size:var(--nh-fs-eyebrow);
  letter-spacing:var(--nh-track-wide); text-transform:uppercase; color:var(--nh-accent);
}
.nhg__title{
  margin:0 0 .9rem; font-family:var(--nh-font-head); color:var(--nh-ink);
  font-weight:700; line-height:1.05; font-size:clamp(1.8rem,4vw,3.2rem);
}
.nhg__body{
  margin:0 auto; font-family:var(--nh-font-body); color:var(--nh-muted);
  font-size:1rem; line-height:1.65; max-width:52ch;
}
.nhg__stats{
  list-style:none; margin:1.6rem 0 0; padding:0;
  display:flex; flex-wrap:wrap; gap:2.5rem; justify-content:center;
}
.nhg__statN{
  display:block; font-family:var(--nh-font-head); font-weight:700;
  font-size:clamp(1.4rem,2.6vw,2rem); color:var(--nh-ink); line-height:1;
}
.nhg__statL{
  display:block; margin-top:.3rem; font-family:var(--nh-font-body);
  font-size:var(--nh-fs-eyebrow); letter-spacing:var(--nh-track-wide);
  text-transform:uppercase; color:var(--nh-muted);
}
.nhg__cta{ margin-top:1.8rem; }
/* The clip box is 3/4 as tall as the square globe inside it, so exactly the
   bottom quarter is cut off no matter how wide the panel gets. A negative
   margin can't do this: percentage margins resolve against the container
   WIDTH, which over-clipped as the panel grew. */
.nhg__clip{
  width:min(680px, 90%); margin:clamp(1.5rem,3vw,2.5rem) auto 0;
  aspect-ratio:1 / 0.75; overflow:hidden;
}
.nhg__stage{ position:relative; aspect-ratio:1/1; width:100%; }
.nhg__canvas{ width:100%; height:100%; display:block; cursor:grab; touch-action:pan-y; }
.nhg__canvas:active{ cursor:grabbing; }

@media (max-width:899px){
  .nhg__clip{ width:min(88vw,460px); }
}
/* END_SECTION:nh-globe */

/* START_SECTION:nh-hero (INDEX:63) */
.nhh{
  position:relative; width:100%; overflow:hidden; background:#000;
  height:100vh; height:100svh;
}
@supports (height:100dvh){ .nhh{ height:100dvh; } }
.nhh__track,.nhh__slide{ position:absolute; inset:0; }
.nhh__slide{ opacity:0; transition:opacity .9s var(--nh-ease); pointer-events:none; }
.nhh__slide.is-active{ opacity:1; pointer-events:auto; }
.nhh__media{ position:absolute; inset:0; overflow:hidden; }
.nhh__video,.nhh__img{
  width:100%; height:100%; object-fit:cover; object-position:center; display:block;
}
.nhh__img--empty{ background:linear-gradient(160deg,#2a2622,#0f0d0c); }
.nhh__shade{
  position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg,rgba(0,0,0,calc(var(--o)*.55)) 0%,rgba(0,0,0,0) 38%,rgba(0,0,0,calc(var(--o)*.9)) 100%);
}
.nhh__content{
  position:absolute; inset:auto 0 clamp(3.5rem,9vh,7rem); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:.9rem;
  padding-inline:var(--nh-pad); text-align:center; color:#fff;
}
.nhh__content--left{ align-items:flex-start; text-align:left; }
.nhh__content--center-mid{ inset:0; justify-content:center; }
.nhh__eyebrow{
  margin:0; font-family:var(--nh-font-body); font-size:var(--nh-fs-eyebrow);
  letter-spacing:var(--nh-track-wide); text-transform:uppercase; opacity:.85;
}
.nhh__title{
  margin:0; font-family:var(--nh-font-head); font-weight:700;
  font-size:var(--nh-fs-display); line-height:.98; letter-spacing:.01em;
  text-shadow:0 2px 30px rgba(0,0,0,.35);
}
.nhh__cta{
  margin-top:.35rem; display:inline-flex; align-items:center;
  font-family:var(--nh-font-body); font-size:var(--nh-fs-label); font-weight:600;
  letter-spacing:var(--nh-track-wide); text-transform:uppercase;
  color:#fff; text-decoration:none; padding-bottom:.3rem;
  border-bottom:1px solid rgba(255,255,255,.7);
  transition:border-color var(--nh-fast) var(--nh-ease), opacity var(--nh-fast);
}
.nhh__cta:hover{ color:#fff; border-bottom-color:#fff; opacity:.85; }
.nhh__dots{
  position:absolute; left:0; right:0; bottom:clamp(1.1rem,3vh,2rem); z-index:3;
  display:flex; justify-content:center; gap:9px;
}
.nhh__dot{
  width:7px; height:7px; padding:0; border:0; cursor:pointer; border-radius:999px;
  background:rgba(255,255,255,.45); transition:width var(--nh-fast) var(--nh-ease),background var(--nh-fast);
}
.nhh__dot.is-active{ width:26px; background:#fff; }
.nhh__cue{
  position:absolute; left:50%; bottom:clamp(2.4rem,5vh,3.2rem); z-index:3;
  width:1px; height:38px; background:linear-gradient(180deg,rgba(255,255,255,0),rgba(255,255,255,.9));
  animation:nhhCue 2.4s var(--nh-ease) infinite;
}
@keyframes nhhCue{ 0%,100%{ transform:translateY(0); opacity:.25 } 50%{ transform:translateY(9px); opacity:1 } }
@media (prefers-reduced-motion: reduce){ .nhh__cue{ animation:none } }
/* END_SECTION:nh-hero */

/* START_SECTION:nh-product-rail (INDEX:64) */
.nhr__viewport{ position:relative; }
.nhr__track{
  list-style:none; margin:0; padding:0 var(--nh-pad);
  display:grid; grid-auto-flow:column;
  grid-auto-columns:calc((100% - (2 * var(--nh-pad)) - (3 * var(--nh-gap))) / 4);
  gap:var(--nh-gap);
  overflow-x:auto; overscroll-behavior-x:contain;
  scroll-snap-type:x mandatory; scroll-behavior:smooth;
  /* without this the snap lands on the item's edge, so the first card sat
     flush against the panel and read as cut off */
  scroll-padding-inline:var(--nh-pad);
  scrollbar-width:none;
}
.nhr__track::-webkit-scrollbar{ display:none; }
.nhr__item{ scroll-snap-align:start; min-width:0; }
.nhr__card{
  position:relative; display:grid; place-items:center;
  aspect-ratio:var(--nhr-ratio,4/5); overflow:hidden;
  border-radius:var(--nh-r); background:var(--nh-surface); text-decoration:none;
}
/* The product shots are square on white, so `cover` in a 4:5 card cropped a
   slice off each side and blew the bracelet up. `contain` inside a centred
   grid shows the whole piece, and --nhr-zoom leaves breathing room around it
   rather than letting it touch the card edges. */
.nhr__img{
  width:var(--nhr-zoom,88%); height:var(--nhr-zoom,88%);
  object-fit:var(--nhr-fit,contain); display:block;
  transition:transform var(--nh-slow) var(--nh-ease);
}
.nhr__card:hover .nhr__img{ transform:scale(1.04); }
.nhr__img--empty{ background:var(--nh-line); }
.nhr__meta{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:.75rem; padding:.55rem .1rem 0;
}
.nhr__txt{ min-width:0; }
.nhr__name{
  display:block; font-family:var(--nh-font-body); font-size:var(--nh-fs-label);
  color:var(--nh-ink); text-decoration:none; line-height:1.3;
}
.nhr__name:hover{ color:var(--nh-accent); }
.nhr__price{
  margin:.25rem 0 0; font-family:var(--nh-font-body);
  font-size:var(--nh-fs-label); color:var(--nh-muted);
}
.nhr__addform{ margin:0; flex:none; }
.nhr__add{
  flex:none; display:grid; place-items:center; cursor:pointer;
  width:26px; height:26px; padding:0; border-radius:50%;
  background:transparent; border:1px solid var(--nh-line); color:var(--nh-ink);
  transition:background var(--nh-fast) var(--nh-ease), border-color var(--nh-fast) var(--nh-ease);
}
.nhr__add:hover{ background:var(--nh-surface); border-color:var(--nh-ink); }
.nhr__add:focus-visible{ outline:2px solid var(--nh-accent); outline-offset:2px; }
/* plus drawn from two centred bars so it can never sit off-centre */
.nhr__plus{ position:relative; display:block; width:100%; height:100%; }
.nhr__plus::before,.nhr__plus::after{
  content:""; position:absolute; top:50%; left:50%; background:currentColor;
}
.nhr__plus::before{ width:10px; height:1px; transform:translate(-50%,-50%); }
.nhr__plus::after{ width:1px; height:10px; transform:translate(-50%,-50%); }

.nhr__nav{
  position:absolute; top:calc(50% - 2.2rem); transform:translateY(-50%); z-index:3;
  width:42px; height:42px; display:grid; place-items:center; cursor:pointer;
  border:0; border-radius:50%; background:rgba(255,255,255,.92); color:var(--nh-ink);
  box-shadow:0 2px 14px rgba(0,0,0,.10);
  transition:opacity var(--nh-fast) var(--nh-ease), transform var(--nh-fast) var(--nh-ease);
}
.nhr__nav svg{ width:20px; height:20px; }
.nhr__nav:hover{ transform:translateY(-50%) scale(1.06); }
.nhr__nav--prev{ left:calc(var(--nh-pad) / 2); }
.nhr__nav--next{ right:calc(var(--nh-pad) / 2); }
.nhr__nav[hidden]{ display:none; }

@media (max-width:1200px){
  .nhr__track{ grid-auto-columns:calc((100% - (2 * var(--nh-pad)) - (2 * var(--nh-gap))) / 2.6); }
}
@media (max-width:749px){
  .nhr__track{ grid-auto-columns:74vw; }
  .nhr__nav{ display:none; }   /* touch devices swipe instead */
}
/* END_SECTION:nh-product-rail */

/* START_SECTION:nh-search (INDEX:65) */
.nhsr{ position:fixed; inset:0; z-index:2147482000; }
.nhsr[hidden]{ display:none; }
.nhsr__scrim{
  position:absolute; inset:0; background:rgba(20,16,12,.28);
  opacity:0; transition:opacity .24s ease;
}
.nhsr.is-open .nhsr__scrim{ opacity:1; }
.nhsr__panel{
  position:absolute; top:0; left:0; right:0;
  background:var(--nh-surface,#fff);
  padding:clamp(.75rem,1.5vw,1.1rem) clamp(1rem,3.5vw,2.75rem) clamp(1.25rem,3vw,2rem);
  border-radius:0 0 var(--nh-panel-r,18px) var(--nh-panel-r,18px);
  box-shadow:0 24px 60px rgba(28,22,16,.14);
  transform:translateY(-14px); opacity:0;
  transition:transform .3s var(--nh-ease,ease), opacity .24s ease;
  max-height:88vh; display:flex; flex-direction:column;
}
.nhsr.is-open .nhsr__panel{ transform:translateY(0); opacity:1; }

.nhsr__bar{ display:flex; align-items:center; gap:.75rem; flex:none; }
.nhsr__field{ position:relative; flex:1; display:block; }
.nhsr__input{
  width:100%; border:0; outline:0; background:var(--nh-bg,#F4F1EC);
  border-radius:999px; padding:1rem 3.25rem 1rem 1.5rem;
  font-family:var(--nh-font-body,system-ui); font-size:1rem; color:var(--nh-ink,#1B1B1B);
}
.nhsr__input::placeholder{ color:var(--nh-muted,#6E6A63); }
.nhsr__input::-webkit-search-cancel-button{ display:none; }
.nhsr__input:focus-visible{ box-shadow:0 0 0 2px var(--nh-accent,#B08D57); }
.nhsr__clear{
  position:absolute; right:3.1rem; top:50%; transform:translateY(-50%);
  width:26px; height:26px; display:grid; place-items:center; cursor:pointer;
  border:0; background:transparent; color:var(--nh-muted,#6E6A63); border-radius:50%;
}
.nhsr__clear[hidden]{ display:none; }
.nhsr__clear:hover{ color:var(--nh-ink,#1B1B1B); }
.nhsr__clear svg{ width:18px; height:18px; }
.nhsr__mag{
  position:absolute; right:1.15rem; top:50%; transform:translateY(-50%);
  width:20px; height:20px; color:var(--nh-muted,#6E6A63); pointer-events:none;
}
.nhsr__close{
  flex:none; width:40px; height:40px; display:grid; place-items:center; cursor:pointer;
  border:0; background:transparent; color:var(--nh-ink,#1B1B1B); border-radius:50%;
}
.nhsr__close:hover{ background:var(--nh-bg,#F4F1EC); }
.nhsr__close svg{ width:20px; height:20px; }

.nhsr__body{ overflow-y:auto; margin-top:clamp(1rem,2vw,1.5rem); flex:1 1 auto; min-height:0; }
/* results run full width when typing, matching the reference */
.nhsr__results .nhsr__list{ max-width:none; }
.nhsr__more{
  flex:none; display:flex; align-items:center; justify-content:space-between; gap:1rem;
  margin-top:.75rem; padding:1rem .25rem 0;
  border-top:1px solid var(--nh-line,#E4DED4);
  font-family:var(--nh-font-body,system-ui); font-size:1rem;
  color:var(--nh-ink,#1B1B1B); text-decoration:none;
}
.nhsr__more[hidden]{ display:none; }
.nhsr__more:hover{ color:var(--nh-accent,#B08D57); }
.nhsr__more svg{ width:22px; height:22px; flex:none; }
.nhsr__heading{
  margin:0 0 .25rem; padding-bottom:.6rem;
  border-bottom:1px solid var(--nh-line,#E4DED4);
  font-family:var(--nh-font-body,system-ui); font-weight:600;
  font-size:var(--nh-fs-eyebrow,.6875rem); letter-spacing:.14em;
  text-transform:uppercase; color:var(--nh-muted,#6E6A63);
}
.nhsr__group + .nhsr__group{ margin-top:1.5rem; }
.nhsr__list{ list-style:none; margin:0; padding:0; max-width:640px; }
.nhsr__row + .nhsr__row{ border-top:1px solid var(--nh-line,#E4DED4); }
.nhsr__link{
  display:flex; align-items:center; gap:1rem; padding:.7rem .25rem;
  text-decoration:none; color:var(--nh-ink,#1B1B1B); border-radius:10px;
  transition:background .18s ease;
}
.nhsr__link:hover,.nhsr__link.is-cursor{ background:var(--nh-bg,#F4F1EC); color:var(--nh-ink,#1B1B1B); }
.nhsr__thumb{
  flex:none; width:56px; height:56px; border-radius:10px; overflow:hidden;
  background:var(--nh-bg,#F4F1EC); display:grid; place-items:center;
}
.nhsr__thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.nhsr__title{ font-family:var(--nh-font-body,system-ui); font-size:.95rem; line-height:1.3; }
.nhsr__price{ margin-left:auto; padding-left:1rem; color:var(--nh-muted,#6E6A63); font-size:.9rem; }
.nhsr__empty{
  margin:1rem 0 0; font-family:var(--nh-font-body,system-ui);
  color:var(--nh-muted,#6E6A63); font-size:.95rem;
}
@media (max-width:749px){
  .nhsr__panel{ height:100dvh; max-height:none; border-radius:0; }
  .nhsr__thumb{ width:48px; height:48px; }
  .nhsr__list{ max-width:none; }
}
@media (prefers-reduced-motion: reduce){
  .nhsr__scrim,.nhsr__panel{ transition:none; }
}
/* END_SECTION:nh-search */

/* START_SECTION:nh-stories (INDEX:66) */
.nhst{ display:contents; }

/* ---------- launcher ---------- */
.nhst__launcher{
  position:relative; flex:none; width:34px; height:34px; padding:0;
  border:0; background:transparent; cursor:pointer; display:grid; place-items:center;
}
/* Solid gold ring drawn as a real border, so it stays perfectly concentric —
   the masked conic gradient it replaced could shift a pixel at some sizes. */
.nhst__ring{
  position:absolute; inset:0; border-radius:50%;
  border:1.5px solid var(--nhst-ring, #E9A33C);
  transition:transform .3s var(--nh-ease,ease), box-shadow .3s var(--nh-ease,ease);
}
.nhst__launcher:hover .nhst__ring{
  transform:scale(1.06);
  box-shadow:0 0 0 3px color-mix(in srgb, var(--nhst-ring,#E9A33C) 22%, transparent);
}
.nhst__avatar{
  width:26px; height:26px; border-radius:50%; overflow:hidden;
  display:grid; place-items:center; background:var(--nh-surface,#fff);
}
/* contain, not cover: the brand mark is tall, and cover cropped the flame.
   grid centring plus a little inset keeps it optically centred in the ring. */
.nhst__avatarImg{
  width:100%; height:100%; padding:1px;
  object-fit:contain; object-position:center; display:block;
  box-sizing:border-box;
}
.nhst__initial{
  font-family:var(--nh-font-body, system-ui); font-size:12px; font-weight:600;
  color:var(--nh-ink,#1B1B1B); line-height:1;
}

/* ---------- overlay ---------- */
.nhst__overlay{ position:fixed; inset:0; z-index:2147483000; }
.nhst__overlay[hidden]{ display:none; }
.nhst__scrim{
  position:absolute; inset:0; background:rgba(18,15,12,.72);
  -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  opacity:0; transition:opacity .28s ease;
}
.nhst__overlay.is-open .nhst__scrim{ opacity:1; }
.nhst__stage{
  position:absolute; inset:0; display:grid; place-items:center;
  padding:clamp(.75rem,2vw,1.5rem);
}
.nhst__bars{
  position:absolute; top:clamp(.75rem,2vw,1.1rem); left:50%; transform:translateX(-50%);
  width:min(560px, 92vw); display:flex; gap:4px; z-index:3;
}
.nhst__bar{ flex:1; height:3px; border-radius:2px; background:rgba(255,255,255,.32); overflow:hidden; }
.nhst__fill{ display:block; height:100%; width:0; background:#fff; }
.nhst__controls{
  position:absolute; top:clamp(.6rem,2vw,1rem); right:clamp(.75rem,2vw,1.25rem);
  display:flex; gap:.35rem; z-index:4;
}
.nhst__ctrl{
  width:38px; height:38px; display:grid; place-items:center; cursor:pointer;
  border:0; border-radius:50%; background:transparent; color:#fff;
}
.nhst__ctrl:hover{ background:rgba(255,255,255,.14); }
.nhst__ctrl svg{ width:20px; height:20px; fill:currentColor; }
.nhst__iplay{ display:none; }
.nhst__overlay.is-paused .nhst__ipause{ display:none; }
.nhst__overlay.is-paused .nhst__iplay{ display:block; }

.nhst__frame{
  position:relative; width:min(420px, 92vw);
  aspect-ratio:9/16; max-height:86vh;
  border-radius:16px; overflow:hidden; background:#000;
  transform:scale(.97); opacity:0;
  transition:transform .32s var(--nh-ease,ease), opacity .28s ease;
}
.nhst__overlay.is-open .nhst__frame{ transform:scale(1); opacity:1; }
.nhst__slide{ position:absolute; inset:0; margin:0; opacity:0; visibility:hidden; }
.nhst__slide.is-active{ opacity:1; visibility:visible; }
.nhst__media{ width:100%; height:100%; object-fit:cover; display:block; }
.nhst__media--empty{ background:linear-gradient(160deg,#3a332b,#14110e); }
.nhst__cap{
  position:absolute; inset:auto 0 0; padding:1.25rem; display:flex; justify-content:center;
  background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.55));
}
.nhst__cta{
  background:rgba(20,20,20,.92); color:#fff; text-decoration:none;
  font-family:var(--nh-font-body, system-ui); font-size:.8125rem; font-weight:500;
  padding:.7em 1.4em; border-radius:999px;
}
.nhst__cta:hover{ color:#fff; opacity:.9; }
.nhst__nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:40px; height:40px; display:grid; place-items:center; cursor:pointer;
  border:0; border-radius:50%; background:rgba(255,255,255,.85); color:#141414;
}
.nhst__nav--prev{ left:-52px; }
.nhst__nav--next{ right:-52px; }
.nhst__nav[hidden]{ display:none; }
@media (max-width:900px){
  .nhst__nav--prev{ left:6px; background:rgba(255,255,255,.55); }
  .nhst__nav--next{ right:6px; background:rgba(255,255,255,.55); }
}
/* The header icon row is tight on phones: the in-flow icons already totalled
   ~120px in a 130px column before this launcher was added, so a full-size one
   made flex squeeze every icon. Slightly smaller here keeps the row honest. */
@media (max-width:767px){
  .nhst__launcher{ width:28px; height:28px; margin-left:6px; }
  .nhst__avatar{ width:22px; height:22px; }
}

@media (prefers-reduced-motion: reduce){
  .nhst__scrim,.nhst__frame{ transition:none; }
}
/* END_SECTION:nh-stories */