:root {
  --nm-black: #050505;
  --nm-graphite: #4A4A4A;
  --nm-gray: #5F5F5F;
  --nm-gold: #D0AD6B;
  --nm-gold-light: #E0C891;
  --nm-warm-white: #FAFAF8;
  --nm-soft-gray: #E8E8E6;
  --nm-white: #FFFFFF;
  --nm-shadow: 0 18px 45px rgba(5, 5, 5, .08);
  --nm-serif: Georgia, "Times New Roman", serif;
  --nm-sans: Inter, Arial, Helvetica, sans-serif;
}

html {
  margin: 0 !important;
  padding: 0 !important;
  scroll-behavior: smooth;
}

body.nice-moment-landing-active {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--nm-warm-white) !important;
}

body.nice-moment-landing-active .nm-page-shell {
  min-height: 100vh;
}

.nm-page-shell,
.nm-page-shell * {
  box-sizing: border-box;
}

.nm-page-shell {
  position: relative;
  width: 100%;
  background:
    radial-gradient(circle at 10% 5%, rgba(224, 200, 145, .16), transparent 28%),
    radial-gradient(circle at 90% 25%, rgba(208, 173, 107, .12), transparent 32%),
    var(--nm-warm-white);
  color: var(--nm-graphite);
  font-family: var(--nm-sans);
  overflow-x: hidden;
  line-height: 1.45;
}

.nm-page-shell img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.nm-page-shell a {
  color: inherit;
  text-decoration: none;
}

.nm-page-shell button,
.nm-page-shell input {
  font-family: inherit;
}

.nm-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nm-eyebrow {
  color: var(--nm-gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.nm-section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 30px;
  color: var(--nm-graphite);
  font-family: var(--nm-serif);
  font-size: 22px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 400;
}

.nm-section-kicker::before,
.nm-section-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--nm-gold);
}

.nm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid var(--nm-black);
  background: transparent;
  color: var(--nm-black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.nm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(5, 5, 5, .10);
}

.nm-btn-dark {
  background: var(--nm-black);
  color: var(--nm-warm-white);
}

.nm-btn-dark .nm-btn-arrow {
  color: var(--nm-gold);
}

.nm-btn-dark:hover {
  background: var(--nm-graphite);
  border-color: var(--nm-graphite);
  color: var(--nm-warm-white);
}

.nm-btn-outline {
  background: transparent;
  border-color: var(--nm-black);
  color: var(--nm-graphite);
}

.nm-btn-outline:hover {
  background: rgba(255,255,255,.65);
  border-color: var(--nm-gold);
  color: var(--nm-black);
}

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

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

.nm-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  height: 84px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(232, 232, 230, .85);
  background: rgba(250, 250, 248, .78);
  backdrop-filter: blur(18px);
}

.admin-bar .nm-site-header {
  top: 32px;
}

.nm-header-inner {
  display: grid;
  grid-template-columns: 190px 1fr 145px;
  align-items: center;
  gap: 24px;
}

.nm-brand-logo {
  width: 158px;
  min-height: 54px;
  display: flex;
  align-items: center;
}

.nm-logo-image {
  width: 100%;
  height: auto;
  display: block;
}

.nm-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--nm-graphite);
}

.nm-main-nav a {
  position: relative;
  padding: 8px 0;
}

.nm-main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 1px;
  background: var(--nm-gold);
  transition: width .3s ease;
}

.nm-main-nav a:hover::after {
  width: 100%;
}

.nm-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
}

.nm-icon-btn {
  width: 25px;
  height: 25px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--nm-graphite);
}

.nm-cart-badge {
  position: absolute;
  top: -8px;
  right: -9px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--nm-gold);
  color: var(--nm-black);
  font-size: 10px;
  font-weight: 800;
}

.nm-mobile-menu {
  display: none;
}

.nm-hero {
  min-height: 780px;
  padding-top: 84px;
  display: grid;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.nm-hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.25fr;
  min-height: 696px;
}

.nm-hero-copy {
  position: relative;
  z-index: 2;
  padding: 115px 0 70px max(40px, calc((100vw - 1180px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nm-hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 84px;
  width: 180px;
  height: 470px;
  opacity: .55;
  background: url("data:image/svg+xml,%3Csvg width='180' height='470' viewBox='0 0 180 470' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D0AD6B' stroke-width='1.6'%3E%3Cpath d='M23 450C68 340 29 238 92 138c26-42 42-85 36-126'/%3E%3Cpath d='M74 320c-39-11-62 8-72 38 31 3 56-8 72-38Z'/%3E%3Cpath d='M97 255c-39-8-57 11-64 38 31 1 53-12 64-38Z'/%3E%3Cpath d='M112 190c-36-5-55 15-60 41 29-1 51-15 60-41Z'/%3E%3Cpath d='M131 105c-31-2-49 17-52 41 25-2 44-16 52-41Z'/%3E%3Cpath d='M57 375c39 7 58-10 71-39-35-3-56 10-71 39Z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
  pointer-events: none;
}

.nm-hero-title {
  margin: 28px 0 0;
  font-family: var(--nm-serif);
  color: var(--nm-graphite);
  font-size: clamp(54px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 400;
}

.nm-hero-title em {
  color: var(--nm-gold);
  font-style: italic;
  white-space: nowrap;
}

.nm-hero-line {
  width: 48px;
  height: 2px;
  background: var(--nm-gold);
  margin: 32px 0 26px;
}

.nm-hero-text {
  max-width: 420px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--nm-gray);
  margin: 0;
}

.nm-hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.nm-hero-visual {
  position: relative;
  min-height: 696px;
  overflow: hidden;
  transition: transform .2s ease-out;
}

.nm-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, var(--nm-warm-white) 0%, rgba(250,250,248,.88) 8%, rgba(250,250,248,.38) 28%, rgba(250,250,248,.02) 55%),
    linear-gradient(180deg, rgba(250,250,248,.36), rgba(250,250,248,.08));
  pointer-events: none;
}

.nm-hero-visual img {
  height: 100%;
  min-height: 696px;
  filter: saturate(.95) contrast(1.02);
  transform: scale(1.04);
  animation: nmSlowZoom 18s ease-in-out infinite alternate;
}

.nm-floating-card {
  position: absolute;
  right: 52px;
  bottom: 58px;
  z-index: 5;
  width: 230px;
  padding: 22px;
  border: 1px solid rgba(208, 173, 107, .38);
  background: rgba(250, 250, 248, .80);
  backdrop-filter: blur(18px);
  box-shadow: var(--nm-shadow);
  animation: nmFloatSoft 5.5s ease-in-out infinite;
}

.nm-floating-card p:first-child {
  font-family: var(--nm-serif);
  font-size: 22px;
  color: var(--nm-graphite);
  margin: 0 0 8px;
}

.nm-floating-card p:last-child {
  font-size: 12px;
  line-height: 1.6;
  color: var(--nm-gray);
  margin: 0;
}

.nm-trust-band {
  border-top: 1px solid var(--nm-soft-gray);
  border-bottom: 1px solid var(--nm-soft-gray);
  background: rgba(255, 255, 255, .42);
}

.nm-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.nm-trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 86px;
  padding: 16px 22px;
  border-right: 1px solid var(--nm-soft-gray);
}

.nm-trust-item:last-child {
  border-right: 0;
}

.nm-trust-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--nm-gold);
  border: 1px solid rgba(208, 173, 107, .38);
  border-radius: 50%;
}

.nm-trust-item h4 {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--nm-graphite);
  margin: 0 0 5px;
  font-weight: 800;
}

.nm-trust-item p {
  font-size: 12px;
  color: var(--nm-gray);
  line-height: 1.5;
  margin: 0;
}

.nm-page-shell section {
  position: relative;
}

.nm-section-pad {
  padding: 82px 0;
}

.nm-categories {
  overflow: hidden;
}

.nm-botanical-right::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 54px;
  width: 210px;
  height: 330px;
  opacity: .42;
  background: url("data:image/svg+xml,%3Csvg width='210' height='330' viewBox='0 0 210 330' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D0AD6B' stroke-width='1.5'%3E%3Cpath d='M38 326C70 240 87 166 160 77c27-33 34-58 30-75'/%3E%3Cpath d='M87 230c-38-11-61 6-75 36 32 5 59-5 75-36Z'/%3E%3Cpath d='M118 176c-35-9-58 9-68 37 30 3 55-8 68-37Z'/%3E%3Cpath d='M151 116c-32-5-52 12-60 38 27 1 49-11 60-38Z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
  pointer-events: none;
}

.nm-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.nm-category-card {
  min-height: 118px;
  border: 1px solid var(--nm-soft-gray);
  background: rgba(255, 255, 255, .58);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.nm-category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(208, 173, 107, .58);
  box-shadow: var(--nm-shadow);
}

.nm-category-card .nm-label {
  padding: 24px 16px 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nm-category-card h3 {
  font-size: 13px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--nm-graphite);
  margin: 0 0 12px;
  font-weight: 800;
}

.nm-mini-line {
  width: 28px;
  height: 1px;
  background: var(--nm-gold);
  display: block;
}

.nm-category-card img {
  height: 118px;
  transition: transform .55s ease;
}

.nm-category-card:hover img {
  transform: scale(1.08);
}

.nm-products-section {
  padding: 82px 0 42px;
}

.nm-split-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 54px;
  align-items: start;
}

.nm-side-title h2 {
  font-family: var(--nm-serif);
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nm-graphite);
  font-weight: 400;
  margin: 0 0 18px;
}

.nm-side-title p {
  color: var(--nm-gray);
  line-height: 1.75;
  font-size: 14px;
  margin: 0 0 24px;
}

.nm-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--nm-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nm-product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.nm-product-card {
  position: relative;
  background: rgba(255,255,255,.66);
  border: 1px solid var(--nm-soft-gray);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.nm-product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--nm-shadow);
  border-color: rgba(208, 173, 107, .58);
}

.nm-product-card img {
  height: 210px;
  transition: transform .65s ease;
}

.nm-product-card:hover img {
  transform: scale(1.06);
}

.nm-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  background: var(--nm-black);
  color: var(--nm-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.nm-product-body {
  padding: 18px 18px 20px;
}

.nm-product-body h3,
.nm-step-card h3 {
  font-family: var(--nm-serif);
  color: var(--nm-graphite);
  font-weight: 400;
}

.nm-product-body h3 {
  font-size: 18px;
  margin: 0 0 9px;
}

.nm-product-body p {
  color: var(--nm-gray);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.nm-product-meta-block {
  display: grid;
  gap: 12px;
}

.nm-product-price {
  color: var(--nm-graphite);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.nm-qty-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nm-qty-selector {
  display: inline-grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  width: 120px;
  height: 38px;
  border: 1px solid var(--nm-gold);
  background: rgba(255,255,255,.78);
}

.nm-qty-btn {
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--nm-graphite);
  font-size: 18px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.nm-qty-btn:hover {
  background: rgba(224, 200, 145, .25);
  color: var(--nm-black);
}

.nm-qty-value {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--nm-graphite);
  letter-spacing: .06em;
}

.nm-add-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--nm-black);
  background: var(--nm-black);
  color: var(--nm-warm-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.nm-add-cart-btn:hover {
  transform: translateY(-2px);
  background: var(--nm-graphite);
  border-color: var(--nm-graphite);
  box-shadow: 0 10px 24px rgba(5,5,5,.12);
}

.nm-steps {
  padding: 52px 0 82px;
  border-top: 1px solid var(--nm-soft-gray);
  border-bottom: 1px solid var(--nm-soft-gray);
  background: rgba(255, 255, 255, .38);
}

.nm-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
}

.nm-steps-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 39px;
  height: 1px;
  border-top: 1px dashed rgba(208, 173, 107, .6);
}

.nm-step-card {
  position: relative;
  text-align: center;
  padding: 0 16px;
}

.nm-step-icon {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(208, 173, 107, .55);
  background: var(--nm-warm-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--nm-gold);
  box-shadow: 0 0 0 10px var(--nm-warm-white);
}

.nm-step-card .nm-number {
  color: var(--nm-gold);
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 800;
  margin-bottom: 10px;
}

.nm-step-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.nm-step-card p {
  color: var(--nm-gray);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.nm-gallery-strip {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  align-items: stretch;
}

.nm-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr 1.2fr;
  grid-auto-rows: 240px;
  gap: 12px;
}

.nm-gallery-item {
  overflow: hidden;
  position: relative;
}

.nm-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0), rgba(5,5,5,.16));
  opacity: 0;
  transition: opacity .35s ease;
}

.nm-gallery-item:hover::after {
  opacity: 1;
}

.nm-gallery-item img {
  height: 100%;
  transition: transform .8s ease;
}

.nm-gallery-item:hover img {
  transform: scale(1.08);
}

.nm-testimonials {
  padding: 76px 0;
  border-top: 1px solid var(--nm-soft-gray);
  position: relative;
}

.nm-testimonial-grid {
  display: grid;
  grid-template-columns: 260px repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.nm-quote-card {
  padding: 0 24px;
  border-left: 1px solid var(--nm-soft-gray);
}

.nm-quote-mark {
  color: var(--nm-gold);
  font-family: var(--nm-serif);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 6px;
}

.nm-quote-card p {
  color: var(--nm-gray);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.nm-quote-card strong {
  color: var(--nm-graphite);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nm-final-cta {
  position: relative;
  min-height: 330px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--nm-black);
}

.nm-final-cta img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: .52;
  filter: saturate(.85) contrast(1.05);
}

.nm-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,.88), rgba(5,5,5,.48), rgba(5,5,5,.12));
}

.nm-final-cta .nm-container {
  position: relative;
  z-index: 2;
}

.nm-final-cta p {
  color: var(--nm-gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.nm-final-cta h2 {
  max-width: 650px;
  color: var(--nm-white);
  font-family: var(--nm-serif);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.04;
  font-weight: 400;
  margin: 0 0 28px;
}

.nm-contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 24px;
  color: rgba(250,250,248,.88);
  font-size: 13px;
}

.nm-site-footer {
  padding: 48px 0 26px;
  background: var(--nm-warm-white);
  border-top: 1px solid var(--nm-soft-gray);
}

.nm-footer-logo {
  width: 170px;
}

.nm-footer-grid {
  display: grid;
  grid-template-columns: 210px 1fr 1.2fr 1.15fr 1.2fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 36px;
}

.nm-footer-col h4 {
  color: var(--nm-graphite);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 15px;
}

.nm-footer-col ul {
  list-style: none;
  display: grid;
  gap: 9px;
  color: var(--nm-gray);
  font-size: 13px;
  padding: 0;
  margin: 0;
}

.nm-footer-col p {
  color: var(--nm-gray);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.nm-newsletter {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 46px;
  height: 46px;
  border: 1px solid var(--nm-gold-light);
  background: rgba(255,255,255,.56);
}

.nm-newsletter input {
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: var(--nm-graphite);
  background: transparent;
  min-width: 0;
}

.nm-newsletter button {
  border: 0;
  background: var(--nm-gold);
  cursor: pointer;
}

.nm-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--nm-soft-gray);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--nm-gray);
  font-size: 12px;
  line-height: 1.7;
}

.nm-footer-bottom p {
  margin: 0;
}

.nm-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 990;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--nm-gold);
  background: var(--nm-black);
  color: var(--nm-warm-white);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 35px rgba(5,5,5,.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .25s ease;
}

.nm-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nm-scroll-top:hover {
  background: var(--nm-graphite);
}

.nm-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

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

@keyframes nmSlowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.09); }
}

@keyframes nmFloatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 1020px) {
  .nm-header-inner {
    grid-template-columns: 170px 1fr 70px;
  }

  .nm-main-nav {
    display: none;
  }

  .nm-mobile-menu {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--nm-soft-gray);
    background: transparent;
  }

  .nm-header-actions .nm-icon-btn:not(.nm-cart-icon) {
    display: none;
  }

  .nm-hero-grid {
    grid-template-columns: 1fr;
  }

  .nm-hero-copy {
    padding: 130px 32px 60px;
  }

  .nm-hero-visual,
  .nm-hero-visual img {
    min-height: 430px;
  }

  .nm-floating-card {
    right: 28px;
    bottom: 28px;
  }

  .nm-trust-grid,
  .nm-category-grid,
  .nm-product-row,
  .nm-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nm-steps-grid::before {
    display: none;
  }

  .nm-split-section,
  .nm-gallery-strip,
  .nm-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .nm-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 782px) {
  .admin-bar .nm-site-header {
    top: 46px;
  }
}

@media (max-width: 640px) {
  .nm-container {
    width: min(100% - 28px, 1180px);
  }

  .nm-site-header {
    height: 72px;
  }

  .nm-header-inner {
    grid-template-columns: 145px 1fr 44px;
  }

  .nm-brand-logo {
    width: 136px;
    min-height: 46px;
  }

  .nm-hero {
    padding-top: 72px;
  }

  .nm-hero-title {
    font-size: 46px;
  }

  .nm-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .nm-trust-grid,
  .nm-category-grid,
  .nm-product-row,
  .nm-steps-grid,
  .nm-footer-grid {
    grid-template-columns: 1fr;
  }

  .nm-trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--nm-soft-gray);
  }

  .nm-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .nm-footer-bottom,
  .nm-contact-inline {
    flex-direction: column;
  }

  .nm-section-kicker {
    font-size: 18px;
    gap: 10px;
  }

  .nm-section-kicker::before,
  .nm-section-kicker::after {
    width: 28px;
  }

  .nm-floating-card {
    display: none;
  }

  .nm-botanical-right::after {
    opacity: .18;
  }

  .nm-qty-action {
    gap: 8px;
  }

  .nm-scroll-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}


/* =========================================================
   Nice Moment v1.1.1 - ajustes consolidados
   ========================================================= */

/* Logo oficial: el archivo fuente es cuadrado; aquí se recorta al formato rectangular de marca. */
.nm-page-shell .nm-brand-logo {
  width: 158px !important;
  height: 54px !important;
  min-height: 54px !important;
  max-height: 54px !important;
  display: block !important;
  overflow: hidden !important;
  background: transparent !important;
  line-height: 0 !important;
}

.nm-page-shell .nm-footer-logo {
  width: 170px !important;
  height: 58px !important;
  min-height: 58px !important;
  max-height: 58px !important;
}

.nm-page-shell .nm-logo-image {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

/* Contraste forzado del botón principal del hero y todos sus estados. */
.nm-page-shell .nm-btn.nm-btn-dark,
.nm-page-shell a.nm-btn.nm-btn-dark,
.nm-page-shell a.nm-btn.nm-btn-dark:link,
.nm-page-shell a.nm-btn.nm-btn-dark:visited,
.nm-page-shell a.nm-btn.nm-btn-dark:hover,
.nm-page-shell a.nm-btn.nm-btn-dark:focus,
.nm-page-shell a.nm-btn.nm-btn-dark:active {
  background: #050505 !important;
  border-color: #050505 !important;
  color: #FAFAF8 !important;
  text-shadow: none !important;
}

.nm-page-shell .nm-btn.nm-btn-dark .nm-btn-arrow,
.nm-page-shell a.nm-btn.nm-btn-dark .nm-btn-arrow,
.nm-page-shell a.nm-btn.nm-btn-dark:visited .nm-btn-arrow,
.nm-page-shell a.nm-btn.nm-btn-dark:hover .nm-btn-arrow {
  color: #D0AD6B !important;
}

.nm-page-shell .nm-btn.nm-btn-dark:hover,
.nm-page-shell a.nm-btn.nm-btn-dark:hover {
  background: #4A4A4A !important;
  border-color: #4A4A4A !important;
}

/* Cards de productos con footer alineado aunque cambie la cantidad de texto. */
.nm-page-shell .nm-product-row {
  align-items: stretch !important;
}

.nm-page-shell .nm-product-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.nm-page-shell .nm-product-card > img {
  flex: 0 0 auto !important;
}

.nm-page-shell .nm-product-body {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}

.nm-page-shell .nm-product-body p {
  min-height: 63px !important;
}

.nm-page-shell .nm-product-meta-block {
  margin-top: auto !important;
}

.nm-page-shell .nm-qty-action {
  margin-top: 0 !important;
}

/* CTA final más limpio: sin texto superior ni contacto visible. */
.nm-page-shell .nm-final-cta .nm-container > p,
.nm-page-shell .nm-final-cta .nm-contact-inline {
  display: none !important;
}

.nm-page-shell .nm-final-cta h2 {
  margin-top: 0 !important;
}

/* Ajustes responsivos del logo recortado. */
@media (max-width: 640px) {
  .nm-page-shell .nm-brand-logo {
    width: 138px !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
  }

  .nm-page-shell .nm-footer-logo {
    width: 158px !important;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
  }

  .nm-page-shell .nm-product-body p {
    min-height: auto !important;
  }
}
