/** Shopify CDN: Minification failed

Line 44:0 All "@import" rules must come first
Line 1678:0 All "@import" rules must come first

**/
/* Prevent horizontal scrollbar caused by the wide sliding track.
   position:fixed elements are NOT affected by overflow:hidden on ancestors
   (only CSS transform/filter on an ancestor breaks fixed positioning).
   So this is safe and doesn't interfere with our pinning technique. */
html, body {
  overflow-x: hidden;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --nm-cream:        #FAF8F3;
  --nm-warm-white:   #F5F2EC;
  --nm-sand:         #E8E0D0;
  --nm-mocha:        #8B6F5C;
  --nm-espresso:     #3D2B1F;
  --nm-charcoal:     #2A2A2A;
  --nm-dusty-rose:   #C4907A;
  --nm-sage:         #8A9B8E;
  --nm-linen:        #D4C5B0;

  --nm-ease-out:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nm-ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --nm-duration-img: 0.65s;
  --nm-duration-ui:  0.28s;
  --nm-duration-slow: 0.9s;

  --nm-card-radius:  0px;   /* flat edges = editorial boho */
  --nm-badge-radius: 2px;
  --nm-label-track:  0.08em;
}

/* ============================================================
   GOOGLE FONT — CORMORANT GARAMOND + JOST
   Premium editorial typography for boho-luxury feel
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ============================================================
   GLOBAL BODY REFINEMENTS
   ============================================================ */
body {
  background-color: var(--nm-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Section backgrounds default to cream */
.index-section {
  background-color: var(--nm-cream);
}

/* ============================================================
   SECTION HEADINGS — EDITORIAL BOHO STYLE
   ============================================================ */
.section-block__title,
.section-heading__title,
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Sub-titles / eyebrows */
.subtop,
.section-block__subtext,
.section-heading__subtitle {
  font-family: 'Jost', sans-serif !important;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--nm-mocha);
}

/* ============================================================
   PRODUCT CARD — BOHO MINIMAL REDESIGN
   Target: all card styles via .product-card
   ============================================================ */

/* --- Base card reset to minimal flat ----------------------- */
.product-card {
  background-color: transparent !important;
  border: none !important;
  border-radius: var(--nm-card-radius) !important;
  position: relative;
  text-align: left;
  transition: transform var(--nm-duration-ui) var(--nm-ease-out);
}

/* Card hover — very gentle lift, no heavy shadow */
.product-card:hover {
  transform: translateY(-4px);
}

/* --- Image wrapper: clean overflow container --------------- */
.product-card__image-wr {
  position: relative;
  overflow: hidden;
  background-color: var(--nm-warm-white);
  border-radius: var(--nm-card-radius);
}

/* --- Primary image: silky smooth scale on hover ------------ */
.product-card__image-wr .first-image {
  transition: 
    transform var(--nm-duration-img) var(--nm-ease-out),
    opacity 0.3s ease;
  transform-origin: center center;
  will-change: transform;
}

.product-card:hover .product-card__image-wr .first-image {
  transform: scale(1.07);
}

/* When second image exists — crossfade hide first */
.product-card:hover .hover__hide-image {
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* --- Second image: smooth fade + slight scale -------------- */
.product-card .second-image {
  opacity: 0;
  transform: scale(1.04);
  transition: 
    opacity var(--nm-duration-img) var(--nm-ease-out),
    transform var(--nm-duration-img) var(--nm-ease-out) !important;
}

.product-card:hover .second-image {
  opacity: 1;
  transform: scale(1) !important;
}

/* --- Product info area ------------------------------------- */
.product-card__info {
  padding: 14px 4px 20px !important;
  background-color: transparent !important;
  text-align: left;
}

/* --- Product title: editorial serif ----------------------- */
.product-card__name {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  color: var(--nm-charcoal) !important;
  margin-bottom: 6px !important;
  /* Limit to 2 lines */
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: none !important;
}

/* Hover — subtle colour warm */
.product-card__name:hover,
.product-card a.product-card__name:hover {
  color: var(--nm-mocha) !important;
}

/* --- Price ------------------------------------------------ */
.product-card__price {
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em;
  color: var(--nm-charcoal) !important;
  opacity: 0.85;
}

.product-card__regular-price {
  color: var(--nm-linen) !important;
  font-size: 12px !important;
  text-decoration: line-through;
  opacity: 1 !important;
}

/* Sale price accent */
.product-card__pricesale {
  color: var(--nm-dusty-rose) !important;
}

/* --- Badge/label: refined pill ---------------------------- */
.product-tag,
.product-tag--absolute {
  font-family: 'Jost', sans-serif !important;
  font-size: 9px !important;
  font-weight: 500 !important;
  letter-spacing: var(--nm-label-track) !important;
  text-transform: uppercase !important;
  padding: 4px 9px !important;
  border-radius: var(--nm-badge-radius) !important;
  line-height: 1.2;
}

/* --- Overlay action buttons: modern minimal pill ---------- */
.product-card__overlay {
  padding: 10px !important;
}

.product-card__overlay-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
  border: none !important;
  color: var(--nm-charcoal) !important;
  transition: 
    background var(--nm-duration-ui) ease,
    transform var(--nm-duration-ui) ease !important;
  margin-bottom: 6px !important;
}

.product-card__overlay-btn:hover {
  background: rgba(255,255,255,1) !important;
  transform: scale(1.08) !important;
}

.product-card__overlay-btn svg {
  width: 16px !important;
  height: 16px !important;
}

/* Hide text labels inside the overlay circular buttons to prevent clipping (e.g. "ICKSH") */
.product-card__overlay-btn span {
  display: none !important;
}

/* Bottom ATC bar always-visible cart (style 9, 10) */
.product-card-cart .btn {
  border-radius: 0 !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  background-color: var(--nm-charcoal) !important;
  color: var(--nm-cream) !important;
  border: none !important;
  padding: 13px 20px !important;
  transition: 
    background-color var(--nm-duration-ui) ease,
    color var(--nm-duration-ui) ease,
    transform 0.15s ease !important;
}

.product-card-cart .btn:hover {
  background-color: var(--nm-espresso) !important;
}

/* Bottom overlay buttons (style 4, 5) - white on product card hover, black on button hover */
.product-card__overlaybottom .btn {
  border-radius: 0 !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  background-color: #ffffff !important;
  color: var(--nm-mocha) !important;
  border: none !important;
  padding: 13px 20px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: 
    background-color var(--nm-duration-ui) ease,
    color var(--nm-duration-ui) ease,
    transform 0.15s ease !important;
}

.product-card__overlaybottom .btn:hover {
  background-color: var(--nm-charcoal) !important;
  color: #ffffff !important;
}

/* Special overrides for style 5 bottom buttons (which mistakenly have the circular overlay-btn class) */
.product-card__overlaybottom .product-card__overlay-btn {
  width: 100% !important;
  height: auto !important;
  border-radius: 0 !important;
}

/* Make sure text spans inside bottom buttons are displayed (excluding hidden description elements) */
.product-card__overlaybottom .btn span:not(.hide) {
  display: inline-block !important;
}


/* ============================================================
   VENDOR TEXT
   ============================================================ */
.product-card__type {
  font-family: 'Jost', sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--nm-mocha) !important;
  font-weight: 400 !important;
  margin-bottom: 4px !important;
  display: block !important;
}

/* ============================================================
   SWATCH DOTS — cleaner, smaller
   ============================================================ */
.swatch-grid-1 .swatch-item-color,
.swatch__item-color {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  margin: 2px !important;
  border: 1.5px solid var(--nm-sand) !important;
  transition: border-color 0.2s ease, transform 0.2s ease !important;
}

.swatch-grid-1 .swatch-item-color:hover,
.swatch__item-color:hover {
  border-color: var(--nm-charcoal) !important;
  transform: scale(1.15) !important;
}

/* ============================================================
   BUTTON GLOBAL — REFINED BOHO MINIMAL
   ============================================================ */
.btn-theme {
  font-family: 'Jost', sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 14px 32px !important;
  background-color: var(--nm-charcoal) !important;
  color: var(--nm-cream) !important;
  border: 1px solid var(--nm-charcoal) !important;
  transition: 
    background-color var(--nm-duration-ui) ease,
    color var(--nm-duration-ui) ease,
    border-color var(--nm-duration-ui) ease !important;
}

.btn-theme:hover {
  background-color: var(--nm-espresso) !important;
  border-color: var(--nm-espresso) !important;
  color: #fff !important;
}

.btn-theme:active {
  transform: scale(0.97) !important;
}

/* Outline variant */
.btn-outline {
  font-family: 'Jost', sans-serif !important;
  border-radius: 0 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
}

/* Underline link style */
.btn-underline {
  font-family: 'Jost', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  position: relative;
  padding-bottom: 2px !important;
}

.btn-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--nm-ease-out);
}

.btn-underline:hover::after {
  width: 100%;
}

/* ============================================================
   HEADER NAV — REFINED LINK HOVER UNDERLINE
   ============================================================ */
.site-nav__link,
.site-nav > li > a {
  font-family: 'Jost', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em;
  font-size: 13px !important;
  position: relative;
}

.site-nav__link::after,
.site-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--nm-ease-out);
}

.site-nav__link:hover::after,
.site-nav > li:hover > a::after {
  width: 100%;
}

/* ============================================================
   ANNOUNCEMENT BAR — REFINED
   ============================================================ */
.announcement-bar__message,
.announcement-bar p {
  font-family: 'Jost', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  font-weight: 400 !important;
}

/* Hide header/announcement bar when scroll section is pinned */
.shopify-section-group-header-group,
.section-header,
#shopify-section-header,
.site-header,
.header-sticky,
.announcement-bar {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, visibility 0.4s ease !important;
}

body.nm-scroll-pinned .shopify-section-group-header-group,
body.nm-scroll-pinned #shopify-section-header,
body.nm-scroll-pinned .section-header,
body.nm-scroll-pinned .site-header,
body.nm-scroll-pinned .header-sticky,
body.nm-scroll-pinned .announcement-bar {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ============================================================
   SECTION HEADING COMPONENT
   ============================================================ */
.section-heading {
  margin-bottom: 40px;
}

.section-heading h2,
.section-heading h3,
.section-block__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
}

/* ============================================================
   PRODUCT CARD — STAGGERED ENTRANCE ANIMATION
   (CSS only, no JS needed for initial page load)
   ============================================================ */
@keyframes nm-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Applied by nutmeg-animations.js via data-nm-animate attribute */
[data-nm-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s var(--nm-ease-out),
    transform 0.6s var(--nm-ease-out);
}

[data-nm-animate].nm-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HORIZONTAL SCROLL SECTION — PINNED "L" SCROLL
   ============================================================ */

/* Outer wrapper: tall enough to reserve scroll distance.
   Position:relative so absolute panel children position correctly.
   NO overflow override needed — position:fixed escapes overflow:hidden
   by default (only transform/filter breaks it). */
.nm-hscroll-outer {
  position: relative;
  /* height set by JS: panelH + maxScroll */
}

/* The pinnable panel.
   JS controls: position (absolute ↔ fixed), top, height, z-index.
   CSS sets the appearance and inner layout only. */
.nm-hscroll-sticky {
  /* JS controls position & dimensions */
  background-color: var(--nm-cream);
  overflow: hidden; /* clips the wide sliding track */
  display: flex;
  flex-direction: column;
}

/* Inner content: fills 100% of panel height as a flex column */
.nm-hscroll-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* TOP ROW: eyebrow + title on left, View All on right.
   In-flow (not absolutely positioned) so cards never overlap it. */
.nm-hscroll-top {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 28px 60px 16px;
}

/* Title area */
.nm-hscroll-top-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nm-hscroll-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nm-mocha);
  display: block;
}

.nm-hscroll-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(32px, 4vw, 56px) !important;
  font-weight: 300 !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
  color: var(--nm-charcoal);
  margin: 0 !important;
}

.nm-hscroll-viewall {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nm-charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--nm-charcoal);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 4px;
}

.nm-hscroll-viewall:hover {
  color: var(--nm-mocha);
  border-color: var(--nm-mocha);
}

/* TRACK CLIP: fills remaining height, clips the sliding track */
.nm-hscroll-track-clip {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* The sliding horizontal track — width set by JS */
.nm-hscroll-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
  will-change: transform;
  padding: 0 32px;
  box-sizing: border-box;
}

/* BOTTOM ROW: progress bar + scroll hint */
.nm-hscroll-bottom {
  flex: 0 0 auto;
  padding: 12px 60px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Progress bar */
.nm-hscroll-progress-wrap {
  flex: 1;
  height: 1px;
  background: var(--nm-sand);
  margin-right: 24px;
}

.nm-hscroll-progress-bar {
  height: 1px;
  width: 0%;
  background: var(--nm-charcoal);
  transition: width 0.08s linear;
}

/* Scroll hint */
.nm-hscroll-hint {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nm-mocha);
  opacity: 0.7;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

/* Cards inside track */
.nm-hscroll-track .nm-hcard {
  flex: 0 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}

/* Card inner — override layout to be a flex container so image and text fit perfectly */
.nm-hcard .product-card {
  width: 100%;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* Force image wrapper to shrink to fill remaining vertical height */
.nm-hcard .product-card__image-wr {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Remove aspect-ratio padding and make it wider for the parallax translation bleed */
.nm-hcard .product-card__image {
  padding-top: 0 !important;
  height: 100% !important;
  width: 110% !important;
  left: -5% !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  transform: translateX(var(--parallax-x, 0px)) !important;
  will-change: transform;
}

/* Force images to cover the box without distortion */
.nm-hcard .product-card__image img,
.nm-hcard .product-card__image .first-image,
.nm-hcard .product-card__image .second-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  /* Slight base scale on image itself to prevent pixel gaps and support zoom */
  transform: scale(1.02) !important;
  transition: transform 0.45s var(--nm-ease-out), opacity var(--nm-duration-img) var(--nm-ease-out) !important;
  will-change: transform;
}

/* Silky hover zoom transition on image */
.nm-hcard .product-card:hover .product-card__image img,
.nm-hcard .product-card:hover .product-card__image .first-image,
.nm-hcard .product-card:hover .product-card__image .second-image {
  transform: scale(1.08) !important;
}

/* Info area fits naturally below image with boho editorial styling */
.nm-hcard .product-card__info {
  flex: 0 0 auto !important;
  padding: 12px 2px 4px !important;
  background-color: transparent !important;
}

.nm-hcard .product-card__type {
  font-family: 'Jost', sans-serif !important;
  font-size: 9px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  color: var(--nm-mocha) !important;
  margin-bottom: 2px !important;
}

.nm-hcard .product-card__name {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.3 !important;
  text-transform: none !important;
  color: var(--nm-charcoal) !important;
  margin-bottom: 4px !important;
}

.nm-hcard .product-card__price {
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
  color: var(--nm-charcoal) !important;
  opacity: 0.8;
}

/* Customizer visibility toggles for the horizontal scroll section */
.nm-hscroll-outer.nm-hide-vendor .product-card__type {
  display: none !important;
}
.nm-hscroll-outer.nm-hide-title .product-card__name {
  display: none !important;
}
.nm-hscroll-outer.nm-hide-price .product-card__price {
  display: none !important;
}
.nm-hscroll-outer.nm-hide-rating .jdgm-preview-badge,
.nm-hscroll-outer.nm-hide-rating .spr-badge,
.nm-hscroll-outer.nm-hide-rating .jdgm-widget {
  display: none !important;
}
.nm-hscroll-outer.nm-hide-counter .nm-hcard__counter {
  display: none !important;
}

/* Counter badge */
.nm-hcard__counter {
  position: absolute;
  top: 12px;
  left: 22px;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--nm-mocha) !important;
  letter-spacing: 0.04em;
  z-index: 5;
  line-height: 1;
  pointer-events: none;
}

/* ============================================================
   HORIZONTAL SCROLL — MOBILE FALLBACK
   Pure CSS touch-swipe — no JS involvement on mobile
   ============================================================ */
@media (max-width: 991px) {
  /* Site header z-index fix for mobile scrolling */
  .site-header,
  .site-header--sticky,
  .sticky,
  .sticky--active {
    z-index: 1000 !important;
  }

  /* Header row: compact mobile padding */
  .nm-hscroll-top {
    padding: 24px 20px 12px;
  }

  .nm-hscroll-track {
    padding: 0 16px;
  }

  /* Each card: fixed mobile width from JS */
  .nm-hscroll-track .nm-hcard {
    padding: 0 8px;
    box-sizing: border-box;
  }

  /* Card inner: fixed height column layout */
  .nm-hscroll-track .nm-hcard .product-card {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Image wrapper fills most of the height */
  .nm-hscroll-track .nm-hcard .product-card__image-wr {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    border-radius: 8px;
  }

  /* Info area below image */
  .nm-hscroll-track .nm-hcard .product-card__info {
    flex: 0 0 auto !important;
    padding: 10px 2px 4px !important;
  }

  /* Bottom bar: compact */
  .nm-hscroll-bottom {
    padding: 12px 20px 20px;
  }

  .nm-hscroll-hint {
    display: none;
  }
}


/* ============================================================
   COLLECTION CARD HOVER — CATEGORY SECTION
   ============================================================ */
.collection-card-3 .hv-image {
  transition: transform var(--nm-duration-img) var(--nm-ease-out) !important;
  overflow: hidden !important;
}

.collection-card-3:hover .hv-image {
  transform: scale(1.05) !important;
}

.collection-card-3 .title-collection a {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  letter-spacing: -0.01em !important;
}

/* ============================================================
   FOOTER REFINEMENT
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--nm-sand);
  background-color: var(--nm-warm-white) !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 300;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section input[type="email"],
.newsletter input[type="email"] {
  font-family: 'Jost', sans-serif !important;
  border: none !important;
  border-bottom: 1px solid var(--nm-charcoal) !important;
  background: transparent !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em;
  padding: 12px 0 !important;
  color: var(--nm-charcoal) !important;
  outline: none !important;
  transition: border-color 0.2s ease !important;
}

.newsletter-section input[type="email"]:focus,
.newsletter input[type="email"]:focus {
  border-bottom-color: var(--nm-mocha) !important;
}

/* ============================================================
   MICRO-INTERACTIONS
   ============================================================ */

/* All links: smooth colour transition */
a {
  transition: color var(--nm-duration-ui) ease;
}

/* Focus rings: minimal elegant */
:focus-visible {
  outline: 1px solid var(--nm-mocha);
  outline-offset: 3px;
}

/* Back to top */
.back-to-top,
#btn-back-to-top {
  border-radius: 0 !important;
  width: 40px !important;
  height: 40px !important;
  background: var(--nm-charcoal) !important;
  color: var(--nm-cream) !important;
  transition: 
    background-color var(--nm-duration-ui) ease,
    transform 0.3s var(--nm-ease-out) !important;
}

.back-to-top:hover,
#btn-back-to-top:hover {
  background-color: var(--nm-espresso) !important;
  transform: translateY(-3px) !important;
}

/* ============================================================
   REDUCED MOTION — ACCESSIBILITY
   Disables ALL transitions & animations for users who prefer it
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-nm-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .nm-hscroll-track {
    transform: none !important;
  }
}

/* ============================================================
   TESTIMONIALS SECTION — EDITORIAL BOHO REDESIGN
   ============================================================ */

/* 1. Background fix: section-block must be transparent inside customstyle
      so that custom backgrounds (like the dark mocha) show through. */
.quotes-section .section-block {
  background-color: transparent !important;
}

/* 2. Slide container - completely flat, spacious, and clean */
.quotes-section .quote-wrap {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 48px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* 3. Title/Reviewer Name (h4) — boho label style */
.quotes-section .quote__style_1 h4 {
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  color: inherit !important;
  opacity: 0.9;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

/* 4. Rating Stars — minimalist and clean */
.quotes-section .rating {
  display: inline-flex !important;
  justify-content: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px 0 !important;
  gap: 6px !important;
}

.quotes-section .rating li {
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0.25;
}

.quotes-section .rating li.rated {
  opacity: 1;
}

.quotes-section .rating li svg {
  width: 13px !important;
  height: 13px !important;
  fill: currentColor !important; /* inherits text color (white on dark, dark on light) */
}

/* 5. Quote Text — high contrast, gorgeous italic serif */
.quotes-section .quote__style_1 .py-2 {
  padding: 0 !important;
}

.quotes-section .quote__style_1 .py-2 .h4,
.quotes-section .quote__style_1 .py-2 .h3,
.quotes-section .quote__style_1 .py-2 .h5,
.quotes-section .quote__style_1 .py-2 .h6,
.quotes-section .quote__style_1 .py-2 p {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(20px, 2.5vw, 28px) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.65 !important;
  letter-spacing: -0.01em !important;
  color: inherit !important;
  text-transform: none !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  display: block !important;
}

/* 6. Reviewer Location (txt-body-60) */
.quotes-section .quote__style_1 .txt-body-60 {
  font-family: 'Jost', sans-serif !important;
  font-weight: 300 !important;
  font-size: 10px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: inherit !important;
  opacity: 0.7;
  display: block !important;
  margin-top: 14px !important;
}

/* 7. Slick Navigation Arrows — refined minimalist circles */
.quotes-section .slick-prev,
.quotes-section .slick-next {
  width: 46px !important;
  height: 46px !important;
  background: transparent !important;
  border: 1px solid currentColor !important;
  color: inherit !important;
  box-shadow: none !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0.45 !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.quotes-section .slick-prev:hover,
.quotes-section .slick-next:hover {
  opacity: 0.95 !important;
  transform: translateY(-50%) scale(1.06) !important;
}

.quotes-section .slick-prev:before,
.quotes-section .slick-next:before {
  color: currentColor !important;
  font-size: 15px !important;
}

/* 8. Slick Navigation Dots */
.quotes-section .slick-dots {
  bottom: -32px !important;
}

.quotes-section .slick-dots li button:before {
  color: currentColor !important;
  font-size: 6px !important;
  opacity: 0.25 !important;
}

.quotes-section .slick-dots li.slick-active button:before {
  opacity: 0.8 !important;
}

/* ============================================================
   CATEGORIES SCROLLYTELLING SECTION
   ============================================================ */

/* Outer container - height is set by JS on desktop */
.nm-cat-scrolly-outer {
  position: relative;
  width: 100%;
}

/* Sticky Container */
.nm-cat-scrolly-sticky {
  width: 100%;
  height: 100vh; /* fallback height before JS loads */
  background-color: inherit;
}

/* Inner Layout Grid/Flex */
.nm-cat-scrolly-inner {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

/* Left Panel: Visual Canvas */
.nm-cat-scrolly-left {
  flex: 1 1 55%;
  position: relative;
  height: 100vh; /* fallback height before JS loads */
  overflow: hidden;
  background-color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Number Wrapper */
.nm-cat-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Huge background text */
.nm-cat-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: currentColor;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 1),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 1),
              visibility 0.8s;
  user-select: none;
}

.nm-cat-bg-text.nm-active {
  opacity: var(--bg-text-opacity, 0.16);
  visibility: visible;
  transform: translate(-50%, -50%) scale(1.05);
}

/* Track Clip Container */
.nm-cat-track-clip {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Sliding Track */
.nm-cat-track {
  display: flex;
  flex-direction: row;
  height: 100%;
  will-change: transform;
}

/* Category Item Slide */
.nm-cat-item {
  flex: 0 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

/* Image Wrapper */
.nm-cat-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Category cutout image */
.nm-cat-image-wrapper img {
  max-width: 85%;
  max-height: 75vh;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.04));
  transform: scale(0.85);
  opacity: 1;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 1);
  will-change: transform;
}

.nm-cat-image-wrapper svg.placeholder-svg {
  width: 100%;
  height: auto;
  max-height: 65vh;
  max-width: 360px;
  min-height: 480px;
  min-width: 300px;
  background-color: var(--nm-warm-white) !important;
  border: 1px solid var(--nm-sand) !important;
  fill: var(--nm-mocha) !important;
  color: var(--nm-mocha) !important;
  padding: 40px;
  box-sizing: border-box;
  display: block !important;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.03));
  transform: scale(0.85);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 1);
  will-change: transform;
}

/* Active cutout zoom */
.nm-cat-item.nm-active .nm-cat-image-wrapper img,
.nm-cat-item.nm-active .nm-cat-image-wrapper svg.placeholder-svg {
  transform: scale(1.02);
  opacity: 1;
}

/* Hover state zoom */
.nm-cat-item.nm-active:hover .nm-cat-image-wrapper img {
  transform: scale(1.06);
}

/* Right Panel: Editorial Sidebar */
.nm-cat-scrolly-right {
  flex: 0 0 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 80px;
  box-sizing: border-box;
  border-left: 1px solid var(--nm-sand);
  position: relative;
  z-index: 5;
}

/* Details Grid Container */
.nm-cat-details-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  margin-bottom: 40px;
}

/* Details Pane */
.nm-cat-details-pane {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s var(--nm-ease-out), visibility 0.6s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nm-cat-details-pane.nm-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Typography styles inside Pane */
.nm-cat-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nm-mocha);
  margin-bottom: 16px;
}

.nm-cat-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 20px 0 !important;
}

.nm-cat-desc {
  font-family: 'Jost', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0 0 32px 0;
  max-width: 380px;
}

.nm-cat-cta {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 4px;
  transition: color var(--nm-duration-ui) ease, border-color var(--nm-duration-ui) ease;
}

.nm-cat-cta:hover {
  color: var(--nm-mocha);
}

/* Pagination / Progress Dots */
.nm-cat-pagination {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nm-cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: currentColor;
  opacity: 0.2;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity var(--nm-duration-ui) ease, transform var(--nm-duration-ui) ease;
}

.nm-cat-dot:hover {
  opacity: 0.5;
}

.nm-cat-dot.nm-active {
  opacity: 1;
  transform: scale(1.3);
}

/* Hide category mobile arrows on desktop */
.nm-cat-mobile-arrow {
  display: none !important;
}

/* ============================================================
   CATEGORIES SCROLLY — MOBILE FALLBACK (UNDER 991PX)
   Full-viewport card — image top 58%, details bottom 42%
   ============================================================ */
@media (max-width: 991px) {
  .nm-cat-scrolly-outer {
    height: 100svh !important; /* svh = small viewport height, accounts for mobile browser chrome */
    overflow: hidden !important;
    position: relative;
  }

  .nm-cat-scrolly-sticky {
    position: relative !important;
    height: 100% !important;
    top: auto !important;
    overflow: hidden;
  }

  .nm-cat-scrolly-inner {
    flex-direction: column;
    height: 100% !important;
    width: 100%;
    box-sizing: border-box;
  }

  /* ─── Image stage: top 58% ─── */
  .nm-cat-scrolly-left {
    width: 100%;
    height: 58% !important;
    position: relative;
    padding: 0;
    box-sizing: border-box;
    display: block; /* track-clip fills absolutely */
    overflow: hidden;
  }

  /* BG text wrapper — absolute, fills left panel */
  .nm-cat-background-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
  }

  /* BG text: absolute-centred inside background-wrapper.
     All slides overlap at same position — only nm-active is visible.
     Font capped so widest words (≤8 chars) fit within 375px viewport. */
  .nm-cat-bg-text {
    font-size: clamp(80px, 20vw, 120px) !important;
    padding: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    max-width: none !important;
    /* Keep absolute + centred — static would put all texts in a row */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.9) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s !important;
  }

  .nm-cat-bg-text.nm-active {
    opacity: var(--bg-text-opacity, 0.12) !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) scale(1.0) !important;
  }

  /* Track clip: horizontal scroll container fills entire left panel */
  .nm-cat-track-clip {
    position: absolute !important;
    inset: 0;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    z-index: 2; /* above bg text */
  }

  .nm-cat-track-clip::-webkit-scrollbar { display: none; }

  /* Track: row of full-vw items, no JS transform */
  .nm-cat-track {
    display: flex !important;
    flex-direction: row !important;
    height: 100% !important;
    width: max-content !important;
    transform: none !important;
    padding: 0 !important;
    align-items: stretch !important;
  }

  /* Each item: full viewport width, snaps to center */
  .nm-cat-item {
    flex: 0 0 100vw !important;
    width: 100vw !important;
    height: 100% !important;
    padding: 12px 24px !important;
    scroll-snap-align: start !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .nm-cat-image-wrapper {
    height: auto !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nm-cat-image-wrapper img,
  .nm-cat-image-wrapper svg.placeholder-svg {
    max-height: 70% !important;
    max-width: 85% !important;
    object-fit: contain;
    margin: 0 auto !important;
    display: block !important;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 1);
  }

  .nm-cat-item.nm-active .nm-cat-image-wrapper img,
  .nm-cat-item.nm-active .nm-cat-image-wrapper svg.placeholder-svg {
    transform: scale(1.0);
  }

  /* ─── Details panel: bottom 42%, NO dividing line ─── */
  .nm-cat-scrolly-right {
    width: 100%;
    height: 42% !important;
    border-left: none !important;
    border-top: none !important;     /* Remove dividing line — looks like one unit */
    padding: 8px 28px 12px !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }

  /* Tiny decorative rule instead of the heavy border */
  .nm-cat-scrolly-right::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: currentColor;
    opacity: 0.2;
    margin: 0 auto 10px;
    flex-shrink: 0;
  }

  .nm-cat-fixed-title {
    font-size: 9px !important;
    letter-spacing: 0.22em !important;
    margin-bottom: 3px !important;
  }

  /* MUST stay grid so all panes stack at same cell; only nm-active shown */
  .nm-cat-details-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: 1fr !important;
    margin-bottom: 0;
    width: 100%;
  }

  .nm-cat-details-pane {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-items: center !important;
    width: 100%;
  }

  .nm-cat-eyebrow {
    font-size: 10px !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 5px !important;
  }

  /* ✅ Bigger, readable title */
  .nm-cat-title {
    font-size: clamp(26px, 7vw, 34px) !important;
    margin-bottom: 8px !important;
    line-height: 1.15 !important;
  }

  /* ✅ Bigger, readable description — full width, center-aligned */
  .nm-cat-desc {
    font-size: 13px !important;
    line-height: 1.55 !important;
    margin-bottom: 10px !important;
    max-width: 100% !important;  /* Use full panel width */
    width: 100% !important;
    text-align: center !important;
  }

  .nm-cat-cta {
    font-size: 10px !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 6px !important;
  }

  .nm-cat-pagination {
    justify-content: center;
    margin-top: 24px;
  }

  /* ─── Arrows: at the 58% mark (junction between image and details) ─── */
  .nm-cat-mobile-arrow {
    display: flex !important;
    position: absolute;
    top: 58%;                    /* Exactly at image/details boundary */
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    color: var(--nm-charcoal);
    font-size: 13px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    outline: none;
    padding: 0;
  }

  .nm-cat-mobile-arrow:active {
    background: white;
    transform: translateY(-50%) scale(0.93);
  }

  .nm-cat-mobile-arrow-prev { left: 14px; }
  .nm-cat-mobile-arrow-next { right: 14px; }
}

/* Slideshow */
.slideshow__title { font-family: 'Cormorant Garamond', Georgia, serif !important; font-weight: 300 !important; }

/* About Us Interactive Enhancements */
.nm-hover-zoom {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 1), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 1) !important;
  will-change: transform, box-shadow;
}
.nm-parallax-container:hover .nm-hover-zoom {
  transform: scale(1.03) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12) !important;
  z-index: 10;
}
.nm-about-text-container p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Fixed Section Title */
.nm-cat-fixed-title {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--nm-coal, #2A2A2A);
  opacity: 0.6;
}

/* Scattered Testimonials Grid Layout */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

.nm-testi-scattered {
  padding: 80px 0;
  overflow: hidden;
}
.nm-testi-scattered-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.nm-testi-mobile-title,
.nm-testi-swipe-indicator {
  display: none !important;
}

.nm-testi-center-card {
  position: absolute !important;
  top: 48% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 30% !important;
  max-width: 420px !important;
  min-height: 220px !important;
  z-index: 5 !important;
  background: #FAF8F3 !important;
  border-radius: 16px !important;
  padding: 35px 24px 24px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
  text-align: center;
  box-sizing: border-box;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.nm-center-card-ribbon {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: #FAF8F3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.02);
  border: 3px solid #FAF8F3;
  z-index: 2;
}

.nm-center-card-ribbon svg {
  width: 28px;
  height: 28px;
}

.nm-center-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 24px !important;
  color: #6a5d58 !important;
  font-weight: 500 !important;
  margin: 0 0 6px 0 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2 !important;
}

.nm-center-card-hearts {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 12px;
  color: #b19e8c;
  font-size: 14px;
}

.nm-center-card-desc {
  font-family: 'Jost', sans-serif !important;
  font-size: 12px !important;
  color: #777 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
.nm-testi-grid {
  position: relative;
  width: 100%;
  height: 980px;
}
.nm-testi-card {
  position: absolute;
  background: #FAF8F3;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  font-family: 'Jost', sans-serif;
  box-sizing: border-box;
}
.nm-stars {
  color: #d8c1ad;
  font-size: 14px;
  display: flex;
  gap: 2px;
}
.nm-star.filled { color: #B5937A; }

.nm-testi-type-card-1 { top: 8%; left: 5%; width: 22%; border-radius: 12px; }
.nm-c1-quote-icon { position: absolute; top: -15px; right: 20px; font-size: 60px; font-family: 'Cormorant Garamond'; color: #6a5d58; line-height: 1; }
.nm-c1-avatar { position: absolute; left: -25px; top: 20px; width: 50px; height: 50px; border-radius: 50%; border: 3px solid #FAF8F3; overflow: hidden; }
.nm-c1-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nm-c1-content { padding-left: 20px; text-align: center; }
.nm-c1-name { font-family: 'Cormorant Garamond'; font-size: 20px; margin-bottom: 5px; }
.nm-c1-content .nm-stars { justify-content: center; margin-bottom: 15px; }
.nm-c1-text { font-size: 11px; color: #888; text-align: center; }

.nm-testi-type-card-2 { top: 3%; left: 35%; width: 25%; border-radius: 20px; padding-top: 50px; text-align: center; }
.nm-c2-avatar-wrapper { position: absolute; top: -40px; left: 50%; transform: translateX(-50%); padding: 6px; background: rgba(255,255,255,0.3); border-radius: 50%; }
.nm-c2-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; border: 4px solid #FAF8F3; }
.nm-c2-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nm-c2-heading { font-family: 'Cormorant Garamond'; font-size: 22px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.nm-c2-stars { justify-content: center; margin-bottom: 15px; }
.nm-c2-text { font-size: 12px; color: #777; margin-bottom: 15px; padding: 0 10px; }
.nm-c2-signature { font-family: 'Dancing Script', cursive; font-size: 24px; color: #6a5d58; }

.nm-testi-type-card-3 { top: 8%; right: 5%; width: 28%; padding: 0; overflow: hidden; border-radius: 12px; }
.nm-c3-header { background: #f0e9e1; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.nm-c3-heading { font-family: 'Cormorant Garamond'; font-size: 18px; font-weight: 600; }
.nm-c3-username { font-size: 11px; color: #888; }
.nm-c3-body { padding: 20px; }
.nm-c3-text { font-size: 12px; color: #666; margin-bottom: 15px; }
.nm-c3-footer { display: flex; justify-content: space-between; align-items: center; }
.nm-c3-link { font-size: 10px; font-weight: 600; letter-spacing: 1px; color: #a3958a; text-transform: uppercase; }
.nm-c3-icons { color: #a3958a; font-size: 14px; letter-spacing: 5px; }

.nm-testi-type-card-4 { top: 40%; left: 3%; width: 25%; padding-right: 50px; border-radius: 12px; }
.nm-c4-text { font-size: 13px; color: #666; margin-bottom: 15px; }
.nm-c4-meta { display: flex; justify-content: space-between; align-items: flex-end; }
.nm-c4-name { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; color: #444; }
.nm-c4-username { display: block; font-size: 10px; color: #aaa; margin-top: 2px; }
.nm-c4-avatar { position: absolute; right: -25px; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; border-radius: 50%; overflow: hidden; border: 3px solid #FAF8F3; }
.nm-c4-avatar img { width: 100%; height: 100%; object-fit: cover; }

.nm-testi-type-card-5 { top: 37%; right: 5%; width: 25%; border-radius: 40px 12px 12px 40px; padding: 15px 20px 15px 70px; display: flex; align-items: center; min-height: 80px; }
.nm-c5-avatar { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; overflow: hidden; }
.nm-c5-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nm-c5-name { font-family: 'Cormorant Garamond'; font-size: 16px; margin-bottom: 5px; text-transform: uppercase; }
.nm-c5-text { font-size: 10px; color: #777; margin-bottom: 8px; }
.nm-c5-icon-thumb { position: absolute; right: 20px; top: -15px; width: 35px; height: 35px; background: #9c8474; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; border: 2px solid #FAF8F3; }

.nm-testi-type-card-6 { top: 67%; left: 8%; width: 22%; padding: 0; overflow: hidden; border-radius: 12px; }
.nm-c6-body { padding: 25px 20px; text-align: center; }
.nm-c6-heading { font-family: 'Cormorant Garamond'; font-size: 22px; margin-bottom: 10px; }
.nm-c6-text { font-size: 12px; color: #888; margin-bottom: 15px; }
.nm-c6-stars { justify-content: center; }
.nm-c6-footer { background: #d5c6b9; padding: 15px; display: flex; align-items: center; }
.nm-c6-avatar { width: 35px; height: 35px; border-radius: 50%; overflow: hidden; margin-right: 12px; }
.nm-c6-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nm-c6-name { display: block; font-size: 12px; font-weight: 600; color: #444; }
.nm-c6-username { display: block; font-size: 10px; color: #6a5d58; }

.nm-testi-type-card-7 { top: 71%; left: 31%; width: 22%; border-radius: 20px; padding: 20px 20px 20px 80px; }
.nm-c7-avatar { position: absolute; left: -20px; top: 20px; width: 80px; height: 80px; border-radius: 12px; overflow: hidden; border: 4px solid #d5c6b9; }
.nm-c7-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nm-c7-heading { font-family: 'Cormorant Garamond'; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.nm-c7-text { font-size: 12px; color: #777; margin-bottom: 15px; }
.nm-c7-username { font-size: 11px; color: #999; text-align: right; }
.nm-c7-tail { position: absolute; bottom: -12px; left: 40px; width: 0; height: 0; border-left: 15px solid transparent; border-right: 15px solid transparent; border-top: 15px solid #FAF8F3; }
.nm-c7-rating-pill { position: absolute; bottom: -10px; right: 20px; background: #b19e8c; padding: 4px 12px; border-radius: 20px; }
.nm-c7-rating-pill .nm-star { color: #fff; font-size: 10px; }

.nm-testi-type-card-8 { top: 71%; right: 27%; width: 18%; padding: 0; border-radius: 12px; overflow: hidden; text-align: center; }
.nm-c8-bookmark { position: absolute; top: 0; left: 15px; background: #9a887b; color: #fff; width: 25px; height: 35px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 5px; font-size: 12px; clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%); z-index: 2; }
.nm-c8-image { height: 120px; width: 100%; overflow: hidden; }
.nm-c8-image img { width: 100%; height: 100%; object-fit: cover; }
.nm-c8-content { padding: 20px; }
.nm-c8-heading { font-size: 12px; font-weight: 600; letter-spacing: 1px; margin-bottom: 5px; }
.nm-c8-stars { justify-content: center; margin-bottom: 10px; }
.nm-c8-text { font-size: 10px; color: #888; }

.nm-testi-type-card-9 { top: 64%; right: 3%; width: 22%; border-radius: 20px 20px 0 20px; padding: 25px 30px; }
.nm-c9-quote-marks { position: absolute; bottom: -30px; left: 20px; font-family: 'Cormorant Garamond'; font-size: 80px; color: #a59489; line-height: 1; }
.nm-c9-text { font-size: 13px; color: #666; margin-bottom: 15px; line-height: 1.6; }
.nm-c9-footer { text-align: right; padding-right: 40px; }
.nm-c9-signature { font-family: 'Dancing Script', cursive; font-size: 20px; color: #6a5d58; margin-bottom: 5px; }
.nm-c9-username { font-size: 10px; color: #aaa; }
.nm-c9-avatar { position: absolute; right: -20px; bottom: -20px; width: 60px; height: 60px; border-radius: 50%; overflow: hidden; border: 4px solid #FAF8F3; }
.nm-c9-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Responsive Mobile Layout (Horizontal Swipe Carousel) */
@media (max-width: 991px) {
  .shopify-section.nm-section-testimonials-scattered {
    overflow-x: visible !important;
  }

  .nm-testi-scattered {
    padding: 45px 0 15px !important; /* Reduces vertical blank space on mobile */
  }

  .nm-testi-scattered-inner {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .nm-testi-grid-title {
    display: none !important;
  }

  .nm-testi-center-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: calc(100vw - 48px) !important;
    flex: 0 0 calc(100vw - 48px) !important;
    margin: 0 !important;
    min-height: 0 !important;
    padding: 40px 24px 24px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
    background: #FAF8F3 !important;
    border-radius: 16px !important;
  }

  .nm-testi-mobile-title {
    display: block !important; /* Show mobile title above track */
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    text-align: center !important;
    margin: 0 0 15px 0 !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    font-size: 32px !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 300 !important;
    color: #6a5d58 !important;
    z-index: 2 !important;
  }

  .nm-testi-grid {
    position: static;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important; /* Prevents vertical scroll & layout cutoff */
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar */
    gap: 30px !important; /* Spacious gap between cards */
    padding: 60px 24px 35px !important; /* Reduced bottom padding to bring indicator up */
    height: auto;
    width: 100%;
    box-sizing: border-box;
    align-items: center !important; /* Shorter cards align centered vertically without stretching */
  }

  .nm-testi-grid::-webkit-scrollbar {
    display: none !important;
  }

  .nm-testi-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    flex: 0 0 calc(100vw - 48px) !important; /* Full width minus margins */
    width: calc(100vw - 48px) !important;
    height: auto !important; /* Let card fit its content height */
    min-height: 0 !important;
    scroll-snap-align: center !important;
    transform: none !important;
    margin: 0 !important;
    box-sizing: border-box;
    border-radius: 16px !important;
    overflow: visible !important; /* Ensure absolute avatars/bookmarks render */
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
  }

  /* Prevent elements inside from expanding beyond card bounds */
  .nm-testi-card * {
    max-width: 100% !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* Propagate rounded corners to first and last children to fix flat/bleeding edges */
  .nm-testi-card > :first-child {
    border-top-left-radius: inherit !important;
    border-top-right-radius: inherit !important;
  }
  .nm-testi-card > :last-child {
    border-bottom-left-radius: inherit !important;
    border-bottom-right-radius: inherit !important;
  }

  /* Specific card overrides to maintain padding-less/overflow-hidden designs */
  .nm-testi-type-card-3, .nm-testi-type-card-6, .nm-testi-type-card-8 {
    padding: 0 !important;
    overflow: hidden !important;
  }

  /* Mobile Swipe Indicator */
  .nm-testi-swipe-indicator {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 0px !important;
    color: #6a5d58;
    opacity: 0.65;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }

  .nm-swipe-arrow {
    font-size: 10px;
    font-weight: bold;
    display: inline-block;
  }

  .nm-swipe-arrow-left {
    animation: nm-swipe-left 1.6s infinite ease-in-out;
  }

  .nm-swipe-arrow-right {
    animation: nm-swipe-right 1.6s infinite ease-in-out;
  }

  @keyframes nm-swipe-left {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(-4px); }
  }

  @keyframes nm-swipe-right {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(4px); }
  }

  /* Readability text scaling on mobile */
  .nm-testi-card p,
  .nm-testi-card .nm-c1-text,
  .nm-testi-card .nm-c2-text,
  .nm-testi-card .nm-c3-text,
  .nm-testi-card .nm-c4-text,
  .nm-testi-card .nm-c5-text,
  .nm-testi-card .nm-c6-text,
  .nm-testi-card .nm-c7-text,
  .nm-testi-card .nm-c8-text,
  .nm-testi-card .nm-c9-text {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .nm-testi-card h3,
  .nm-testi-card h4,
  .nm-testi-card .nm-c1-name,
  .nm-testi-card .nm-c2-heading,
  .nm-testi-card .nm-c3-heading,
  .nm-testi-card .nm-c5-name,
  .nm-testi-card .nm-c6-heading,
  .nm-testi-card .nm-c8-heading {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .nm-testi-card .nm-c2-signature,
  .nm-testi-card .nm-c9-signature {
    font-size: 22px !important;
    margin-top: 8px !important;
  }

  .nm-c4-avatar, .nm-c1-avatar {
    left: auto; right: 20px; top: -30px; transform: none;
  }
  .nm-c7-avatar {
    top: -40px; left: 20px;
  }
  .nm-testi-type-card-7 {
    padding: 40px 20px 20px 20px !important;
  }
  .nm-c9-avatar {
    right: 20px; bottom: -30px;
  }
}

/* Custom Grid Promo Card styling */
.nm-promo-card-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
  box-sizing: border-box;
  z-index: 1;
}

.promo-card-grid-item {
  display: flex;
  flex-direction: column;
}

.nm-promo-card-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.nm-promo-card-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.nm-promo-card-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.nm-promo-card-wrapper:hover .nm-promo-card-bg-img img {
  transform: scale(1.05);
}

.nm-promo-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}

.nm-promo-card-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  text-align: left;
}

.nm-promo-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.25;
  color: inherit;
}

.nm-promo-card-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  opacity: 0.95;
  color: inherit;
}

@media screen and (min-width: 750px) {
  .product-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .product-grid > li {
    display: flex;
    flex-direction: column;
  }
  .product-grid > li > * {
    flex: 1 0 auto;
  }
}

/* ============================================================
   MODEL & CUSTOMER TESTIMONIAL SECTION
   ============================================================ */
.nm-split-testimonial-section {
  position: relative;
  overflow: hidden;
}

.nm-testimonial-slider {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.nm-testimonial-slider .swiper-slide {
  height: auto !important;
  display: flex !important;
}

.nm-testimonial-card {
  box-sizing: border-box;
  transition: all 0.3s ease;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  width: 100% !important;
}

.nm-testimonial-card > .row {
  width: 100% !important;
  margin: 0 !important;
}

/* Image Column Styles */
.nm-testimonial-images-wrapper {
  position: relative;
  width: 100%;
}

.nm-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background-color: var(--nm-warm-white);
}

.nm-image-aspect {
  position: relative;
  width: 100%;
}

.nm-image-aspect img,
.nm-image-aspect svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--nm-ease-out);
}

.nm-testimonial-card:hover .nm-image-aspect img {
  transform: scale(1.04);
}

.nm-img-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-family: 'Jost', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nm-mocha);
  padding: 2px 6px;
  border-radius: 1px;
  z-index: 3;
}

/* Option A: Side-by-Side Images */
.nm-testimonial-card.side_by_side .nm-testimonial-images-wrapper {
  display: flex;
  gap: 16px;
}

.nm-testimonial-card.side_by_side .nm-image-box {
  flex: 1;
}

/* Option B: Asymmetrical Collage Images */
.nm-testimonial-card.overlapping .nm-testimonial-images-wrapper {
  padding-bottom: 30px;
  padding-right: 20px;
  min-height: 380px;
}

.nm-testimonial-card.overlapping .nm-model-image {
  width: 70%;
  z-index: 1;
}

.nm-testimonial-card.overlapping .nm-customer-image {
  width: 70%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border: 4px solid #ffffff;
}

/* Content Styling */
.nm-testimonial-content {
  padding: 16px 24px;
}

.nm-testimonial-stars {
  color: var(--nm-mocha);
  font-size: 16px;
  letter-spacing: 2px;
}

.nm-testimonial-quote {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  font-style: italic;
}

.nm-testimonial-author {
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--nm-charcoal);
}

.nm-testimonial-author-sub {
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 300 !important;
  letter-spacing: 0.08em !important;
  color: var(--nm-mocha);
  opacity: 0.85;
}

.nm-testimonial-product-link a {
  font-size: 12px !important;
  color: var(--nm-mocha) !important;
}

.nm-testimonial-slider .swiper-container {
  padding: 10px 4px 20px !important;
  margin: -10px -4px -20px !important;
}

/* Swiper Navigation Custom Layout */
.nm-testimonial-slider .nm-testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--nm-sand);
  color: var(--nm-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--nm-duration-ui) ease;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.nm-testimonial-slider .nm-testimonial-arrow::after {
  font-size: 16px !important;
  font-weight: bold;
}

.nm-testimonial-slider .nm-testimonial-arrow:hover {
  background-color: var(--nm-mocha);
  border-color: var(--nm-mocha);
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.nm-testimonial-slider .nm-testimonial-arrow:hover::after {
  color: #ffffff !important;
}

.nm-testimonial-slider .nm-arrow-prev {
  left: -22px;
}

.nm-testimonial-slider .nm-arrow-next {
  right: -22px;
}

@media (max-width: 991px) {
  .nm-testimonial-slider {
    padding: 0 24px !important;
  }
  
  .nm-testimonial-slider .swiper-container {
    padding: 10px 4px 20px !important;
    margin: -10px -4px -20px !important;
  }
  
  .nm-testimonial-slider .nm-testimonial-arrow {
    display: flex !important;
    width: 36px;
    height: 36px;
  }

  .nm-testimonial-slider .nm-testimonial-arrow::after {
    font-size: 12px !important;
  }

  .nm-testimonial-slider .nm-arrow-prev {
    left: 4px;
  }
  
  .nm-testimonial-slider .nm-arrow-next {
    right: 4px;
  }
  
  .nm-testimonial-card {
    padding: 20px !important;
  }
  
  .nm-testimonial-card.overlapping .nm-testimonial-images-wrapper {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .nm-testimonial-images-col {
    margin-bottom: 24px;
  }
  
  .nm-testimonial-content {
    padding: 8px 4px;
  }

  .nm-testimonial-card.side_by_side .nm-testimonial-images-wrapper {
    gap: 12px;
  }
}

/* Custom Lightbox Modal Styles */
.nm-image-box.nm-lightbox-trigger {
  cursor: zoom-in;
}
.nm-image-box.nm-lightbox-trigger::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.nm-image-box.nm-lightbox-trigger:hover::after {
  opacity: 1;
}

.nm-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.nm-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.nm-lightbox__content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nm-lightbox.active .nm-lightbox__content {
  transform: scale(1);
}

.nm-lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  user-select: none;
}

.nm-lightbox__caption {
  margin-top: 15px;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 16px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Close Button */
.nm-lightbox__close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100000;
}

.nm-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

/* Nav Buttons */
.nm-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100000;
  user-select: none;
}

.nm-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.nm-lightbox__prev {
  left: 30px;
}

.nm-lightbox__next {
  right: 30px;
}

/* Hide navigation buttons if there is only 1 image */
.nm-lightbox.single-image .nm-lightbox__nav {
  display: none;
}

@media (max-width: 768px) {
  .nm-lightbox__close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .nm-lightbox__prev {
    left: 15px;
  }
  .nm-lightbox__next {
    right: 15px;
  }
  .nm-lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .nm-lightbox__image {
    max-height: 70vh;
  }
}



