/* ================================================================
   NurManara Paris - Theme CSS
   "La Lumiere qui Guide l'Elegance"
   CDC Theme NurManara - Complete Implementation
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ---------------------------------------------------------------- */
:root {
  /* Brand Colors (distribution: cream 55%, black 20%, white 10%, beige 7%, gold 5%, taupe 3%) */
  --nm-cream: #F8F5F0;
  --nm-white: #FFFFFF;
  --nm-black: #1A1A1A;
  --nm-gold: #C9A961;
  --nm-gold-dark: #B8963F;
  --nm-beige: #E8DED1;
  --nm-beige-dark: #C4B5A2;          /* Darker beige for visible borders on cream/white */
  --nm-taupe: #6F5B3F;               /* Darkened from #8B7355 for WCAG AA on cream (5:1) */

  /* Functional Colors */
  --nm-error: #C47171;
  --nm-success: #9CAF88;
  --nm-info: #A8D5D8;

  /* Collection Accent Colors */
  --nm-rose-aurore: #E8C4C4;
  --nm-lavande: #B8A9C9;
  --nm-terracotta: #D4A574;
  --nm-bleu-celadon: #A8D5D8;
  --nm-gris-perle: #C5C6C8;

  /* Typography Stacks */
  --nm-font-heading: "Cormorant Garamond", Georgia, serif;
  --nm-font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --nm-font-arabic: "Aref Ruqaa", serif;

  /* Spacing System (8px base) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 120px;

  /* Section Gap (responsive via media queries) */
  --nm-section-gap: var(--space-3xl);

  /* Container */
  --nm-container-max: 1280px;
  --nm-container-margin: 80px;
  --nm-gutter: 30px;

  /* Transitions */
  --nm-transition: 0.3s ease;
  --nm-transition-slow: 0.5s ease;
  --nm-transition-section: 0.6s ease-out;

  /* Borders */
  --nm-border-gold: 1px solid var(--nm-gold);
  --nm-border-light: 1px solid var(--nm-beige-dark);

  /* Bootstrap Overrides */
  --bs-body-bg: var(--nm-cream);
  --bs-body-color: var(--nm-black);
  --bs-body-font-family: var(--nm-font-body);
  --bs-body-font-size: 15px;
  --bs-body-line-height: 1.7;
  --bs-link-color: var(--nm-black);
  --bs-link-hover-color: var(--nm-gold);
  --bs-border-color: var(--nm-beige);
  --bs-primary: var(--nm-black);
  --bs-primary-rgb: 26, 26, 26;
}

/* ----------------------------------------------------------------
   2. RESET & BASE STYLES
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--nm-cream);
  color: var(--nm-black);
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@keyframes nm-page-load {
  from { opacity: 0; }
  to { opacity: 1; }
}

::selection {
  background-color: var(--nm-gold);
  color: var(--nm-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--nm-black);
  text-decoration: none;
  transition: color var(--nm-transition);
}

a:hover {
  color: var(--nm-gold);
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ----------------------------------------------------------------
   3. CONTAINER SYSTEM
   ---------------------------------------------------------------- */
.nm-container {
  max-width: var(--nm-container-max);
  margin: 0 auto;
  padding: 0 var(--nm-container-margin);
}

.nm-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--nm-container-margin);
}

/* Container uses .container from Bootstrap as fallback */
.container {
  max-width: var(--nm-container-max);
  padding-left: var(--nm-container-margin);
  padding-right: var(--nm-container-margin);
}

/* ----------------------------------------------------------------
   4. TYPOGRAPHY
   ---------------------------------------------------------------- */

/* Headings: Cormorant Garamond */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--nm-font-heading);
  color: var(--nm-black);
}

/* H1: Cormorant Garamond Light (300), 56-72px desktop, line-height 1.1 */
h1, .h1 {
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

/* H2: Cormorant Garamond Regular (400), 36-48px desktop, line-height 1.2 */
h2, .h2 {
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* H3: Cormorant Garamond Medium (500), 24-30px desktop, line-height 1.3 */
h3, .h3 {
  font-weight: 500;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

/* H4 (labels / sur-titres): Montserrat Medium (500), 11-13px, uppercase */
h4, .h4,
.nm-surtitre {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: clamp(11px, 1vw, 13px);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--nm-taupe);
}

/* Body text: Montserrat Light (300), 15-16px, line-height 1.7 */
p {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  color: var(--nm-black);
}

/* Body regular weight */
.nm-body-regular {
  font-weight: 400;
}

/* Navigation text: Montserrat Regular (400), 12-13px, uppercase */
.nm-nav-text {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: clamp(12px, 0.9vw, 13px);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Meta/Caption: Montserrat Light (300), 12-13px */
.nm-meta,
.nm-caption {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: clamp(12px, 0.9vw, 13px);
  color: var(--nm-taupe);
}

/* Accent decorative: Cormorant Garamond Italic (400i) */
.nm-accent-text {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-style: italic;
}

/* Arabic accent text */
.nm-arabic {
  font-family: var(--nm-font-arabic);
  font-style: normal;
}

/* Text color utilities */
.text-secondary,
.text-muted {
  color: var(--nm-taupe) !important;
}

.nm-gold-text {
  color: var(--nm-gold);
}

/* Gold line separator */
.nm-separator {
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--nm-gold);
  margin: var(--space-md) auto;
}

.nm-separator--left {
  margin-left: 0;
  margin-right: auto;
}

/* Section titles */
.nm-section-title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--nm-black);
}

.nm-section-subtitle {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--nm-taupe);
  margin-bottom: var(--space-lg);
}

/* Islamic Geometric Pattern Overlay (CDC 6.4)
   Usage: add class .nm-pattern-bg to any section
   Renders pattern-geometric.svg at 5% opacity as ::after pseudo-element */
.nm-pattern-bg {
  position: relative;
}
.nm-pattern-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/pattern-geometric.svg');
  background-repeat: repeat;
  background-size: 120px 120px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.nm-pattern-bg > * {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------- */

/* Primary Button: bg #1A1A1A, text #F8F5F0, no border-radius */
.btn-primary,
.btn.btn-primary {
  background-color: var(--nm-black) !important;
  color: var(--nm-cream) !important;
  border: none !important;
  border-radius: 0;
  padding: 16px 40px;
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.4;
  transition: background-color var(--nm-transition), color var(--nm-transition);
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-primary:hover,
.btn.btn-primary:hover,
.btn-primary:focus,
.btn.btn-primary:focus {
  background-color: var(--nm-gold) !important;
  color: var(--nm-black) !important;
}

/* Secondary Button: transparent bg, border 1px solid #1A1A1A */
.btn-secondary,
.btn.btn-secondary,
.btn-outline-primary,
.btn.btn-outline-primary {
  background-color: transparent !important;
  color: var(--nm-black) !important;
  border: 1px solid var(--nm-black) !important;
  border-radius: 0;
  padding: 14px 38px;
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.4;
  transition: background-color var(--nm-transition), color var(--nm-transition);
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-secondary:hover,
.btn.btn-secondary:hover,
.btn-outline-primary:hover,
.btn.btn-outline-primary:hover,
.btn-secondary:focus,
.btn.btn-secondary:focus {
  background-color: var(--nm-beige) !important;
  border-color: var(--nm-black) !important;
  color: var(--nm-black) !important;
}

/* CTA Gold Button: bg #C9A961, text #1A1A1A */
.btn-cta,
.add-to-cart,
.btn.add-to-cart {
  background-color: var(--nm-gold) !important;
  color: var(--nm-black) !important;
  border: 1px solid var(--nm-gold) !important;
  border-radius: 0;
  padding: 16px 48px;
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.4;
  transition: background-color var(--nm-transition), color var(--nm-transition);
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-cta:hover,
.add-to-cart:hover,
.btn.add-to-cart:hover,
.btn-cta:focus,
.add-to-cart:focus {
  background-color: var(--nm-gold-dark) !important;
  border-color: var(--nm-gold-dark) !important;
  color: var(--nm-black) !important;
}

/* Text/Link Button: transparent, underline offset 4px */
.btn-link,
.nm-text-link {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--nm-black);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  cursor: pointer;
  transition: color var(--nm-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-link:hover,
.nm-text-link:hover {
  color: var(--nm-gold);
  text-decoration: underline;
}

.btn-link .nm-arrow,
.nm-text-link .nm-arrow {
  display: inline-block;
  transition: transform var(--nm-transition);
}

.btn-link:hover .nm-arrow,
.nm-text-link:hover .nm-arrow {
  transform: translateX(4px);
}

/* Small button variant */
.btn-sm {
  padding: 8px 24px;
  font-size: 11px;
}

/* ----------------------------------------------------------------
   6. HEADER
   ---------------------------------------------------------------- */

/* Announcement Bar: 36px height, bg #1A1A1A, closeable */
.nm-announcement-bar {
  background-color: var(--nm-black);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nm-announcement-bar__text {
  color: var(--nm-cream);
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.nm-announcement-bar__text a {
  color: var(--nm-cream);
}

.nm-announcement-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--nm-cream);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity var(--nm-transition);
}

.nm-announcement-bar__close:hover {
  opacity: 1;
}

.nm-announcement-bar__separator {
  color: var(--nm-gold);
  margin: 0 12px;
}

/* Header top bar (secondary nav) */
.header__banner {
  background-color: var(--nm-black);
  color: var(--nm-cream);
  height: 36px;
  display: flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 2px;
  text-align: center;
}

.header__banner a {
  color: var(--nm-cream);
}

/* Nav top row */
.nm-nav-top {
  border-bottom: var(--nm-border-light);
  padding: 6px 0;
}

.nm-nav-top__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nm-nav-top__left,
.nm-nav-top__right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nm-nav-top a {
  font-size: 11px;
  color: var(--nm-taupe);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.nm-nav-top a:hover {
  color: var(--nm-gold);
}

/* Header Main: 80px height, bg #F8F5F0 */
.header {
  background-color: var(--nm-cream);
  transition: all var(--nm-transition);
}

.header-top {
  background-color: var(--nm-cream);
  border-bottom: var(--nm-border-light);
  padding: 6px 0;
}

.header-top a,
.header-top .header-block__action-btn {
  color: var(--nm-taupe);
  font-family: var(--nm-font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color var(--nm-transition);
}

.header-top a:hover,
.header-top .header-block__action-btn:hover {
  color: var(--nm-gold);
}

/* Header bottom (logo + nav + icons) */
.nm-header-main {
  height: 80px;
  display: flex;
  align-items: center;
  background-color: var(--nm-cream);
  border-bottom: var(--nm-border-light);
}

.header-bottom {
  background-color: var(--nm-cream);
  height: 80px;
  display: flex;
  align-items: center;
}

.nm-header-main__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  height: 100%;
}

/* Logo: SVG center, height 48px */
.nm-header-main__logo {
  flex: 0 0 auto;
  text-align: center;
  order: 2;
}

.nm-logo {
  max-height: 48px;
  width: auto;
  transition: opacity var(--nm-transition);
}

.nm-logo:hover {
  opacity: 0.85;
}

/* Square logo: NurManara's square format logo */
.nm-logo--square {
  max-height: 60px;
  max-width: 60px;
  width: auto;
  object-fit: contain;
}

/* Footer logo: inverted (white) on dark background */
.nm-logo--footer {
  max-height: 56px;
  max-width: 56px;
  filter: brightness(0) invert(1);
}

/* Mobile menu logo */
.nm-logo--mobile-menu {
  max-height: 40px;
  max-width: 40px;
}

.header-bottom .logo img {
  max-height: 48px;
  width: auto;
}

/* Logo text fallback */
.nm-logo-text {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--nm-black);
  display: block;
  line-height: 1;
}

.nm-logo-subtext {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--nm-taupe);
  display: block;
  margin-top: 2px;
}

.nm-logo-fallback {
  text-decoration: none;
  display: inline-block;
}

.nm-logo-fallback:hover .nm-logo-text {
  color: var(--nm-gold);
}

/* Nav left */
.nm-header-main__nav {
  flex: 1;
  order: 1;
  display: flex;
  align-items: center;
}

/* Actions right */
.nm-header-main__actions {
  flex: 1;
  order: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nm-header-action {
  display: flex;
  align-items: center;
}

.nm-header-action__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--nm-black);
  transition: color var(--nm-transition);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
}

.nm-header-action__btn:hover {
  color: var(--nm-gold);
}

.nm-header-action__btn .material-icons {
  font-size: 20px;
}

/* Navigation Links: Montserrat Regular (400), 12-13px, uppercase, +2px ls */
#_desktop_top_menu .top-menu,
.top-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#_desktop_top_menu .top-menu a,
.top-menu > li > a {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: clamp(12px, 0.9vw, 13px);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-black);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color var(--nm-transition);
}

/* Nav hover underline from CENTER using scaleX */
#_desktop_top_menu .top-menu a::after,
.top-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--nm-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--nm-transition);
}

#_desktop_top_menu .top-menu a:hover::after,
.top-menu > li > a:hover::after,
#_desktop_top_menu .top-menu a.active::after,
.top-menu > li > a.active::after {
  transform: scaleX(1);
}

#_desktop_top_menu .top-menu a:hover,
.top-menu > li > a:hover {
  color: var(--nm-gold);
}

/* Header icons */
.header-block__action-btn {
  color: var(--nm-black);
  transition: color var(--nm-transition);
}

.header-block__action-btn:hover {
  color: var(--nm-gold);
}

.header-block__icon {
  font-size: 20px;
}

/* Cart badge */
.header-block__badge {
  background-color: var(--nm-gold);
  color: var(--nm-black);
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Sticky header: bg white + box-shadow */
.header.js-sticky-header.is-sticky,
.nm-header-main.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: var(--nm-white);
  box-shadow: 0 1px 0 var(--nm-beige);
}

/* Search bar */
.search-widget input[type="text"],
.search-widget input[type="search"] {
  border: var(--nm-border-light);
  border-radius: 0;
  background-color: var(--nm-white);
  font-family: var(--nm-font-body);
  font-size: 13px;
  font-weight: 300;
  padding: 10px 16px;
  transition: border-color var(--nm-transition);
}

.search-widget input[type="text"]:focus,
.search-widget input[type="search"]:focus {
  border-color: var(--nm-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

/* Mobile header */
.nm-header-main__mobile-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 991px) {
  .nm-header-main__row {
    position: relative;
  }

  .nm-header-main__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    order: 2;
  }

  .nm-header-main__mobile-actions {
    order: 3;
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  .nm-header-main__nav {
    flex: 1;
  }

  .nm-header-main__logo {
    flex: 0 0 auto;
    padding: 0 32px;
  }

  .nm-header-main__actions {
    flex: 1;
  }
}

/* Hamburger button (mobile < lg) */
.nm-hamburger-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--nm-black);
  transition: color var(--nm-transition);
}

.nm-hamburger-btn:hover {
  color: var(--nm-gold);
}

.nm-hamburger-icon {
  font-size: 22px;
  line-height: 1;
}

/* Header hamburger zone */
.nm-header-main__hamburger {
  display: flex;
  align-items: center;
  order: 1;
}

/* Desktop nav links list */
.nm-header-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nm-header-nav-list a {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: clamp(12px, 0.9vw, 13px);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-black);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color var(--nm-transition);
}

.nm-header-nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--nm-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--nm-transition);
}

.nm-header-nav-list a:hover::after {
  transform: scaleX(1);
}

.nm-header-nav-list a:hover {
  color: var(--nm-gold);
}

/* Journal text link in header actions */
.nm-header-action--journal .nm-header-action__link {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: clamp(12px, 0.9vw, 13px);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-black);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color var(--nm-transition);
}

.nm-header-action--journal .nm-header-action__link:hover {
  color: var(--nm-gold);
}

/* Cart badge (NurManara custom) */
.nm-header-action__badge {
  background-color: var(--nm-gold);
  color: var(--nm-black);
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
}

/* Mobile menu offcanvas */
.nm-mobile-menu {
  background-color: var(--nm-cream);
  max-width: 320px;
}

.nm-mobile-menu .offcanvas-header {
  border-bottom: var(--nm-border-light);
  padding: var(--space-md) var(--space-md);
}

.nm-mobile-menu .offcanvas-body {
  padding: var(--space-md);
}

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

.nm-mobile-nav-list li {
  border-bottom: var(--nm-border-light);
}

.nm-mobile-nav-list a {
  display: block;
  padding: var(--space-sm) 0;
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-black);
  text-decoration: none;
  transition: color var(--nm-transition);
}

.nm-mobile-nav-list a:hover {
  color: var(--nm-gold);
}

.nm-mobile-nav-account {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: var(--nm-border-light);
}

.nm-mobile-nav-account a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--nm-black);
  text-decoration: none;
  transition: color var(--nm-transition);
}

.nm-mobile-nav-account a:hover {
  color: var(--nm-gold);
}

.nm-mobile-nav-account .material-icons {
  font-size: 20px;
}

/* ----------------------------------------------------------------
   7. HOMEPAGE - HERO SECTION (100vh)
   ---------------------------------------------------------------- */
.nm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--nm-black);
  overflow: hidden;
}

.nm-hero__bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nm-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Overlay: gradient black 40% at bottom */
.nm-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.05) 0%,
    rgba(26, 26, 26, 0.15) 50%,
    rgba(26, 26, 26, 0.4) 100%
  );
}

.nm-hero__content {
  position: relative;
  z-index: 2;
  padding: 32px;
  max-width: 700px;
}

/* "NurManara Paris": Cormorant Garamond Light 14px uppercase, +5px ls, WHITE */
.nm-hero__surtitre {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--nm-white);
  margin-bottom: var(--space-md);
}

/* Hero title: Cormorant Garamond Regular 56px desktop / 32px mobile, WHITE */
.nm-hero__title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--nm-white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: 0;
}

/* CTA: Secondary button style in WHITE */
.nm-hero__cta {
  display: inline-block;
  background-color: transparent;
  color: var(--nm-white);
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 38px;
  border: 1px solid var(--nm-white);
  border-radius: 0;
  transition: background-color var(--nm-transition), color var(--nm-transition);
  text-decoration: none;
}

.nm-hero__cta:hover {
  background-color: var(--nm-white);
  color: var(--nm-black);
}

/* Scroll indicator: animated bounce arrow at bottom 40px */
.nm-hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--nm-white);
  font-size: 24px;
  animation: nm-bounce 2s ease infinite;
  opacity: 0.7;
}

@keyframes nm-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ----------------------------------------------------------------
   8. HOMEPAGE - BRAND INTRO
   ---------------------------------------------------------------- */
.nm-brand-intro {
  padding: var(--nm-section-gap) 0;
  text-align: center;
  background-color: var(--nm-cream);
}

/* Text: Cormorant Garamond Italic 28px, center, max-width 680px */
.nm-brand-intro__text {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.6;
  color: var(--nm-black);
}

/* Link: text button with arrow */
.nm-brand-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-md);
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--nm-black);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color var(--nm-transition);
}

.nm-brand-intro__link:hover {
  color: var(--nm-gold);
}

.nm-brand-intro__link .nm-arrow {
  display: inline-block;
  transition: transform var(--nm-transition);
}

.nm-brand-intro__link:hover .nm-arrow {
  transform: translateX(4px);
}

/* ----------------------------------------------------------------
   9. HOMEPAGE - FEATURED PRODUCTS
   ---------------------------------------------------------------- */
.nm-featured {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-white);
}

/* Title layout: sur-titre + titre LEFT, "Voir tout" RIGHT, same line */
.nm-featured__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.nm-featured__header-left {
  text-align: left;
}

.nm-featured__header-left .nm-surtitre {
  margin-bottom: 8px;
}

.nm-featured__title {
  margin-bottom: 0;
  text-align: left;
}

.nm-featured__voir-tout {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--nm-black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--nm-transition);
  white-space: nowrap;
}

.nm-featured__voir-tout:hover {
  color: var(--nm-gold);
}

.nm-featured__voir-tout .nm-arrow {
  transition: transform var(--nm-transition);
}

.nm-featured__voir-tout:hover .nm-arrow {
  transform: translateX(4px);
}

/* PrestaShop featured products module override */
.featured-products .products-section-title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  text-align: left;
}

/* ----------------------------------------------------------------
   10. HOMEPAGE - COLLECTION PHARE (Jardin d'Orient)
   ---------------------------------------------------------------- */
.nm-collection-phare {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-cream);
}

/* Layout: 60% image LEFT, 40% text RIGHT (asymmetric) */
.nm-collection-phare__grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
}

/* Image: arch shape top, aspect-ratio 3:4 */
.nm-collection-phare__image-col {
  overflow: hidden;
}

.nm-collection-phare__image-wrapper {
  overflow: hidden;
  height: 100%;
}

.nm-collection-phare__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border-radius: 200px 200px 0 0;
}

.nm-collection-phare__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
}

/* Title: Cormorant Garamond 48px #1A1A1A */
.nm-collection-phare__title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.2;
  color: var(--nm-black);
  margin-bottom: 20px;
}

/* Text: Montserrat Light 15px, max-width 400px */
.nm-collection-phare__desc {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--nm-black);
  max-width: 400px;
  margin-bottom: var(--space-md);
}

/* CTA: secondary button */
.nm-collection-phare__cta {
  align-self: flex-start;
}

/* ----------------------------------------------------------------
   11. HOMEPAGE - LES GAMMES (3 Arches)
   ---------------------------------------------------------------- */
.nm-gammes {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-white);
}

.nm-gammes__title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.nm-gammes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--nm-gutter);
}

.nm-gammes__card {
  text-align: center;
  text-decoration: none;
  color: var(--nm-black);
}

.nm-gammes__card-image-wrapper {
  overflow: hidden;
  border-radius: 200px 200px 0 0;
  margin-bottom: var(--space-md);
}

.nm-gammes__card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform var(--nm-transition-slow);
}

/* Hover: scale(1.03) on image */
.nm-gammes__card:hover .nm-gammes__card-image {
  transform: scale(1.03);
}

/* Gamme card content wrapper */
.nm-gammes__card-content {
  padding-top: var(--space-sm);
}

/* Gamme name: Cormorant Garamond 24px */
.nm-gammes__card-name {
  font-family: var(--nm-font-heading);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: var(--nm-black);
  margin-bottom: 8px;
}

/* Price "des XX EUR": Montserrat Light 14px, #8B7355 */
.nm-gammes__card-price {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--nm-taupe);
  margin-bottom: 12px;
}

/* CTA: "Decouvrir" text link */
.nm-gammes__card-link {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--nm-black);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color var(--nm-transition);
}

.nm-gammes__card:hover .nm-gammes__card-link {
  color: var(--nm-gold);
}

/* ----------------------------------------------------------------
   12. HOMEPAGE - SAVOIR-FAIRE
   ---------------------------------------------------------------- */
.nm-savoir-faire {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-beige);
}

/* Layout REVERSE: text LEFT, image RIGHT */
.nm-savoir-faire__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 500px;
}

.nm-savoir-faire__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
  order: 1;
}

.nm-savoir-faire__image-col {
  order: 2;
  overflow: hidden;
}

.nm-savoir-faire__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nm-savoir-faire__title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  color: var(--nm-black);
  margin-bottom: 20px;
}

.nm-savoir-faire__desc {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--nm-black);
  margin-bottom: var(--space-md);
}

/* Materials with gold dot separator */
.nm-savoir-faire__materials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-md);
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--nm-black);
}

.nm-savoir-faire__materials span:not(.nm-savoir-faire__dot) {
  padding: 0 12px;
}

.nm-savoir-faire__materials span:first-child {
  padding-left: 0;
}

.nm-savoir-faire__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--nm-gold);
  display: inline-block;
  flex-shrink: 0;
}

/* Legacy quality section mapping */
.nm-quality {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-beige);
}

.nm-quality__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 500px;
}

.nm-quality__image-wrapper {
  overflow: hidden;
}

.nm-quality__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nm-quality__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
  background-color: var(--nm-beige);
}

.nm-quality__content h2 {
  margin-bottom: var(--space-md);
}

.nm-quality__content p {
  color: var(--nm-black);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* ----------------------------------------------------------------
   13. HOMEPAGE - INSTAGRAM FEED
   ---------------------------------------------------------------- */
.nm-instagram {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-white);
  text-align: center;
}

/* Title: @nurmanaparis in Cormorant Garamond Italic 28px */
.nm-instagram__handle {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  color: var(--nm-black);
  margin-bottom: 8px;
}

.nm-instagram__subtitle {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--nm-taupe);
  margin-bottom: var(--space-lg);
}

/* 6 square photos in tight grid (gap 4px) */
.nm-instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.nm-instagram__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}

.nm-instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--nm-transition-slow);
}

/* Hover: overlay black 30% + Instagram icon centered white */
.nm-instagram__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.3);
  opacity: 0;
  transition: opacity var(--nm-transition);
}

.nm-instagram__item:hover::after {
  opacity: 1;
}

.nm-instagram__item:hover img {
  transform: scale(1.03);
}

.nm-instagram__item-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--nm-white);
  font-size: 28px;
  opacity: 0;
  transition: opacity var(--nm-transition);
}

.nm-instagram__item:hover .nm-instagram__item-overlay {
  opacity: 1;
}

/* ----------------------------------------------------------------
   14. HOMEPAGE - COLLECTIONS PREVIEW
   ---------------------------------------------------------------- */
.nm-collections {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-white);
}

.nm-collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--nm-gutter);
}

.nm-collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.nm-collection-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--nm-transition-slow);
}

.nm-collection-card:hover .nm-collection-card__image {
  transform: scale(1.03);
}

.nm-collection-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.6) 0%, transparent 100%);
  color: var(--nm-white);
}

.nm-collection-card__name {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: var(--nm-white);
}

.nm-collection-card__tagline {
  font-family: var(--nm-font-body);
  font-size: 13px;
  font-weight: 300;
  opacity: 0.8;
  color: var(--nm-white);
}

/* ----------------------------------------------------------------
   15. HOMEPAGE - REASSURANCE STRIP
   ---------------------------------------------------------------- */
.nm-reassurance {
  padding: var(--space-lg) 0;
  background-color: var(--nm-white);
  border-top: var(--nm-border-light);
  border-bottom: var(--nm-border-light);
}

.nm-reassurance__grid {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  text-align: center;
}

.nm-reassurance__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.nm-reassurance__icon {
  color: var(--nm-gold);
  font-size: 24px;
}

.nm-reassurance__text {
  font-family: var(--nm-font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--nm-black);
}

.nm-reassurance__subtext {
  font-family: var(--nm-font-body);
  font-size: 11px;
  color: var(--nm-taupe);
  font-weight: 300;
}

/* ----------------------------------------------------------------
   16. PRODUCT CARDS
   ---------------------------------------------------------------- */
.product-miniature,
.js-product-miniature {
  border: none;
  background: transparent;
  margin-bottom: var(--space-md);
  transition: box-shadow var(--nm-transition);
  position: relative;
  border-radius: 0;
}

/* Hover: box-shadow on card */
.product-miniature:hover {
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.08);
}

.product-miniature .thumbnail-container,
.product-miniature .product-thumbnail {
  position: relative;
  overflow: hidden;
  background-color: var(--nm-white);
  border-radius: 0;
}

/* Image ratio: aspect-ratio 4/5 (portrait) */
.product-miniature .thumbnail-container,
.product-miniature .product-thumbnail {
  aspect-ratio: 4 / 5;
}

.product-miniature .thumbnail-container img,
.product-miniature .product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--nm-transition-slow);
}

/* Hover: scale(1.03) on image */
.product-miniature:hover .thumbnail-container img,
.product-miniature:hover .product-thumbnail img {
  transform: scale(1.03);
}

/* Wishlist heart: position absolute top-right 16px */
.product-miniature .wishlist-button-add,
.product-miniature .nm-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
}

.wishlist-button-add .material-icons {
  transition: color var(--nm-transition);
}

.wishlist-button-add:hover .material-icons {
  color: var(--nm-gold);
}

/* Badge NEW: Montserrat 10px uppercase, bg #1A1A1A text #F8F5F0 */
.product-flag {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 12px;
  border-radius: 0;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.product-flag.new {
  background-color: var(--nm-black);
  color: var(--nm-cream);
}

.product-flag.on-sale,
.product-flag.discount {
  background-color: var(--nm-gold);
  color: var(--nm-black);
}

/* Collection label: Montserrat Light 11px, #8B7355, margin-top 12px */
.product-miniature .nm-collection-label,
.product-miniature .product-category {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 11px;
  color: var(--nm-taupe);
  margin-top: 12px;
  display: block;
}

/* Product name: Cormorant Garamond 18px, #1A1A1A, margin-top 4px */
.product-miniature .product-title {
  font-family: var(--nm-font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  margin-top: 4px;
  margin-bottom: 0;
}

.product-miniature .product-title a {
  color: var(--nm-black);
  text-decoration: none;
}

.product-miniature .product-title a:hover {
  color: var(--nm-gold);
}

/* Price: Montserrat Regular 16px, #1A1A1A, margin-top 8px (CDC: 16-18px) */
.product-miniature .product-price-and-shipping .price,
.product-miniature .price {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--nm-black);
  margin-top: 8px;
  display: block;
}

.product-miniature .regular-price {
  color: var(--nm-taupe);
  text-decoration: line-through;
  font-size: 13px;
}

/* Quick view */
.quick-view {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-black);
}

/* ----------------------------------------------------------------
   17. ARCH SHAPES
   ---------------------------------------------------------------- */
.nm-arch {
  border-radius: 200px 200px 0 0;
}

/* ----------------------------------------------------------------
   18. PRODUCT PAGE
   ---------------------------------------------------------------- */
.product__left-column {
  padding-right: 32px;
}

.product__right-column {
  padding-left: 32px;
}

/* Product title */
.product-detail h1,
.product__name {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

/* Product price: Montserrat Regular, 16-18px */
.product__price,
.product-prices .current-price-value {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--nm-black);
}

/* Product description tabs */
.product-tabs .nav-tabs {
  border-bottom: var(--nm-border-light);
}

.product-tabs .nav-tabs .nav-link {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-taupe);
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 12px 24px;
  transition: all var(--nm-transition);
}

.product-tabs .nav-tabs .nav-link:hover,
.product-tabs .nav-tabs .nav-link.active {
  color: var(--nm-black);
  border-bottom-color: var(--nm-gold);
  background: none;
}

/* Product gallery */
.product-images__slider img {
  cursor: zoom-in;
}

/* Product variants (color, size) */
.product-variants .color,
.product-variants .input-color {
  border: 2px solid transparent;
  border-radius: 50%;
  transition: border-color var(--nm-transition);
}

.product-variants .color:hover,
.product-variants .input-color:hover,
.product-variants .color.selected,
.product-variants .input-color.selected {
  border-color: var(--nm-gold);
}

/* Quantity selector */
.product-quantity .qty .input-group {
  border: var(--nm-border-light);
  border-radius: 0;
}

.product-quantity .qty input {
  border: none;
  text-align: center;
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 14px;
}

/* Product additional info */
.product-additional-info {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--nm-taupe);
}

/* ----------------------------------------------------------------
   18b. PRODUCT PAGE — NurManara Overrides (CDC Section 10)
   ---------------------------------------------------------------- */

/* Product page wrapper */
.nm-product {
  padding: var(--space-lg) 0;
}

.nm-product__row {
  display: flex;
  flex-wrap: wrap;
}

/* Gallery column: 60% on desktop */
.nm-product__gallery {
  padding-right: 40px;
}

/* Info column: 40% on desktop */
.nm-product__info {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
}

/* Collection label above product name */
.nm-product__collection {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--nm-taupe);
}

/* Product name: Cormorant Garamond 36px */
.nm-product__name {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
  color: var(--nm-black);
}

/* Ratings container */
.nm-product__ratings {
  margin-bottom: var(--space-sm);
}

.nm-product__ratings .star-content .star-full,
.nm-product__ratings .star-content .material-icons {
  color: var(--nm-gold);
}

/* Fractional payment note */
.nm-product__installment {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--nm-taupe);
  margin-top: 4px;
  margin-bottom: var(--space-sm);
}

/* Short description */
.nm-product__description-short {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--nm-black);
  margin-bottom: var(--space-md);
}

/* Wishlist link */
.nm-product__wishlist {
  margin-top: var(--space-sm);
  text-align: center;
}

.nm-product__wishlist a,
.nm-product__wishlist button {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--nm-taupe);
  text-decoration: underline;
  text-underline-offset: 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--nm-transition);
}

.nm-product__wishlist a:hover,
.nm-product__wishlist button:hover {
  color: var(--nm-gold);
}

/* Reassurance block — inline with product info */
.nm-product__reassurance {
  border: var(--nm-border-light);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.nm-product__reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--nm-taupe);
}

.nm-product__reassurance-item i {
  font-size: 20px;
  color: var(--nm-gold);
  flex-shrink: 0;
}

.nm-product__reassurance-item + .nm-product__reassurance-item {
  border-top: 1px solid var(--nm-beige);
}

/* --- Product Tabs Section --- */
.nm-product-tabs {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--nm-beige);
}

.nm-product-tabs__nav {
  border-bottom: 1px solid var(--nm-beige-dark);
  gap: 0;
  margin-bottom: var(--space-lg);
}

.nm-product-tabs__nav .nav-link {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-taupe);
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 12px 24px;
  background: none;
  transition: all var(--nm-transition);
}

.nm-product-tabs__nav .nav-link:hover,
.nm-product-tabs__nav .nav-link.active {
  color: var(--nm-black);
  border-bottom-color: var(--nm-gold);
  background: none;
}

.nm-product-tabs__body {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--nm-black);
  max-width: 800px;
  padding: var(--space-sm) 0;
}

.nm-product-tabs__extra {
  margin-top: var(--space-md);
}

/* --- "L'Histoire de ce Motif" Section --- */
.nm-product-histoire {
  background-color: var(--nm-cream);
  padding: var(--space-xl) 0;
}

.nm-product-histoire__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.nm-product-histoire__image-wrapper {
  border-radius: 50% 50% 0 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.nm-product-histoire__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nm-product-histoire__text-col {
  padding: var(--space-lg) 0;
}

.nm-product-histoire__title {
  font-family: var(--nm-font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.4;
  color: var(--nm-black);
  margin-bottom: var(--space-sm);
}

.nm-product-histoire__body {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--nm-black);
}

.nm-product-histoire__body p {
  margin-bottom: var(--space-sm);
}

/* --- Cross-sell / "Vous Aimerez Aussi" Section --- */
.nm-product-crosssell {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--nm-beige);
}

.nm-product-crosssell__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.nm-product-crosssell__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: 1px;
  margin-top: var(--space-xs);
}

/* Accessories product grid: 4 columns */
.nm-product-crosssell .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* ----------------------------------------------------------------
   18c. PRODUCT PAGE — Responsive (mobile-first adjustments)
   ---------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .nm-product__gallery,
  .nm-product__info {
    padding-left: 0;
    padding-right: 0;
  }

  .nm-product__gallery {
    margin-bottom: var(--space-md);
  }

  .nm-product-histoire__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .nm-product-histoire__image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .nm-product-crosssell .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .nm-product-tabs__nav .nav-link {
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 575.98px) {
  .nm-product-tabs__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nm-product-tabs__nav::-webkit-scrollbar {
    display: none;
  }

  .nm-product-tabs__nav .nav-link {
    white-space: nowrap;
    padding: 10px 12px;
    font-size: 10px;
  }

  .nm-product-histoire__grid {
    gap: var(--space-md);
  }
}

/* ----------------------------------------------------------------
   19. CATEGORY / LISTING PAGE
   ---------------------------------------------------------------- */

/* Category header */
.block-category {
  text-align: center;
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-lg);
}

.block-category h1 {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  letter-spacing: 1px;
}

.block-category .block-category-description {
  max-width: 600px;
  margin: var(--space-sm) auto 0;
  color: var(--nm-taupe);
  font-size: 15px;
  line-height: 1.7;
}

/* Faceted search / filters */
.faceted-search .facet-title {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-black);
}

/* Sorting */
.products-sort-order .select-title {
  border: var(--nm-border-light);
  border-radius: 0;
  font-family: var(--nm-font-body);
  font-size: 13px;
}

/* Product grid: responsive columns */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* Pagination */
.pagination .page-link {
  font-family: var(--nm-font-body);
  font-size: 13px;
  color: var(--nm-black);
  border: none;
  border-radius: 0;
  padding: 8px 16px;
  transition: all var(--nm-transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background-color: var(--nm-black);
  color: var(--nm-cream);
}

/* ----------------------------------------------------------------
   19b. CATEGORY LISTING — NurManara Collection Page (CDC Section 9)
   ---------------------------------------------------------------- */

/* --- Category Header Banner --- */
.nm-category-header {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--nm-cream);
  overflow: hidden;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--nm-beige);
}

.nm-category-header__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.nm-category-header__surtitre {
  display: block;
  margin-bottom: var(--space-xs);
}

.nm-category-header__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: 1px;
  color: var(--nm-black);
  margin: 0 0 var(--space-sm);
}

.nm-category-header__description {
  max-width: 600px;
  margin: 0 auto var(--space-sm);
  color: var(--nm-taupe);
  font-family: var(--nm-font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.nm-category-header__count {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--nm-taupe);
  margin: var(--space-sm) 0 0;
  letter-spacing: 0.5px;
}

/* Cover image (behind content, decorative) */
.nm-category-header__cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
}

.nm-category-header__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Subcategories section --- */
.nm-subcategories {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--nm-beige);
}

/* --- Sticky Toolbar (filter/sort bar) --- */
.nm-toolbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--nm-white);
  border-bottom: 1px solid var(--nm-beige);
  padding: var(--space-sm) 0;
}

.nm-toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--nm-container-max);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.nm-toolbar__count-text {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--nm-taupe);
  margin: 0;
  letter-spacing: 0.5px;
}

.nm-toolbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nm-toolbar__sort {
  display: flex;
  align-items: center;
}

/* Filter toggle button */
.nm-btn-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--nm-beige-dark);
  border-radius: 0;
  background: transparent;
  padding: 8px 16px;
  font-family: var(--nm-font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-black);
  transition: all var(--nm-transition);
  cursor: pointer;
}

.nm-btn-filter:hover {
  border-color: var(--nm-gold);
  color: var(--nm-gold);
}

.nm-btn-filter__icon {
  font-size: 18px;
}

/* --- Active Filters --- */
.nm-active-filters {
  padding: 0 var(--space-sm);
}

.nm-active-filters .active_filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: var(--space-xs) 0;
  margin: 0;
}

.nm-active-filters .filter-block {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--nm-beige);
  border: none;
  border-radius: 0;
  padding: 6px 14px;
  font-family: var(--nm-font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--nm-black);
  letter-spacing: 0.5px;
}

.nm-active-filters .filter-block .close,
.nm-active-filters .filter-block a {
  color: var(--nm-taupe);
  text-decoration: none;
  transition: color var(--nm-transition);
}

.nm-active-filters .filter-block a:hover {
  color: var(--nm-black);
}

/* --- Product Grid Wrapper --- */
.nm-product-grid {
  padding: var(--space-md) 0;
}

/* --- Load More Button --- */
.nm-listing-bottom {
  padding: var(--space-lg) 0;
}

.nm-load-more {
  text-align: center;
  margin-bottom: var(--space-md);
}

.nm-load-more__btn {
  display: inline-block;
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--nm-black);
  background: transparent;
  border: 1px solid var(--nm-black);
  border-radius: 0;
  padding: 14px 48px;
  transition: all var(--nm-transition);
  text-decoration: none;
}

.nm-load-more__btn:hover {
  background-color: var(--nm-black);
  color: var(--nm-cream);
}

/* Pagination below load-more (secondary navigation) */
.nm-pagination {
  margin-top: var(--space-md);
}

.nm-pagination .pagination-container {
  justify-content: center;
}

.nm-pagination .pagination-number {
  text-align: center;
}

/* --- Category Footer (SEO text) --- */
.nm-category-footer {
  padding: var(--space-lg) 0;
}

.nm-category-footer__seo {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--nm-beige);
  font-family: var(--nm-font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--nm-taupe);
}

/* --- Mobile: Category header 200px --- */
@media (max-width: 767.98px) {
  .nm-category-header {
    min-height: 200px;
    padding: var(--space-lg) var(--space-sm);
  }

  .nm-category-header__title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .nm-toolbar__inner {
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .nm-toolbar__count {
    order: 2;
    width: 100%;
  }

  .nm-toolbar__actions {
    order: 1;
    width: 100%;
    justify-content: space-between;
  }

  .nm-btn-filter__label {
    display: inline;
  }
}

/* --- Tablet: adjustments --- */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .nm-category-header {
    min-height: 250px;
  }
}

/* ----------------------------------------------------------------
   20. CART & CHECKOUT
   ---------------------------------------------------------------- */
.cart-grid {
  background-color: var(--nm-white);
}

.cart-summary {
  background-color: var(--nm-cream);
  border: var(--nm-border-light);
  padding: var(--space-md);
}

.cart-summary .cart-summary-line {
  font-family: var(--nm-font-body);
  font-size: 14px;
}

.cart-summary .cart-total .label,
.cart-summary .cart-total .value {
  font-weight: 600;
  font-size: 16px;
}

/* Cart items */
.cart-item {
  border-bottom: var(--nm-border-light);
  padding: var(--space-md) 0;
}

.cart-item .product-line-info .label {
  font-family: var(--nm-font-heading);
  font-weight: 500;
  font-size: 16px;
}

.cart-item .product-line-info .value {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--nm-taupe);
}

/* Checkout steps */
.checkout-step .step-title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 1px;
}

.checkout-step .step-number {
  background-color: var(--nm-black);
  color: var(--nm-cream);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nm-font-body);
  font-size: 13px;
  font-weight: 500;
  margin-right: 12px;
}

/* Checkout payment / delivery options */
.payment-option label,
.delivery-option label {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 14px;
}

/* Order confirmation */
.order-confirmation__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  text-align: center;
  margin-bottom: var(--space-md);
}

/* ----------------------------------------------------------------
   21. FORMS
   ---------------------------------------------------------------- */
.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
  border: 1px solid var(--nm-beige);
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 14px;
  background-color: var(--nm-white);
  color: var(--nm-black);
  transition: border-color var(--nm-transition), box-shadow var(--nm-transition);
}

/* Focus: border-color gold, box-shadow ring */
.form-control:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: var(--nm-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
  outline: none;
}

/* Placeholder: #8B7355, Montserrat Light 14px */
.form-control::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--nm-taupe);
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 14px;
}

/* Label: Montserrat Medium 11px uppercase, +2px ls, #8B7355, margin-bottom 8px */
label {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-taupe);
  margin-bottom: 8px;
  display: block;
}

/* Checkbox & radio custom styling */
.custom-checkbox input[type="checkbox"],
.custom-radio input[type="radio"] {
  accent-color: var(--nm-gold);
}

/* ----------------------------------------------------------------
   22. FOOTER - NEWSLETTER
   ---------------------------------------------------------------- */

/* Newsletter: bg #F8F5F0 — override Hummingbird .footer h2/h4 white text */
.nm-footer-newsletter {
  background-color: var(--nm-cream);
  padding: var(--space-2xl) 0;
  text-align: center;
  color: var(--nm-black);
}

.footer .nm-footer-newsletter h2,
.footer .nm-footer-newsletter h4 {
  color: inherit;
}

.nm-footer-newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
}

/* "REJOIGNEZ LA LUMIERE": H4 style */
.nm-footer-newsletter__surtitre {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--nm-taupe);
  margin-bottom: 12px;
}

/* "Recevez nos nouveautes et inspirations": Cormorant Garamond 36px */
.nm-footer-newsletter__title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  color: var(--nm-black);
  margin-bottom: var(--space-md);
}

/* Form container */
.nm-footer-newsletter__form {
  max-width: 500px;
  margin: var(--space-md) auto 0;
}

/* Input + button row */
.nm-footer-newsletter__form-row {
  display: flex;
  gap: 0;
}

.nm-footer-newsletter__input {
  flex: 1;
  border: 1px solid var(--nm-beige);
  border-right: none;
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--nm-font-body);
  font-size: 14px;
  font-weight: 300;
  background-color: var(--nm-white);
  color: var(--nm-black);
  transition: border-color var(--nm-transition);
}

.nm-footer-newsletter__input:focus {
  outline: none;
  border-color: var(--nm-gold);
}

.nm-footer-newsletter__input::placeholder {
  color: var(--nm-taupe);
  font-weight: 300;
}

.nm-footer-newsletter__btn {
  background-color: var(--nm-black);
  color: var(--nm-cream);
  border: 1px solid var(--nm-black);
  border-radius: 0;
  padding: 14px 32px;
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color var(--nm-transition), color var(--nm-transition);
}

.nm-footer-newsletter__btn:hover {
  background-color: var(--nm-gold);
  border-color: var(--nm-gold);
  color: var(--nm-black);
}

/* "-10% sur votre premiere commande": Montserrat Light 12px, taupe */
.nm-footer-newsletter__subtext {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--nm-taupe);
  margin-top: var(--space-sm);
}

/* Gold separator line after newsletter before footer columns */
.nm-footer-newsletter__separator {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--nm-gold);
  margin-top: var(--space-2xl);
}

/* ----------------------------------------------------------------
   23. FOOTER - MAIN
   ---------------------------------------------------------------- */
.nm-footer-main {
  background-color: var(--nm-black);
  padding: var(--space-xl) 0 var(--space-md);
  color: var(--nm-cream);
}

.nm-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.nm-footer-col--brand .nm-logo-text {
  color: var(--nm-cream);
  font-size: 24px;
}

.nm-footer-col--brand .nm-logo-subtext {
  color: rgba(248, 245, 240, 0.7);
}

.nm-footer-col__baseline {
  font-family: var(--nm-font-heading);
  font-style: italic;
  font-size: 13px;
  color: rgba(248, 245, 240, 0.7);
  margin-top: 12px;
  margin-bottom: 0;
}

.nm-footer-col h4 {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--nm-cream);
  margin-bottom: var(--space-md);
}

.nm-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nm-footer-col li {
  margin-bottom: 10px;
}

.nm-footer-col a {
  color: rgba(248, 245, 240, 0.75);
  font-size: 13px;
  font-weight: 300;
  transition: color var(--nm-transition);
}

.nm-footer-col a:hover {
  color: var(--nm-gold);
}

/* Footer social links */
.nm-footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.nm-footer-social a {
  color: rgba(248, 245, 240, 0.7);
  font-size: 18px;
  transition: color var(--nm-transition);
}

.nm-footer-social a:hover {
  color: var(--nm-gold);
}

.nm-social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

/* Footer legacy PrestaShop hooks */
.footer__before {
  background-color: var(--nm-cream);
  padding: var(--space-xl) 0;
}

.footer__main {
  background-color: var(--nm-black);
  color: var(--nm-cream);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__main a {
  color: rgba(248, 245, 240, 0.7);
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 13px;
  transition: color var(--nm-transition);
}

.footer__main a:hover {
  color: var(--nm-gold);
}

.footer__main h4,
.footer__main .h4,
.footer__main .block-title {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--nm-cream);
  margin-bottom: var(--space-md);
}

.footer__main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__main li {
  margin-bottom: 10px;
}

/* Footer newsletter (PS module) */
.footer .email-subscription,
.footer .block_newsletter {
  max-width: 400px;
}

.footer .email-subscription input,
.footer .block_newsletter input[type="email"] {
  background-color: transparent;
  border: 1px solid rgba(248, 245, 240, 0.4);
  border-radius: 0;
  color: var(--nm-cream);
  font-family: var(--nm-font-body);
  font-size: 13px;
  padding: 12px 16px;
}

.footer .email-subscription input::placeholder,
.footer .block_newsletter input::placeholder {
  color: rgba(248, 245, 240, 0.6);
}

.footer .email-subscription input:focus,
.footer .block_newsletter input:focus {
  border-color: var(--nm-gold);
  outline: none;
  box-shadow: none;
}

.footer .email-subscription button,
.footer .block_newsletter button {
  background-color: var(--nm-gold);
  color: var(--nm-black);
  border: none;
  border-radius: 0;
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 24px;
  transition: all var(--nm-transition);
}

.footer .email-subscription button:hover,
.footer .block_newsletter button:hover {
  background-color: var(--nm-cream);
  color: var(--nm-black);
}

/* Footer copyright */
.footer .copyright {
  border-top: 1px solid rgba(248, 245, 240, 0.2);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  text-align: center;
  font-size: 11px;
  color: rgba(248, 245, 240, 0.6);
}

.footer .copyright a {
  color: rgba(248, 245, 240, 0.6);
}

.footer .copyright a:hover {
  color: var(--nm-gold);
}

/* Social follow links */
.social-follow {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.social-follow a {
  color: rgba(248, 245, 240, 0.7);
  font-size: 20px;
  transition: color var(--nm-transition);
}

.social-follow a:hover {
  color: var(--nm-gold);
}

/* Footer legal */
.nm-footer-legal {
  border-top: 1px solid rgba(248, 245, 240, 0.2);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
}

.nm-footer-legal__copyright {
  font-size: 11px;
  color: rgba(248, 245, 240, 0.6);
  margin: 0;
}

.nm-footer-legal__links {
  display: flex;
  gap: var(--space-md);
}

.nm-footer-legal__links a {
  font-size: 11px;
  color: rgba(248, 245, 240, 0.6);
}

.nm-footer-legal__links a:hover {
  color: var(--nm-gold);
}

/* Footer legal row layout */
.nm-footer-legal__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Payment icons */
.nm-footer-legal__payments {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nm-payment-icon {
  height: 24px;
  width: auto;
  color: rgba(248, 245, 240, 0.6);
  transition: opacity var(--nm-transition);
}

.nm-payment-icon:hover {
  opacity: 0.8;
}

/* Legal separator */
.nm-footer-legal__sep {
  color: rgba(248, 245, 240, 0.35);
  margin: 0 4px;
}

/* Footer tagline */
.nm-footer-legal__tagline {
  width: 100%;
  text-align: center;
  margin-top: var(--space-sm);
  font-family: var(--nm-font-heading);
  font-style: italic;
  font-size: 12px;
  color: rgba(248, 245, 240, 0.6);
}

.nm-footer-legal__tagline em {
  font-style: italic;
}

/* Footer logo link */
.nm-footer-logo {
  text-decoration: none;
  display: inline-block;
}

.nm-footer-logo:hover .nm-logo-text {
  color: var(--nm-gold);
}

/* ----------------------------------------------------------------
   24. HOMEPAGE - NEWSLETTER CTA (inline section)
   ---------------------------------------------------------------- */
.nm-newsletter {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-cream);
  text-align: center;
}

.nm-newsletter__content {
  max-width: 500px;
  margin: 0 auto;
}

.nm-newsletter__form {
  display: flex;
  gap: 0;
  margin-top: var(--space-md);
}

.nm-newsletter__input {
  flex: 1;
  border: 1px solid var(--nm-beige);
  border-right: none;
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--nm-font-body);
  font-size: 14px;
  font-weight: 300;
  background-color: var(--nm-white);
  color: var(--nm-black);
  transition: border-color var(--nm-transition);
}

.nm-newsletter__input:focus {
  outline: none;
  border-color: var(--nm-gold);
}

.nm-newsletter__input::placeholder {
  color: var(--nm-taupe);
}

.nm-newsletter__submit {
  background-color: var(--nm-black);
  color: var(--nm-cream);
  border: 1px solid var(--nm-black);
  border-radius: 0;
  padding: 14px 32px;
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color var(--nm-transition), color var(--nm-transition);
}

.nm-newsletter__submit:hover {
  background-color: var(--nm-gold);
  border-color: var(--nm-gold);
  color: var(--nm-black);
}

/* ----------------------------------------------------------------
   25. BREADCRUMB
   ---------------------------------------------------------------- */
.breadcrumb {
  background: none;
  padding: var(--space-sm) 0;
  font-size: 12px;
  font-family: var(--nm-font-body);
  font-weight: 300;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: var(--nm-taupe);
}

.breadcrumb a:hover {
  color: var(--nm-gold);
}

.breadcrumb .breadcrumb-item.active {
  color: var(--nm-black);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: var(--nm-beige-dark);
}

/* ----------------------------------------------------------------
   26. ALERTS & NOTIFICATIONS
   ---------------------------------------------------------------- */
.alert {
  border-radius: 0;
  font-family: var(--nm-font-body);
  font-size: 14px;
  padding: 14px 16px;
}

.alert-success {
  background-color: rgba(156, 175, 136, 0.15);
  border: 1px solid var(--nm-success);
  color: var(--nm-black);
}

.alert-warning {
  background-color: rgba(201, 169, 97, 0.15);
  border: 1px solid var(--nm-gold);
  color: var(--nm-black);
}

.alert-danger {
  background-color: rgba(196, 113, 113, 0.15);
  border: 1px solid var(--nm-error);
  color: var(--nm-black);
}

.alert-info {
  background-color: rgba(168, 213, 216, 0.15);
  border: 1px solid var(--nm-info);
  color: var(--nm-black);
}

/* ----------------------------------------------------------------
   27. PAGE 404
   ---------------------------------------------------------------- */
.nm-404 {
  text-align: center;
  padding: var(--space-3xl) 0;
  background-color: var(--nm-cream);
}

/* "404" in Cormorant Garamond 120px, color #E8DED1 */
.nm-404__number {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(80px, 10vw, 120px);
  color: var(--nm-beige);
  line-height: 1;
  margin-bottom: var(--space-md);
}

/* Poetic text in Cormorant Garamond Italic 24px */
.nm-404__text {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--nm-black);
  max-width: 500px;
  margin: 0 auto var(--space-lg);
  line-height: 1.5;
}

/* CTA to homepage */
.nm-404__cta {
  display: inline-block;
}

/* PrestaShop 404 page override */
#pagenotfound .page-not-found {
  text-align: center;
  padding: var(--space-3xl) 0;
}

#pagenotfound h1 {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(80px, 10vw, 120px);
  color: var(--nm-beige);
  line-height: 1;
}

/* ----------------------------------------------------------------
   28. ANIMATIONS (CDC Section 17)
   ---------------------------------------------------------------- */

/* Sections scroll: IntersectionObserver class */
.section--reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--nm-transition-section), transform var(--nm-transition-section);
}

.section--reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in on page load */
@keyframes nm-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nm-animate-in {
  animation: nm-fade-in 0.6s ease-out forwards;
}

/* Staggered fade in — triggered only when parent section becomes visible */
.nm-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.section--reveal.is-visible .nm-stagger > * {
  opacity: 1;
  transform: translateY(0);
}

.section--reveal.is-visible .nm-stagger > *:nth-child(1) { transition-delay: 0.1s; }
.section--reveal.is-visible .nm-stagger > *:nth-child(2) { transition-delay: 0.2s; }
.section--reveal.is-visible .nm-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.section--reveal.is-visible .nm-stagger > *:nth-child(4) { transition-delay: 0.4s; }
.section--reveal.is-visible .nm-stagger > *:nth-child(5) { transition-delay: 0.5s; }
.section--reveal.is-visible .nm-stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* ----------------------------------------------------------------
   29. PREFERS-REDUCED-MOTION: Disable ALL animations
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body {
    animation: none;
    opacity: 1;
  }

  .section--reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nm-animate-in {
    animation: none;
    opacity: 1;
  }

  .nm-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nm-hero__scroll-indicator {
    animation: none;
  }
}

/* ----------------------------------------------------------------
   30. UTILITY CLASSES
   ---------------------------------------------------------------- */
.nm-bg-cream { background-color: var(--nm-cream); }
.nm-bg-beige { background-color: var(--nm-beige); }
.nm-bg-black { background-color: var(--nm-black); }
.nm-bg-white { background-color: var(--nm-white); }
.nm-bg-gold { background-color: var(--nm-gold); }

.nm-text-cream { color: var(--nm-cream); }
.nm-text-taupe { color: var(--nm-taupe); }
.nm-text-gold { color: var(--nm-gold); }
.nm-text-black { color: var(--nm-black); }
.nm-text-white { color: var(--nm-white); }

.nm-text-center { text-align: center; }
.nm-text-left { text-align: left; }
.nm-text-right { text-align: right; }

.nm-mt-xs { margin-top: var(--space-xs); }
.nm-mt-sm { margin-top: var(--space-sm); }
.nm-mt-md { margin-top: var(--space-md); }
.nm-mt-lg { margin-top: var(--space-lg); }
.nm-mt-xl { margin-top: var(--space-xl); }

.nm-mb-xs { margin-bottom: var(--space-xs); }
.nm-mb-sm { margin-bottom: var(--space-sm); }
.nm-mb-md { margin-bottom: var(--space-md); }
.nm-mb-lg { margin-bottom: var(--space-lg); }
.nm-mb-xl { margin-bottom: var(--space-xl); }

.nm-pt-xs { padding-top: var(--space-xs); }
.nm-pt-sm { padding-top: var(--space-sm); }
.nm-pt-md { padding-top: var(--space-md); }
.nm-pt-lg { padding-top: var(--space-lg); }
.nm-pt-xl { padding-top: var(--space-xl); }

.nm-pb-xs { padding-bottom: var(--space-xs); }
.nm-pb-sm { padding-bottom: var(--space-sm); }
.nm-pb-md { padding-bottom: var(--space-md); }
.nm-pb-lg { padding-bottom: var(--space-lg); }
.nm-pb-xl { padding-bottom: var(--space-xl); }

.nm-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----------------------------------------------------------------
   31. PRESTASHOP MODULE OVERRIDES
   ---------------------------------------------------------------- */

/* Blockreassurance */
.blockreassurance {
  border: none;
}

.blockreassurance-item {
  padding: var(--space-sm);
  border: none;
}

.blockreassurance-item img {
  filter: sepia(50%) hue-rotate(10deg) saturate(50%);
}

/* Image slider / carousel */
.carousel .carousel-caption {
  font-family: var(--nm-font-heading);
}

/* Featured products module */
.featured-products .products-section-title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

/* Product comments */
.product-comment-list-item .comment-author {
  font-weight: 500;
}

.product-comment-list-item .star-content .star-full {
  color: var(--nm-gold);
}

/* Wishlist module */
.wishlist-button-add {
  background: none;
  border: none;
}

/* Contact form */
.contact-form label {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-taupe);
}

/* My account */
.my-account .links a {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--nm-black);
  border: var(--nm-border-light);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--nm-transition);
}

.my-account .links a:hover {
  border-color: var(--nm-gold);
  color: var(--nm-gold);
}

.my-account .links a .material-icons {
  color: var(--nm-gold);
}

/* PS modal */
.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  border-bottom: var(--nm-border-light);
}

.modal-footer {
  border-top: var(--nm-border-light);
}

/* ----------------------------------------------------------------
   32. RESPONSIVE - MOBILE FIRST
   ---------------------------------------------------------------- */

/* Mobile: max-width 767px */
@media (max-width: 767px) {
  /* Section gap: 64px mobile */
  :root {
    --nm-section-gap: var(--space-xl);
    --nm-container-margin: 20px;
    --nm-gutter: 16px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Hero: 80vh mobile */
  .nm-hero {
    min-height: 80vh;
  }

  .nm-hero__surtitre {
    font-size: 12px;
    letter-spacing: 4px;
  }

  /* Typography mobile sizes */
  h1, .h1 { font-size: clamp(36px, 8vw, 44px); }
  h2, .h2 { font-size: clamp(28px, 6vw, 36px); }
  h3, .h3 { font-size: clamp(20px, 4vw, 24px); }

  p {
    font-size: 14px;
  }

  /* Quality / savoir-faire: stack vertically */
  .nm-quality__grid,
  .nm-savoir-faire__grid {
    grid-template-columns: 1fr;
  }

  .nm-quality__content,
  .nm-savoir-faire__text-col {
    padding: var(--space-lg) 20px;
  }

  .nm-savoir-faire__text-col { order: 2; }
  .nm-savoir-faire__image-col { order: 1; }

  /* Collection phare: stack */
  .nm-collection-phare__grid {
    grid-template-columns: 1fr;
  }

  .nm-collection-phare__text-col {
    padding: var(--space-lg) 20px;
  }

  /* Collections: 1 column */
  .nm-collections__grid {
    grid-template-columns: 1fr;
  }

  /* Gammes: 1 column */
  .nm-gammes__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Product grid: 2 cols mobile (gap 12px) */
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Featured products header: stack */
  .nm-featured__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  /* Instagram: 3 cols on mobile */
  .nm-instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Newsletter form: stack */
  .nm-newsletter__form,
  .nm-footer-newsletter__form-row {
    flex-direction: column;
  }

  .nm-newsletter__input,
  .nm-footer-newsletter__input {
    border-right: 1px solid var(--nm-beige);
  }

  /* Reassurance: stack */
  .nm-reassurance__grid {
    flex-direction: column;
    gap: var(--space-md);
  }

  /* Product page: remove padding, stack columns */
  .product__left-column,
  .product__right-column {
    padding: 0;
  }

  .product__left-column {
    margin-bottom: var(--space-md);
  }

  /* Product tabs: accordion-friendly on mobile */
  .product-tabs .nav-tabs .nav-link {
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  /* Add-to-cart full width on mobile */
  .product-add-to-cart .add-to-cart,
  .product-add-to-cart .btn.add-to-cart {
    padding: 14px 24px;
    font-size: 11px;
  }

  /* Product reassurance compact on mobile */
  .product-reassurance {
    padding: var(--space-sm);
  }

  /* CMS pages responsive */
  .page-cms #content {
    padding: var(--space-lg) 0;
  }

  .page-cms #content h1 {
    margin-bottom: var(--space-md);
  }

  /* Breadcrumb compact */
  .breadcrumb {
    font-size: 10px;
    padding: 8px 0;
  }

  /* Footer grid: 1 column */
  .nm-footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .nm-footer-social {
    justify-content: center;
  }

  .nm-footer-legal {
    text-align: center;
  }

  .nm-footer-legal__row {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .nm-footer-legal__links {
    justify-content: center;
  }

  .footer__main {
    padding: var(--space-xl) 0 var(--space-md);
  }

  /* Brand intro */
  .nm-brand-intro__text {
    font-size: 20px;
  }

  /* Buttons responsive */
  .btn-primary,
  .btn.btn-primary,
  .btn-cta,
  .add-to-cart,
  .btn.add-to-cart {
    padding: 14px 32px;
    font-size: 11px;
  }

  .btn-secondary,
  .btn.btn-secondary {
    padding: 12px 30px;
    font-size: 11px;
  }
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Section gap: 96px tablet */
  :root {
    --nm-section-gap: var(--space-2xl);
    --nm-container-margin: 40px;
    --nm-gutter: 20px;
  }

  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  /* Collections: 2 columns */
  .nm-collections__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gammes: 3 columns */
  .nm-gammes__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Product grid: 3 cols tablet (gap 20px) */
  .products {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Collection phare: stack or adjust */
  .nm-collection-phare__grid {
    grid-template-columns: 50% 50%;
  }

  /* Instagram: 6 cols */
  .nm-instagram__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  /* Footer: 2 columns */
  .nm-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  /* Product page: reduce column padding on tablet */
  .product__left-column {
    padding-right: 16px;
  }

  .product__right-column {
    padding-left: 16px;
  }

  /* CMS pages: less side padding on tablet */
  .page-cms #content {
    padding: var(--space-lg) 20px;
  }
}

/* Laptop: 1024px - 1279px */
@media (min-width: 1024px) and (max-width: 1279px) {
  :root {
    --nm-container-margin: 60px;
    --nm-gutter: 24px;
  }

  .container {
    padding-left: 60px;
    padding-right: 60px;
  }

  /* Product grid: 4 cols desktop (gap 30px) */
  .products {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* Desktop: 1280px+ */
@media (min-width: 1280px) {
  /* Section gap: 120px desktop */
  :root {
    --nm-section-gap: var(--space-3xl);
    --nm-container-margin: 80px;
    --nm-gutter: 30px;
  }

  .container {
    padding-left: 80px;
    padding-right: 80px;
  }

  /* Product grid: 4 cols desktop (gap 30px) */
  .products {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .nm-collections__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Instagram: 6 cols */
  .nm-instagram__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Large desktop: 1440px+ */
@media (min-width: 1440px) {
  .nm-container,
  .container {
    max-width: 1280px;
  }
}

/* Mobile products horizontal scroll variant */
@media (max-width: 767px) {
  .nm-products-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: var(--space-sm);
  }

  .nm-products-scroll > * {
    scroll-snap-align: start;
    flex: 0 0 calc(50% - 6px);
    min-width: calc(50% - 6px);
  }

  .nm-products-scroll::-webkit-scrollbar {
    display: none;
  }
}

/* ================================================================
   34. HUMMINGBIRD PARENT THEME OVERRIDES
   Complete override system for PrestaShop 9 Hummingbird parent theme.
   Targets real rendered HTML classes from modules and parent templates.
   ================================================================ */

/* --- 34.1 Global wrapper / layout overrides --- */
#wrapper {
  background-color: var(--nm-cream);
  padding-top: 0;
}

#wrapper .container {
  max-width: var(--nm-container-max);
}

/* Remove default page wrapper padding on homepage */
.page-index #wrapper {
  padding: 0;
}

.page-index #content-wrapper {
  padding: 0;
}

/* --- 34.2 Header module overrides --- */

/* Hide hummingbird's default main-menu in header (we use our own nav) */
.nm-header-main__nav .main-menu,
.nm-header-main__nav #top-menu {
  display: none;
}

/* displayTop hook renders ps_mainmenu, ps_searchbar inside our nav - hide them */
.nm-header-main__nav > .main-menu,
.nm-header-main__nav > #_desktop_search {
  display: none;
}

/* Hide searchbar rendered by displayTop inside our desktop nav */
.nm-header-main__nav #_desktop_search {
  display: none;
}

/* Fix ps_customersignin module rendering inside our action slot */
.nm-header-action #_desktop_user_info {
  display: contents;
}

.nm-header-action .user-info {
  display: contents;
}

.nm-header-action .header-block {
  display: contents;
}

/* Style the module's action button to match our icons */
.nm-header-action .header-block__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nm-black);
  text-decoration: none;
  padding: 0;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
}

.nm-header-action .header-block__action-btn:hover {
  color: var(--nm-gold);
}

/* Hide "Connexion" text, show only icon */
.nm-header-action .header-block__title {
  display: none !important;
}

.nm-header-action .header-block__icon {
  font-size: 24px;
}

/* When module renders, hide our fallback button */
.nm-header-action .header-block ~ .nm-header-action__btn--fallback {
  display: none;
}

/* Fix ps_shoppingcart module rendering */
.nm-header-action #_desktop_cart {
  display: contents;
}

.nm-header-action .blockcart {
  display: contents;
}

.nm-header-action .blockcart .header-block__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  position: relative;
}

/* Cart badge */
.nm-header-action .header-block__badge {
  position: absolute;
  top: 4px;
  right: 0;
  min-width: 18px;
  height: 18px;
  font-family: var(--nm-font-body);
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  color: var(--nm-cream);
  background-color: var(--nm-gold);
  border-radius: 50%;
  padding: 0 4px;
}

/* Hide "Panier" text in cart module */
.nm-header-action .blockcart .header-block__title {
  display: none !important;
}

/* Announcement bar style (hummingbird .header__banner) */
.header__banner {
  display: none;
}

/* Hide hummingbird's nav-top row hooks if they duplicate our custom header */
.nm-nav-top .language-selector__wrapper,
.nm-nav-top .currency-selector__wrapper {
  display: none;
}

/* --- 34.3 Featured Products / New Products module overrides --- */

/* Fix nested container: the module adds its own .container inside ours */
.nm-featured .featured-products > .container,
.nm-featured .new-products > .container {
  max-width: 100%;
  padding: 0;
}

/* Hide duplicate module section titles (we have our own) */
.nm-featured .featured-products > .container > .section-title,
.nm-featured .new-products > .container > .section-title,
.nm-featured .featured-products > .container > .h2,
.nm-featured .new-products > .container > .h2 {
  display: none;
}

/* Hide "Tous les produits" link at bottom of featured module */
.nm-featured .featured-products-footer,
.nm-featured .new-products-footer {
  display: none;
}

/* Override .products.row from Bootstrap flexbox to CSS Grid */
.nm-featured .products.row,
.products.row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin: 0;
  padding: 0;
}

/* Remove Bootstrap column classes on product articles */
.products.row > .product-miniature {
  max-width: 100%;
  flex: none;
  width: 100%;
  padding: 0;
}

/* --- 34.4 Product Card (hummingbird .card structure) --- */

/* Reset Bootstrap .card */
.product-miniature .card {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: box-shadow var(--nm-transition);
}

.product-miniature:hover .card {
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.08);
}

/* Product image container */
.product-miniature__image-container,
.product-miniature .thumbnail-container {
  position: relative;
  overflow: hidden;
  background-color: var(--nm-white);
  border-radius: 0;
  aspect-ratio: 4 / 5;
}

.product-miniature__image,
.product-miniature .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--nm-transition-slow);
}

.product-miniature:hover .product-miniature__image,
.product-miniature:hover .card-img-top {
  transform: scale(1.03);
}

/* Product info area */
.product-miniature__infos,
.product-miniature .card-body {
  padding: 16px 0 0 0;
  background: transparent;
}

/* Product title */
.product-miniature__title {
  font-family: var(--nm-font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--nm-black);
  margin: 0;
}

.product-miniature__infos__top a {
  color: var(--nm-black);
  text-decoration: none;
}

.product-miniature__infos__top a:hover {
  color: var(--nm-gold);
}

/* Product price (CDC: 16-18px) */
.product-miniature__price {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--nm-black);
}

.product-miniature__prices {
  margin-top: 8px;
}

/* Badges */
.product-miniature .product-flags {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-miniature .badge {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 12px;
  border-radius: 0;
  display: inline-block;
}

.product-miniature .badge.new {
  background-color: var(--nm-black);
  color: var(--nm-cream);
}

.product-miniature .badge.on-sale,
.product-miniature .badge.discount {
  background-color: var(--nm-gold);
  color: var(--nm-black);
}

/* Hide quickview button on homepage cards (keep clean look) */
.product-miniature__quickview {
  display: none;
}

.product-miniature__quickview_touch {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--nm-transition);
  z-index: 3;
}

.product-miniature:hover .product-miniature__quickview_touch {
  opacity: 1;
}

/* Hide add-to-cart form on listing cards (keep clean, boutique feel) */
.product-miniature .card-body > form,
.product-miniature__infos > form {
  display: none;
}

/* Hide variants area on listing */
.product-miniature__variants {
  display: none;
}

/* Hide review stars on listing */
.product-list-reviews {
  display: none;
}

/* Hide discount percentage badge area when empty */
.product-miniature__discount-price:empty {
  display: none;
}

/* --- 34.5 Footer module overrides --- */

/* Hide hummingbird's footer blocks rendered via displayFooter hook */
.nm-footer-main + .footer,
.nm-footer-main ~ .footer {
  display: none;
}

/* Style PS footer if it renders separately */
.footer {
  background-color: var(--nm-black);
  color: var(--nm-cream);
}

.footer .footer__block {
  display: none;
}

.footer .footer__block__title {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-cream);
}

/* --- 34.6 Search offcanvas overrides --- */

/* Fix search widget in offcanvas */
#searchCanvas #_desktop_search,
#searchCanvas #_mobile_search #_desktop_search {
  display: flex !important;
  width: 100%;
  max-width: 100%;
  order: 0;
  margin: 0;
}

#searchCanvas .search-widgets {
  width: 100%;
}

#searchCanvas .search-widgets form {
  display: flex;
  align-items: center;
  width: 100%;
}

#searchCanvas .js-search-input {
  flex: 1;
  border: none;
  border-bottom: 1px solid var(--nm-beige);
  border-radius: 0;
  padding: 12px 0;
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 16px;
  background: transparent;
  color: var(--nm-black);
}

#searchCanvas .js-search-input:focus {
  outline: none;
  border-bottom-color: var(--nm-gold);
}

/* --- 34.7 Mobile Menu overrides --- */

/* ps_mainmenu renders inside displayTop hook - hide in mobile menu offcanvas */
#mobileMenuCanvas .main-menu {
  display: none;
}

/* --- 34.8 Wishlist module button override --- */
.product-miniature .wishlist-button-add {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--nm-transition);
  cursor: pointer;
}

.product-miniature:hover .wishlist-button-add {
  opacity: 1;
}

.product-miniature .wishlist-button-add .material-icons {
  font-size: 20px;
  color: var(--nm-black);
  transition: color var(--nm-transition);
}

.product-miniature .wishlist-button-add:hover .material-icons {
  color: var(--nm-gold);
}

/* --- 34.9 Responsive grid overrides --- */
@media (max-width: 1199.98px) {
  .nm-featured .products.row,
  .products.row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .nm-featured .products.row,
  .products.row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .product-miniature__title {
    font-size: 15px;
  }

  .product-miniature__price {
    font-size: 15px;
  }
}

/* --- 34.10 Email subscription module in footer --- */
.nm-footer-newsletter .block_newsletter {
  max-width: 500px;
  margin: 0 auto;
}

.nm-footer-newsletter .block_newsletter form {
  display: flex;
  gap: 0;
}

.nm-footer-newsletter .block_newsletter input[type="email"] {
  flex: 1;
  border: 1px solid var(--nm-beige);
  border-right: none;
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--nm-font-body);
  font-size: 14px;
  font-weight: 300;
  background-color: var(--nm-white);
  color: var(--nm-black);
}

.nm-footer-newsletter .block_newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--nm-gold);
}

.nm-footer-newsletter .block_newsletter button[type="submit"],
.nm-footer-newsletter .block_newsletter .btn-primary {
  background-color: var(--nm-black);
  color: var(--nm-cream);
  border: 1px solid var(--nm-black);
  border-radius: 0;
  padding: 14px 32px;
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nm-footer-newsletter .block_newsletter button[type="submit"]:hover,
.nm-footer-newsletter .block_newsletter .btn-primary:hover {
  background-color: var(--nm-gold);
  border-color: var(--nm-gold);
  color: var(--nm-black);
}

/* --- 34.11 PS module contact info in our footer (hide) --- */
.nm-footer-main .footer__block,
.nm-footer-main .block-contact {
  display: none;
}

/* --- 34.12 Hide hummingbird's default footer on ALL pages --- */
/* Hummingbird renders footer modules via displayFooter. Our custom footer
   already handles layout, so hide the PS default blocks everywhere. */
.l-footer .footer__block,
.l-footer .block_newsletter {
  display: none;
}

/* Hide default ps_emailsubscription module (we have our own newsletter section) */
.email-subscription {
  display: none;
}

/* --- 34.13 Breadcrumb NurManara --- */
.breadcrumb {
  background: none;
  padding: var(--space-sm) 0;
  margin-bottom: 0;
  font-family: var(--nm-font-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--nm-taupe);
  text-decoration: none;
  transition: color var(--nm-transition);
}

.breadcrumb a:hover {
  color: var(--nm-gold);
}

.breadcrumb .breadcrumb-item.active {
  color: var(--nm-black);
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: var(--nm-beige-dark);
  padding: 0 8px;
}

/* --- 34.14 Product page enhancements --- */

/* Add-to-cart button on product page */
.product-add-to-cart .add-to-cart,
.product-add-to-cart .btn.add-to-cart {
  background-color: var(--nm-black);
  color: var(--nm-cream);
  border: 1px solid var(--nm-black);
  border-radius: 0;
  padding: 16px 48px;
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all var(--nm-transition);
  width: 100%;
}

.product-add-to-cart .add-to-cart:hover,
.product-add-to-cart .btn.add-to-cart:hover {
  background-color: var(--nm-gold);
  border-color: var(--nm-gold);
  color: var(--nm-black);
}

/* Product page reassurance section */
.product-reassurance {
  border: var(--nm-border-light);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.product-reassurance .block-reassurance-item {
  font-family: var(--nm-font-body);
  font-size: 13px;
  color: var(--nm-taupe);
  padding: 8px 0;
}

.product-reassurance .block-reassurance-item img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

/* Product page description content */
.product-description {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--nm-black);
}

/* Product features table */
.product-features .data-sheet {
  font-family: var(--nm-font-body);
  font-size: 14px;
}

.product-features .data-sheet dt {
  font-weight: 500;
  color: var(--nm-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

.product-features .data-sheet dd {
  font-weight: 300;
  color: var(--nm-taupe);
}

/* Product accessories / related */
.product-accessories .section-title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  letter-spacing: 1px;
}

/* Product quantity buttons */
.product-quantity .qty .input-group .btn {
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--nm-black);
  font-size: 18px;
  padding: 8px 12px;
}

.product-quantity .qty .input-group .btn:hover {
  color: var(--nm-gold);
}

/* Social sharing on product page */
.social-sharing {
  margin-top: var(--space-md);
}

.social-sharing a {
  color: var(--nm-taupe);
  transition: color var(--nm-transition);
}

.social-sharing a:hover {
  color: var(--nm-gold);
}

/* --- 34.15 CMS page styling --- */
.page-cms #content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.page-cms #content h1 {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.page-cms #content h2 {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 32px);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.page-cms #content h3 {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.page-cms #content p {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--nm-taupe);
  margin-bottom: var(--space-sm);
}

.page-cms #content a {
  color: var(--nm-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--nm-transition);
}

.page-cms #content a:hover {
  color: var(--nm-black);
}

/* --- 34.16 Category page enhancements --- */
.page-category #wrapper,
.page-category #content-wrapper {
  background-color: var(--nm-cream);
}

/* Category banner cleanup */
.block-category {
  border-bottom: var(--nm-border-light);
}

/* Active filter badges */
.active-filters .filter-block {
  background-color: var(--nm-cream);
  border: 1px solid var(--nm-beige);
  border-radius: 0;
  font-family: var(--nm-font-body);
  font-size: 12px;
  padding: 6px 12px;
}

.active-filters .filter-block .close {
  color: var(--nm-gold);
}

/* Left column facets */
.faceted-search .facet-label {
  font-family: var(--nm-font-body);
  font-size: 13px;
  color: var(--nm-black);
}

.faceted-search .facet-label .custom-checkbox input[type="checkbox"] + span {
  border-color: var(--nm-beige);
  border-radius: 0;
}

/* --- 34.17 Contact page --- */
.page-contact #content {
  max-width: 700px;
  margin: 0 auto;
}

.page-contact .contact-form label {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nm-black);
}

.page-contact .contact-form .form-control {
  border: 1px solid var(--nm-beige);
  border-radius: 0;
  font-family: var(--nm-font-body);
  font-size: 14px;
  padding: 12px 16px;
}

.page-contact .contact-form .form-control:focus {
  border-color: var(--nm-gold);
  box-shadow: none;
}

/* --- 34.18 My account pages --- */
.page-my-account .link-item {
  border: var(--nm-border-light);
  border-radius: 0;
  transition: border-color var(--nm-transition);
}

.page-my-account .link-item:hover {
  border-color: var(--nm-gold);
}

.page-my-account .link-item .material-icons {
  color: var(--nm-gold);
}

/* --- 34.19 All inner pages: consistent background --- */
#wrapper {
  background-color: var(--nm-cream);
}

#content-wrapper {
  padding-top: var(--space-md);
  padding-bottom: var(--space-xl);
}

/* ================================================================
   35. PAGE NOTRE HISTOIRE — CDC Section 7.3
   Full-page custom layout: Hero + Origine + Mission + Valeurs
   + Savoir-faire + CTA
   ================================================================ */

/* Hide default page header & breadcrumb on Notre Histoire */
.page-cms-16 .page-header,
.page-cms-16 .breadcrumb {
  display: none;
}

.page-cms-16 #content-wrapper {
  padding: 0;
}

.page-cms-16 #wrapper {
  padding: 0;
}

/* --- 35.1 Histoire Hero --- */
.nm-histoire-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.nm-histoire-hero__bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nm-histoire-hero__bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.nm-histoire-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.3) 0%,
    rgba(26, 26, 26, 0.6) 100%
  );
}

.nm-histoire-hero__content {
  position: relative;
  z-index: 1;
  color: var(--nm-cream);
  padding: var(--space-xl) var(--space-md);
}

.nm-histoire-hero__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 2px;
  color: var(--nm-cream);
  margin: var(--space-sm) 0;
}

.nm-histoire-hero__subtitle {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--nm-gold);
  margin: 0;
}

/* --- 35.2 Origine section --- */
.nm-histoire-origine {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-cream);
}

.nm-histoire-origine__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.nm-histoire-origine__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.nm-histoire-origine__text {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--nm-taupe);
  margin-bottom: var(--space-sm);
}

.nm-histoire-origine__meaning {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: var(--nm-border-light);
}

.nm-histoire-origine__word {
  text-align: center;
}

.nm-histoire-origine__arabic {
  font-family: 'Aref Ruqaa', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--nm-gold);
  display: block;
  margin-bottom: var(--space-xs);
}

.nm-histoire-origine__word h3 {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.nm-histoire-origine__word p {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--nm-taupe);
}

.nm-histoire-origine__image-col {
  overflow: hidden;
  border-radius: 200px 200px 0 0;
}

.nm-histoire-origine__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- 35.3 Mission section --- */
.nm-histoire-mission {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-white);
  text-align: center;
}

.nm-histoire-mission__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto var(--space-md);
}

.nm-histoire-mission__text {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--nm-taupe);
  max-width: 650px;
  margin: 0 auto;
}

/* --- 35.4 Valeurs section --- */
.nm-histoire-valeurs {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-cream);
  text-align: center;
}

.nm-histoire-valeurs__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: var(--space-xl);
}

.nm-histoire-valeurs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 960px;
  margin: 0 auto;
}

.nm-histoire-valeurs__card {
  text-align: center;
  padding: var(--space-lg);
}

.nm-histoire-valeurs__card-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--nm-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.nm-histoire-valeurs__card-icon .material-icons {
  font-size: 28px;
  color: var(--nm-gold);
}

.nm-histoire-valeurs__card-title {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--space-sm);
}

.nm-histoire-valeurs__card-text {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--nm-taupe);
}

/* --- 35.5 Savoir-faire section --- */
.nm-histoire-savoirfaire {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-white);
}

.nm-histoire-savoirfaire__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.nm-histoire-savoirfaire__image-col {
  overflow: hidden;
  border-radius: 200px 200px 0 0;
}

.nm-histoire-savoirfaire__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.nm-histoire-savoirfaire__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.nm-histoire-savoirfaire__text {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--nm-taupe);
  margin-bottom: var(--space-sm);
}

.nm-histoire-savoirfaire__steps {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nm-histoire-savoirfaire__step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--nm-black);
  padding: 12px 0;
  border-bottom: var(--nm-border-light);
}

.nm-histoire-savoirfaire__step-num {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: 24px;
  color: var(--nm-gold);
  min-width: 40px;
}

/* --- 35.6 CTA section --- */
.nm-histoire-cta {
  padding: var(--nm-section-gap) 0;
  background-color: var(--nm-black);
  text-align: center;
}

.nm-histoire-cta .nm-surtitre {
  color: var(--nm-gold);
}

.nm-histoire-cta__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--nm-cream);
  margin-bottom: var(--space-lg);
}

.nm-histoire-cta__btn {
  border-color: var(--nm-cream);
  color: var(--nm-cream);
}

.nm-histoire-cta__btn:hover {
  background-color: var(--nm-gold);
  border-color: var(--nm-gold);
  color: var(--nm-black);
}

/* --- 35.7 Histoire responsive --- */
@media (max-width: 767px) {
  .nm-histoire-hero {
    min-height: 50vh;
  }

  .nm-histoire-hero__title {
    font-size: clamp(32px, 8vw, 44px);
  }

  .nm-histoire-origine__grid,
  .nm-histoire-savoirfaire__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .nm-histoire-origine__text-col {
    order: 2;
    padding: 0 20px;
  }

  .nm-histoire-origine__image-col {
    order: 1;
  }

  .nm-histoire-savoirfaire__image-col {
    order: 1;
  }

  .nm-histoire-savoirfaire__text-col {
    order: 2;
    padding: 0 20px;
  }

  .nm-histoire-origine__meaning {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .nm-histoire-valeurs__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .nm-histoire-valeurs__card {
    padding: var(--space-md);
  }

  .nm-histoire-mission__title {
    padding: 0 20px;
  }

  .nm-histoire-mission__text {
    padding: 0 20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nm-histoire-origine__grid,
  .nm-histoire-savoirfaire__grid {
    gap: var(--space-lg);
  }

  .nm-histoire-valeurs__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

/* ----------------------------------------------------------------
   36. HIDE DEFAULT MODULE FOOTER BLOCKS
   Our footer is fully custom — hide any module-rendered footer blocks
   ---------------------------------------------------------------- */
.nm-footer-main ~ .block-categories,
.nm-footer-main ~ .footer-container,
.nm-footer-main ~ .links,
.nm-footer-main + .footer-container,
#footer .links,
#footer .footer-container .links,
#footer .block-categories,
#footer .block-social,
.footer-container .links,
.email-subscription,
.social-follow,
#block_myaccount_infos {
  display: none !important;
}

/* Featured products: hide default section wrapper on homepage (module content is inside our nm-featured section) */
.page-index .featured-products > .container > .section-title,
.page-index .featured-products > .featured-products-footer,
.page-index .new-products {
  display: none !important;
}

/* Cart page: hide default featured products title */
.page-cart .featured-products > .container > .section-title {
  display: none !important;
}

/* ================================================================
   37. MEGA MENU — CDC-T Section 6.2
   Desktop dropdown under "Collections", white bg, slide-down
   ================================================================ */

/* Container for the mega menu trigger */
.nm-has-megamenu {
  position: static;
}

.nm-megamenu-trigger {
  position: relative;
}

/* Mega menu panel */
.nm-megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--nm-white);
  border-top: 1px solid var(--nm-beige);
  border-bottom: 1px solid var(--nm-beige);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
}

.nm-has-megamenu:hover .nm-megamenu,
.nm-has-megamenu:focus-within .nm-megamenu,
.nm-has-megamenu.is-open .nm-megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Inner grid: 3 text columns + 1 image column */
.nm-megamenu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
  max-width: var(--nm-container-max);
  margin: 0 auto;
  padding: var(--space-lg) var(--nm-container-margin);
}

/* Column titles */
.nm-megamenu__col-title {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--nm-black);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--nm-beige);
}

/* Link list */
.nm-megamenu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nm-megamenu__list li {
  margin-bottom: 10px;
}

.nm-megamenu__list a {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--nm-black);
  transition: color var(--nm-transition);
}

.nm-megamenu__list a:hover {
  color: var(--nm-gold);
}

/* Image column */
.nm-megamenu__col--image {
  overflow: hidden;
  border-radius: 4px;
}

.nm-megamenu__image-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.nm-megamenu__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--nm-transition-slow);
}

.nm-megamenu__image-link:hover .nm-megamenu__image {
  transform: scale(1.03);
}

.nm-megamenu__image-label {
  display: block;
  margin-top: var(--space-xs);
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--nm-black);
  transition: color var(--nm-transition);
}

.nm-megamenu__image-link:hover .nm-megamenu__image-label {
  color: var(--nm-gold);
}

/* --- Mobile nav expandable (Collections submenu) --- */
.nm-mobile-nav-expandable {
  position: relative;
}

.nm-mobile-nav-expandable > a {
  display: inline;
}

.nm-mobile-nav-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--nm-taupe);
  padding: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nm-mobile-nav-toggle[aria-expanded="true"] {
  transform: translateY(-50%) rotate(180deg);
}

.nm-mobile-nav-toggle .material-icons {
  font-size: 20px;
}

.nm-mobile-nav-submenu {
  display: none;
  list-style: none;
  padding: var(--space-xs) 0 var(--space-xs) var(--space-sm);
  margin: 0;
}

.nm-mobile-nav-submenu.is-open {
  display: block;
}

.nm-mobile-nav-submenu li {
  margin-bottom: 8px;
}

.nm-mobile-nav-submenu a {
  font-size: 14px;
  font-weight: 300;
  color: var(--nm-taupe);
}

.nm-mobile-nav-submenu a:hover {
  color: var(--nm-gold);
}

/* Header needs position:relative for mega menu absolute positioning */
.nm-header-main {
  position: relative;
}

/* ================================================================
   38. MINI-PANIER (Cart Drawer) — CDC-T Section 15.1
   Offcanvas from right, 420px width, white bg
   ================================================================ */

.nm-mini-cart {
  width: 420px;
  max-width: 90vw;
  background-color: var(--nm-white);
  border-left: 1px solid var(--nm-beige);
}

.nm-mini-cart__header {
  border-bottom: 1px solid var(--nm-beige);
  padding: var(--space-md) var(--space-md);
}

.nm-mini-cart__title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--nm-black);
  margin: 0;
}

.nm-mini-cart__body {
  padding: var(--space-md);
  flex: 1;
  overflow-y: auto;
}

/* Empty cart state */
.nm-mini-cart__empty {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.nm-mini-cart__empty-icon {
  font-size: 48px;
  color: var(--nm-beige);
  display: block;
  margin-bottom: var(--space-md);
}

.nm-mini-cart__empty p {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--nm-taupe);
  margin-bottom: var(--space-md);
}

.nm-mini-cart__browse {
  display: inline-block;
}

/* Cart item in drawer */
.nm-mini-cart__item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--nm-beige);
}

.nm-mini-cart__item-image {
  width: 80px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.nm-mini-cart__item-info {
  flex: 1;
}

.nm-mini-cart__item-name {
  font-family: var(--nm-font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--nm-black);
  margin-bottom: 4px;
}

.nm-mini-cart__item-variant {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--nm-taupe);
}

.nm-mini-cart__item-price {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--nm-black);
  margin-top: 8px;
}

.nm-mini-cart__item-qty {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--nm-taupe);
}

.nm-mini-cart__item-remove {
  background: none;
  border: none;
  color: var(--nm-taupe);
  cursor: pointer;
  padding: 4px;
  transition: color var(--nm-transition);
}

.nm-mini-cart__item-remove:hover {
  color: var(--nm-error);
}

/* Footer: subtotal + CTA */
.nm-mini-cart__footer {
  border-top: 1px solid var(--nm-beige);
  padding: var(--space-md);
  background-color: var(--nm-white);
}

.nm-mini-cart__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-family: var(--nm-font-body);
  font-size: 15px;
}

.nm-mini-cart__subtotal-value {
  font-weight: 500;
  font-size: 18px;
  color: var(--nm-black);
}

.nm-mini-cart__checkout {
  display: block;
  width: 100%;
  text-align: center;
}

/* ================================================================
   39. NEWSLETTER POPUP — CDC Section 12.3
   Modal overlay with -10% offer
   ================================================================ */

.nm-popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nm-popup-overlay.is-visible {
  opacity: 1;
}

.nm-popup {
  background-color: var(--nm-white);
  max-width: 480px;
  width: 100%;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  text-align: center;
}

.nm-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--nm-taupe);
  cursor: pointer;
  padding: 4px;
  transition: color var(--nm-transition);
}

.nm-popup__close:hover {
  color: var(--nm-black);
}

.nm-popup__close .material-icons {
  font-size: 24px;
}

.nm-popup__surtitre {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--nm-taupe);
  display: block;
  margin-bottom: var(--space-sm);
}

.nm-popup__title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: var(--nm-black);
  margin-bottom: var(--space-sm);
}

.nm-popup__text {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--nm-taupe);
  margin-bottom: var(--space-md);
}

.nm-popup__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nm-popup__input {
  border: 1px solid var(--nm-beige);
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--nm-font-body);
  font-size: 14px;
  font-weight: 300;
  background-color: var(--nm-white);
  color: var(--nm-black);
  text-align: center;
  transition: border-color var(--nm-transition);
}

.nm-popup__input:focus {
  outline: none;
  border-color: var(--nm-gold);
}

.nm-popup__input::placeholder {
  color: var(--nm-taupe);
}

.nm-popup__submit {
  width: 100%;
}

.nm-popup__legal {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 11px;
  color: var(--nm-taupe);
  margin-top: var(--space-sm);
}

/* ================================================================
   40. CATEGORY PAGE — NurManara Overrides (CDC-T Section 9)
   Collection header, toolbar, product grid, load-more
   ================================================================ */

/* --- Category Header Banner --- */
.nm-category-header {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--nm-cream);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  border-bottom: none;
}

.nm-category-header__inner {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-md);
  max-width: 700px;
}

.nm-category-header__surtitre {
  display: block;
  margin-bottom: var(--space-xs);
}

.nm-category-header__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--nm-black);
  margin-bottom: var(--space-sm);
}

.nm-category-header__description {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--nm-taupe);
  max-width: 600px;
  margin: 0 auto;
}

.nm-category-header__count {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--nm-taupe);
  margin-top: var(--space-sm);
}

/* Category cover image as background */
.nm-category-header__cover {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nm-category-header__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

/* When cover image present, increase contrast */
.nm-category-header:has(.nm-category-header__cover) {
  min-height: 350px;
}

/* --- Subcategories --- */
.nm-subcategories {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--nm-beige);
}

/* --- Toolbar (filter/sort bar) --- */
.nm-toolbar {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--nm-beige);
  margin-bottom: var(--space-lg);
  position: sticky;
  top: 0;
  background-color: var(--nm-cream);
  z-index: 100;
}

.nm-toolbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nm-toolbar__count-text {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--nm-taupe);
  margin: 0;
}

.nm-toolbar__actions {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

/* Sort dropdown */
.nm-toolbar__sort .products-sort-order {
  margin: 0;
}

.nm-toolbar__sort .select-title {
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--nm-beige);
  border-radius: 0;
  padding: 8px 16px;
  color: var(--nm-black);
  background-color: var(--nm-white);
}

/* Filter toggle button */
.nm-btn-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--nm-beige);
  border-radius: 0;
  padding: 8px 16px;
  background-color: var(--nm-white);
  color: var(--nm-black);
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: border-color var(--nm-transition);
}

.nm-btn-filter:hover {
  border-color: var(--nm-gold);
}

.nm-btn-filter__icon {
  font-size: 18px;
}

/* Active filters */
.nm-active-filters {
  margin-bottom: var(--space-sm);
}

.nm-active-filters .active-filter-title {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Product Grid --- */
.nm-product-grid .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .nm-product-grid .products {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nm-product-grid .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .nm-product-grid .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* --- Load More Button --- */
.nm-load-more {
  text-align: center;
  padding: var(--space-lg) 0;
}

.nm-load-more__btn {
  display: inline-block;
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--nm-black);
  border: 1px solid var(--nm-black);
  padding: 14px 48px;
  background: none;
  transition: all var(--nm-transition);
}

.nm-load-more__btn:hover {
  background-color: var(--nm-black);
  color: var(--nm-cream);
}

/* --- Pagination --- */
.nm-pagination {
  padding: var(--space-md) 0;
  text-align: center;
}

/* --- Category Footer (SEO text) --- */
.nm-category-footer__seo {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--nm-beige);
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  color: var(--nm-taupe);
  max-width: 800px;
  margin: 0 auto;
}

/* --- Category page mobile responsive --- */
@media (max-width: 767px) {
  .nm-category-header {
    min-height: 200px;
  }

  .nm-category-header__title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .nm-toolbar {
    position: static;
  }

  .nm-toolbar__inner {
    flex-wrap: wrap;
    gap: var(--space-xs);
  }
}

/* ================================================================
   41. CONTACT PAGE — CDC-T Section 13
   60% form / 40% info layout on desktop
   ================================================================ */

.page-contact #content-wrapper {
  max-width: 100%;
}

.page-contact #content {
  max-width: var(--nm-container-max);
  margin: 0 auto;
  padding: var(--space-xl) var(--nm-container-margin);
}

/* Page title */
.page-contact .page-header h1 {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: var(--space-lg);
}

/* Two-column layout */
.page-contact .contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 992px) {
  .page-contact .contact-form {
    display: block;
  }

  .page-contact #content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-xl);
    max-width: 1000px;
  }
}

/* Contact info column */
.page-contact .contact-rich {
  padding: var(--space-lg);
  background-color: var(--nm-white);
  border: 1px solid var(--nm-beige);
}

.page-contact .contact-rich h4 {
  font-family: var(--nm-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--nm-black);
  margin-bottom: var(--space-md);
}

.page-contact .contact-rich .block {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--nm-beige);
}

.page-contact .contact-rich .block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-contact .contact-rich .data {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--nm-taupe);
}

/* ================================================================
   42. FAQ ACCORDION — CDC-T Section 16.1
   Cormorant Garamond 20px questions, gold +/- icons
   ================================================================ */

/* FAQ page styling */
.page-cms-12 #content {
  max-width: 800px;
}

/* Target CMS accordion content */
.page-cms #content .accordion,
.page-cms #content details {
  border: none;
  margin-bottom: 0;
}

.page-cms #content .accordion-item,
.page-cms #content details {
  border: none;
  border-bottom: 1px solid var(--nm-beige);
  border-radius: 0;
  background: transparent;
}

.page-cms #content .accordion-button,
.page-cms #content summary {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: 20px;
  color: var(--nm-black);
  padding: var(--space-md) 0;
  background: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-cms #content .accordion-button::after,
.page-cms #content summary::after {
  content: '+';
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: 24px;
  color: var(--nm-gold);
  transition: transform var(--nm-transition);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.page-cms #content .accordion-button:not(.collapsed)::after,
.page-cms #content details[open] summary::after {
  content: '−';
}

.page-cms #content .accordion-button:not(.collapsed) {
  color: var(--nm-black);
  background: none;
  box-shadow: none;
}

.page-cms #content .accordion-body,
.page-cms #content details > :not(summary) {
  font-family: var(--nm-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--nm-taupe);
  padding: 0 0 var(--space-md);
}

/* Hide default summary marker */
.page-cms #content summary::-webkit-details-marker {
  display: none;
}

.page-cms #content summary {
  list-style: none;
}

/* ================================================================
   43. HEADER SCROLL BEHAVIOR
   Transparent on hero pages, solid on scroll
   ================================================================ */

/* Sticky header on all pages */
.nm-header-main {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* When header becomes sticky/scrolled */
.nm-header-main.is-scrolled {
  background-color: var(--nm-white);
  box-shadow: 0 2px 20px rgba(26, 26, 26, 0.06);
}

/* Homepage: transparent header over hero */
.page-index .nm-header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--nm-white);
}

/* All other pages: solid header */
.nm-header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--nm-white);
}

/* ================================================================
   44. MEGA MENU + MINI-CART RESPONSIVE
   ================================================================ */

@media (max-width: 991.98px) {
  /* Mega menu hidden on mobile (handled by offcanvas) */
  .nm-megamenu {
    display: none !important;
  }

  /* Mini cart: full width on small screens */
  .nm-mini-cart {
    width: 100%;
    max-width: 100vw;
  }
}

@media (max-width: 767px) {
  /* Newsletter popup compact */
  .nm-popup {
    padding: var(--space-lg) var(--space-md);
    margin: var(--space-sm);
  }

  .nm-popup__title {
    font-size: 24px;
  }
}

/* ----------------------------------------------------------------
   33. PRINT STYLES
   ---------------------------------------------------------------- */
@media print {
  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .header,
  .footer,
  .nm-announcement-bar,
  .nm-nav-top,
  .nm-header-main,
  .nm-footer-newsletter,
  .nm-footer-main,
  .nm-newsletter,
  .nm-hero,
  .nm-reassurance,
  .nm-instagram,
  .breadcrumb,
  .btn,
  .social-follow,
  .nm-footer-social {
    display: none !important;
  }

  a {
    color: black;
    text-decoration: underline;
  }

  .nm-container,
  .container {
    max-width: 100%;
    padding: 0;
  }

  h1, h2, h3, h4 {
    page-break-after: avoid;
  }

  img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  .product-miniature {
    page-break-inside: avoid;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ============================================================
   SECTIONS 37-45: Cart, Checkout, Account, Blog & More
   ============================================================ */

/* --- 37. Contact Page NurManara --- */
.nm-contact {
  padding: var(--space-xl) 0;
}
.nm-contact__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.nm-contact__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 8px 0 var(--space-xs);
}
.nm-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 991px) {
  .nm-contact__grid {
    grid-template-columns: 1fr;
  }
}
.nm-contact__info-panel {
  background: var(--nm-white);
  padding: var(--space-lg);
  border: var(--nm-border-light);
}
.nm-contact__info-title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-md);
}
.nm-contact__info-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.nm-contact__info-item i {
  color: var(--nm-gold);
  font-size: 22px;
  margin-top: 2px;
}
.nm-contact__info-item strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.nm-contact__info-item p {
  font-size: 14px;
  color: var(--nm-taupe);
  margin: 0;
}
.nm-contact__info-item a {
  color: var(--nm-gold);
  text-decoration: none;
}
.nm-contact__info-item a:hover {
  text-decoration: underline;
}
.nm-contact__info-divider {
  border-color: var(--nm-beige);
  margin: var(--space-md) 0;
}
.nm-contact__social strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
}
.nm-contact__social-links {
  display: flex;
  gap: var(--space-sm);
}
.nm-contact__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: var(--nm-border-light);
  transition: var(--nm-transition);
}
.nm-contact__social-links a:hover {
  border-color: var(--nm-gold);
  background: var(--nm-gold);
}
.nm-contact__social-links a:hover img,
.nm-contact__social-links a:hover .material-icons {
  filter: brightness(0) invert(1);
}

/* --- 38. Cart Page NurManara --- */
.nm-cart__header {
  text-align: center;
  padding: var(--space-lg) 0;
}
.nm-cart__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 8px 0 0;
}

/* Progress bar */
.nm-checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--space-md) 0 var(--space-lg);
  max-width: 500px;
  margin: 0 auto;
}
.nm-checkout-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}
.nm-checkout-progress__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--nm-beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nm-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--nm-beige-dark);
  transition: var(--nm-transition);
}
.nm-checkout-progress__step--active .nm-checkout-progress__number {
  border-color: var(--nm-gold);
  background: var(--nm-gold);
  color: var(--nm-white);
}
.nm-checkout-progress__step--done .nm-checkout-progress__number {
  border-color: var(--nm-gold);
  background: transparent;
  color: var(--nm-gold);
}
.nm-checkout-progress__label {
  font-family: var(--nm-font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nm-taupe);
}
.nm-checkout-progress__step--active .nm-checkout-progress__label {
  color: var(--nm-black);
  font-weight: 500;
}
.nm-checkout-progress__line {
  flex: 1;
  height: 1px;
  background: var(--nm-beige-dark);
  margin: 0 8px;
  margin-bottom: 24px;
}
.nm-checkout-progress__line--done {
  background: var(--nm-gold);
}

.nm-cart__summary {
  border: var(--nm-border-light);
  border-radius: 0;
}
.nm-cart__summary-title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: var(--space-sm);
  border-bottom: var(--nm-border-light);
  margin-bottom: var(--space-sm);
}

.nm-cart__reassurance {
  margin-top: var(--space-md);
  padding: var(--space-sm);
  background: var(--nm-white);
  border: var(--nm-border-light);
}
.nm-cart__reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--nm-taupe);
}
.nm-cart__reassurance-item i {
  font-size: 18px;
  color: var(--nm-gold);
}
.nm-cart__reassurance-item + .nm-cart__reassurance-item {
  border-top: 1px solid var(--nm-beige);
}

.nm-cart__crosssell {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: var(--nm-border-light);
}
.nm-cart__continue {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--nm-taupe);
  text-decoration: none;
  margin-top: var(--space-sm);
  transition: var(--nm-transition);
}
.nm-cart__continue:hover {
  color: var(--nm-gold);
}

/* Cart empty state */
.nm-cart-empty {
  text-align: center;
  padding: var(--space-3xl) 0;
}
.nm-cart-empty__inner {
  max-width: 480px;
  margin: 0 auto;
}
.nm-cart-empty__icon {
  font-size: 64px;
  color: var(--nm-beige-dark);
  margin-bottom: var(--space-md);
}
.nm-cart-empty__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 var(--space-sm);
}
.nm-cart-empty__subtitle {
  font-family: var(--nm-font-heading);
  font-style: italic;
  font-size: 18px;
  color: var(--nm-taupe);
  margin-bottom: var(--space-md);
}
.nm-cart-empty__cta {
  margin-top: var(--space-md);
}

/* --- 39. Checkout Page NurManara --- */
.nm-checkout {
  padding: var(--space-lg) 0 var(--space-xl);
}
.nm-checkout__reassurance {
  margin-top: var(--space-md);
  padding: var(--space-sm);
  background: var(--nm-white);
  border: var(--nm-border-light);
}

/* --- 40. Order Confirmation NurManara --- */
.nm-order-confirmation__header {
  text-align: center;
  padding: var(--space-xl) 0 var(--space-lg);
}
.nm-order-confirmation__checkmark {
  margin-bottom: var(--space-md);
}
.nm-order-confirmation__checkmark svg {
  animation: nm-checkmark-draw 0.8s ease-out forwards;
}
@keyframes nm-checkmark-draw {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}
.nm-order-confirmation__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 var(--space-xs);
}
.nm-order-confirmation__shukran {
  font-family: var(--nm-font-arabic);
  font-size: 28px;
  color: var(--nm-gold);
  margin: var(--space-xs) 0 var(--space-sm);
}
.nm-order-confirmation__email {
  font-size: 14px;
  color: var(--nm-taupe);
  margin-top: var(--space-sm);
}
.nm-order-confirmation__invoice-link {
  color: var(--nm-gold);
  text-decoration: underline;
}
.nm-order-confirmation__details {
  padding: var(--space-lg) 0;
}
.nm-order-confirmation__card {
  border: var(--nm-border-light);
  border-radius: 0;
}
.nm-order-confirmation__details-title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}
.nm-order-confirmation__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-sm);
}
.nm-order-confirmation__list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--nm-beige);
  font-size: 14px;
}
.nm-order-confirmation__label {
  color: var(--nm-taupe);
  font-weight: 400;
}
.nm-order-confirmation__register {
  margin-bottom: var(--space-lg);
  border: var(--nm-border-light);
  border-radius: 0;
}
.nm-order-confirmation__cta-section {
  text-align: center;
  padding: var(--space-lg) 0 var(--space-xl);
}

/* --- 41. Auth & Account Pages NurManara --- */
.nm-auth {
  padding: var(--space-xl) 0;
}
.nm-auth__inner {
  max-width: 480px;
  margin: 0 auto;
}
.nm-auth__title {
  font-family: var(--nm-font-heading);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 38px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 0 var(--space-xs);
}
.nm-auth__section .nm-separator {
  margin-bottom: var(--space-lg);
}
.nm-auth__register {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: var(--nm-border-light);
}
.nm-auth__register-inner {
  text-align: center;
}
.nm-auth__register-title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
}
.nm-auth__register-text {
  font-size: 14px;
  color: var(--nm-taupe);
  margin-bottom: var(--space-md);
}

/* Account dashboard grid */
.nm-account__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
@media (max-width: 767px) {
  .nm-account__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.nm-account__card {
  display: block;
  text-decoration: none;
  color: var(--nm-black);
  border: var(--nm-border-light);
  padding: var(--space-md);
  text-align: center;
  transition: var(--nm-transition);
}
.nm-account__card:hover {
  border-color: var(--nm-gold);
  color: var(--nm-gold);
}
.nm-account__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.nm-account__card i {
  font-size: 28px;
}
.nm-account__card-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nm-account__logout {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-lg);
  color: var(--nm-taupe);
  font-size: 13px;
  text-decoration: none;
  transition: var(--nm-transition);
}
.nm-account__logout:hover {
  color: var(--nm-gold);
}


/* --- 43. Blog / Journal NurManara --- */
.nm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 767px) {
  .nm-blog-grid {
    grid-template-columns: 1fr;
  }
}
.nm-blog-card {
  text-decoration: none;
  color: var(--nm-black);
  display: block;
}
.nm-blog-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: var(--space-sm);
}
.nm-blog-card__category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nm-gold);
  margin-bottom: 4px;
}
.nm-blog-card__title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 8px;
}
.nm-blog-card__excerpt {
  font-size: 14px;
  color: var(--nm-taupe);
  line-height: 1.6;
}
.nm-blog-card__date {
  font-size: 12px;
  color: var(--nm-beige-dark);
  margin-top: 8px;
}

/* --- 44. Cookie Banner RGPD --- moved to end of file (single definition) */

/* --- 45. Mini-Cart Drawer NurManara --- */
.nm-mini-cart {
  max-width: 400px;
}
.nm-mini-cart__header {
  border-bottom: var(--nm-border-light);
  padding: var(--space-sm) var(--space-md);
}
.nm-mini-cart__title {
  font-family: var(--nm-font-heading);
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}
.nm-mini-cart__body {
  padding: var(--space-sm) var(--space-md);
  flex: 1;
  overflow-y: auto;
}
.nm-mini-cart__empty {
  text-align: center;
  padding: var(--space-xl) 0;
}
.nm-mini-cart__empty-icon {
  font-size: 48px;
  color: var(--nm-beige-dark);
  margin-bottom: var(--space-sm);
}
.nm-mini-cart__empty p {
  color: var(--nm-taupe);
  font-size: 14px;
}
.nm-mini-cart__browse {
  margin-top: var(--space-sm);
  font-size: 12px;
}
.nm-mini-cart__footer {
  border-top: var(--nm-border-light);
  padding: var(--space-sm) var(--space-md);
}
.nm-mini-cart__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
  font-size: 14px;
}
.nm-mini-cart__subtotal-value {
  font-weight: 500;
}
.nm-mini-cart__checkout {
  display: block;
  width: 100%;
  text-align: center;
}

/* Mini-cart item */
.nm-mini-cart-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--nm-beige);
}
.nm-mini-cart-item__image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}
.nm-mini-cart-item__info {
  flex: 1;
}
.nm-mini-cart-item__name {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 4px;
}
.nm-mini-cart-item__price {
  font-size: 13px;
  color: var(--nm-taupe);
}
.nm-mini-cart-item__remove {
  color: var(--nm-beige-dark);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
}
.nm-mini-cart-item__remove:hover {
  color: var(--nm-gold);
}

/* =========================================================================
   46. Back-to-top button
   ========================================================================= */
.nm-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1050;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--nm-gold);
  background: var(--nm-bg);
  color: var(--nm-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.nm-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nm-back-to-top:hover {
  background: var(--nm-gold);
  color: var(--nm-white);
}
.nm-back-to-top .material-icons {
  font-size: 24px;
}

/* =========================================================================
   47. Gold loading bar
   ========================================================================= */
.nm-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nm-gold), #e0c97a, var(--nm-gold));
  z-index: 9999;
  pointer-events: none;
}
.nm-loading-bar.is-loading {
  width: 85%;
  transition: width 8s cubic-bezier(.1,.05,.1,1);
}
.nm-loading-bar.is-done {
  width: 100%;
  opacity: 0;
  transition: width .2s ease, opacity .4s .2s ease;
}

/* =========================================================================
   48. Header compact mode (scroll > 200px)
   ========================================================================= */
.nm-header-main {
  transition: height .3s ease;
}
.nm-header-main.is-compact {
  height: 60px;
}
.nm-header-main.is-compact .nm-logo {
  max-height: 45px;
  transition: max-height .3s ease;
}
.nm-header-main.is-compact .nm-header-main__row {
  height: 60px;
}
.nm-announcement-bar {
  transition: max-height .3s ease, opacity .2s ease, padding .3s ease;
  max-height: 50px;
  overflow: hidden;
}
.nm-announcement-bar.is-hidden {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

/* =========================================================================
   49. Newsletter popup overlay
   ========================================================================= */
#nm-newsletter-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 26, 26, .55);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
#nm-newsletter-popup.is-visible {
  opacity: 1;
}
.nm-popup {
  background: var(--nm-bg);
  max-width: 480px;
  width: 90%;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--nm-beige);
}
.nm-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--nm-taupe);
  cursor: pointer;
  line-height: 1;
}
.nm-popup__close:hover {
  color: var(--nm-text);
}
.nm-popup__title {
  font-family: var(--nm-font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .5rem;
  color: var(--nm-text);
}
.nm-popup__text {
  font-family: var(--nm-font-body);
  font-size: .95rem;
  color: var(--nm-taupe);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.nm-popup__form {
  display: flex;
  gap: .75rem;
}
.nm-popup__input {
  flex: 1;
  padding: .75rem 1rem;
  border: 1px solid var(--nm-beige);
  background: var(--nm-white);
  font-family: var(--nm-font-body);
  font-size: .9rem;
}
.nm-popup__input:focus {
  outline: none;
  border-color: var(--nm-gold);
}
.nm-popup__submit {
  padding: .75rem 1.5rem;
  background: var(--nm-gold);
  color: var(--nm-white);
  border: none;
  font-family: var(--nm-font-body);
  font-size: .85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .2s ease;
}
.nm-popup__submit:hover {
  background: var(--nm-taupe);
}

@media (max-width: 575.98px) {
  .nm-popup {
    padding: 2rem 1.5rem;
  }
  .nm-popup__form {
    flex-direction: column;
  }
  .nm-back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
  }
}

/* ============================================================
   Creative Elements Custom Overrides
   Supplements CE-generated CSS for elements not handled by widget settings
   ============================================================ */

/* --- GLOBAL OVERRIDES --- */
body.ce-theme {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #1A1A1A;
  background-color: #F8F5F0;
}
body.ce-theme #content-wrapper {
  padding: 0;
}
body.ce-theme #wrapper {
  padding: 0;
  background: transparent;
}
body.ce-theme .wrapper__content {
  padding: 0 !important;
}

/* --- HEADER --- */
.nm-ce-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nm-ce-nav a {
  color: #1A1A1A;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}
.nm-ce-nav a:hover {
  color: #C9A961;
}
.nm-ce-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A961;
  transition: width 0.3s ease;
}
.nm-ce-nav a:hover::after {
  width: 100%;
}

/* Header icons alignment */
.elementor-element-hdr_icons_inner .elementor-row {
  justify-content: flex-end;
  align-items: center;
}
.elementor-element-hdr_icons_inner .elementor-column {
  flex: 0 0 auto;
  width: auto;
  padding: 0 8px;
}

/* --- HERO SECTION --- */
.elementor-element-hp_hero {
  min-height: 100vh !important;
  display: flex;
  align-items: center;
}
.elementor-element-hp_hero > .elementor-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.elementor-element-hp_hero > .elementor-background-overlay {
  z-index: 1;
}
.elementor-element-hp_hero > .elementor-container {
  z-index: 2;
  position: relative;
}

/* --- COLLECTION SECTION --- */
.elementor-element-hp_collection {
  min-height: 600px;
}

/* --- GAMME IMAGES - Arch shape --- */
.elementor-element-hp_g1_img img,
.elementor-element-hp_g2_img img,
.elementor-element-hp_g3_img img {
  border-radius: 200px 200px 0 0;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.elementor-element-hp_g1_col,
.elementor-element-hp_g2_col,
.elementor-element-hp_g3_col {
  transition: transform 0.3s ease;
}
.elementor-element-hp_g1_col:hover,
.elementor-element-hp_g2_col:hover,
.elementor-element-hp_g3_col:hover {
  transform: translateY(-5px);
}

/* --- SAVOIR-FAIRE SECTION --- */
.elementor-element-hp_savoir {
  min-height: 500px;
}
.elementor-element-hp_sv_img img {
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

/* --- INSTAGRAM GRID --- */
.elementor-element-hp_insta_grid .elementor-column {
  overflow: hidden;
}
.elementor-element-hp_insta_grid img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.elementor-element-hp_insta_grid .elementor-column:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* --- PRODUCT GRID --- */
.elementor-widget-product-grid .product-miniature {
  text-align: center;
  transition: transform 0.3s ease;
}
.elementor-widget-product-grid .product-miniature:hover {
  transform: translateY(-3px);
}
.elementor-widget-product-grid .product-title a {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.elementor-widget-product-grid .product-title a:hover {
  color: #C9A961;
}
.elementor-widget-product-grid .product-price-and-shipping .price {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #8B7355;
}
.elementor-widget-product-grid .product-miniature .product-add-to-cart {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.elementor-widget-product-grid .product-miniature:hover .product-add-to-cart {
  opacity: 1;
}

/* --- FOOTER --- */
.elementor-2170101 .elementor-icon-list-item a {
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.elementor-2170101 .elementor-icon-list-item a:hover {
  padding-left: 5px;
}
.elementor-element-ftr_brand_logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.elementor-element-ftr_legal_links a {
  transition: color 0.3s ease;
}
.elementor-element-ftr_legal_links a:hover {
  color: #C9A961 !important;
}

/* --- BUTTONS --- */
.elementor .elementor-button {
  transition: all 0.3s ease;
}

/* --- SELECTION --- */
::selection {
  background: #C9A961;
  color: #FFFFFF;
}

/* --- RESPONSIVE CE OVERRIDES --- */
@media (max-width: 1024px) {
  .nm-ce-nav { gap: 18px; }
  .nm-ce-nav a { font-size: 11px; }
}
@media (max-width: 767px) {
  .nm-ce-nav { display: none; }
  .elementor-element-hp_hero { min-height: 80vh !important; }
  .elementor-element-hp_hero > .elementor-container { min-height: 80vh; }
  .elementor-element-hp_gammes_grid .elementor-row { flex-direction: column; }
  .elementor-element-hp_gammes_grid .elementor-column { width: 100%; margin-bottom: 30px; }
  .elementor-element-hp_insta_grid .elementor-row { flex-wrap: wrap; }
  .elementor-element-hp_insta_grid .elementor-column { width: 33.333%; }
}

/* ----------------------------------------------------------------
   COOKIE BANNER (GDPR)
   ---------------------------------------------------------------- */
.nm-cookie-banner,
#lgcookieslaw_banner,
.psgdpr_consent_message {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 0;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
}
.nm-cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.nm-cookie-banner__text {
  font-family: var(--nm-font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: #C8C0B4;
  margin: 0;
}
.nm-cookie-banner__text a,
#lgcookieslaw_banner a,
.psgdpr_consent_message a {
  color: #C9A961;
  text-decoration: underline;
}
.nm-cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.nm-cookie-banner__accept,
.nm-cookie-banner__refuse {
  font-family: var(--nm-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nm-cookie-banner__accept,
#lgcookieslaw_accept,
.psgdpr_consent_message .psgdpr_consent_message_accept {
  background: #C9A961;
  color: #FFFFFF;
  border-color: #C9A961;
}
.nm-cookie-banner__accept:hover,
#lgcookieslaw_accept:hover {
  background: #b8963f;
  border-color: #b8963f;
}
.nm-cookie-banner__refuse {
  background: transparent;
  color: #C8C0B4;
  border-color: #C8C0B4;
}
.nm-cookie-banner__refuse:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
@media (max-width: 767px) {
  .nm-cookie-banner__inner {
    flex-direction: column;
    padding: 16px 20px;
    text-align: center;
  }
  .nm-cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}
