/** Shopify CDN: Minification failed

Line 2801:0 Unexpected "}"

**/
/* =============================================
   NeuraGlow Brand Styles
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* CSS Variables */
:root {
  --ng-plum: #1A1016;
  --ng-ivory: #F5EBE6;
  --ng-rose-clay: #C9846A;
  --ng-blush: #E8C4B4;
  --ng-terracotta: #7A3F2E;
  --ng-plum-light: #2a1a24;
  --ng-font-heading: 'Cormorant Garamond', Georgia, serif;
  --ng-font-body: 'DM Sans', system-ui, sans-serif;
  --ng-transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* =============================================
   Sticky Nav
   ============================================= */
/* Announcement bar */
.ng-announce {
  background: var(--ng-rose-clay);
  padding: 9px 20px;
  text-align: center;
}
.ng-announce__text {
  font-family: var(--ng-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ng-ivory);
  margin: 0;
}

/* Hide the theme's default header — we use ng-nav on all custom pages */
#header-group { display: none !important; height: 0 !important; }

/* Since header-group is hidden, pin the header height variables to our nav height
   so product media containers and sticky offsets calculate correctly */
body {
  --header-height: 98px;
  --header-group-height: 98px;
  --sticky-header-offset: 98px;
  --viewport-offset: 98px;
}

/* Nav wrapper — sticky includes announcement bar */
.ng-nav-wrapper { position: sticky; top: 0; z-index: 999; }

/* Nav — 3-zone grid: burger | logo | cart */
.ng-nav {
  background: rgba(26, 16, 22, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 132, 106, 0.15);
  padding: 0 5%;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.ng-nav__burger {
  justify-self: start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
}
.ng-nav__burger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ng-ivory);
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: 1px;
}
.ng-nav__burger:hover .ng-nav__burger-line { background: var(--ng-rose-clay); }
.ng-nav__logo {
  justify-self: center;
  font-family: var(--ng-font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ng-ivory);
  letter-spacing: 0.1em;
  text-decoration: none;
}
.ng-nav__logo span { color: var(--ng-rose-clay); }
.ng-nav__cart {
  justify-self: end;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--ng-ivory);
  padding: 8px 4px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ng-nav__cart:hover { color: var(--ng-rose-clay); }
.ng-nav__cart-count {
  position: absolute;
  top: 2px;
  right: -6px;
  background: var(--ng-rose-clay);
  color: var(--ng-ivory);
  font-family: var(--ng-font-body);
  font-size: 0.58rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sidebar overlay */
.ng-sidebar__overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 16, 22, 0.75);
  z-index: 1199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ng-sidebar__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* Sidebar drawer */
.ng-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--ng-plum);
  border-right: 1px solid rgba(201, 132, 106, 0.15);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 28px 32px 40px;
  box-sizing: border-box;
  overflow-y: auto;
}
.ng-sidebar.is-open { transform: translateX(0); }
body.ng-no-scroll { overflow: hidden; }
.ng-sidebar__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(245, 235, 230, 0.45);
  padding: 4px;
  align-self: flex-end;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}
.ng-sidebar__close:hover { color: var(--ng-ivory); }
.ng-sidebar__logo {
  font-family: var(--ng-font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ng-ivory);
  letter-spacing: 0.1em;
  text-decoration: none;
  margin-bottom: 40px;
  display: block;
}
.ng-sidebar__logo span { color: var(--ng-rose-clay); }
.ng-sidebar__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ng-sidebar__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201, 132, 106, 0.1);
  text-decoration: none;
  transition: padding-left 0.2s ease;
}
.ng-sidebar__link:hover { padding-left: 6px; }
.ng-sidebar__link-label {
  font-family: var(--ng-font-heading);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ng-ivory);
  line-height: 1.1;
}
.ng-sidebar__link:hover .ng-sidebar__link-label { color: var(--ng-blush); }
.ng-sidebar__link-sub {
  font-family: var(--ng-font-body);
  font-size: 0.7rem;
  color: rgba(245, 235, 230, 0.38);
  letter-spacing: 0.06em;
}
.ng-sidebar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ng-rose-clay);
  color: var(--ng-ivory);
  font-family: var(--ng-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 2px;
  margin-top: 32px;
  transition: background 0.25s ease;
  align-self: flex-start;
}
.ng-sidebar__cta:hover { background: var(--ng-terracotta); }
.ng-sidebar__trust {
  margin-top: 20px;
  font-family: var(--ng-font-body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(245, 235, 230, 0.28);
  text-transform: uppercase;
}

/* =============================================
   Hero Section
   ============================================= */
.ng-hero {
  min-height: 92vh;
  background: var(--ng-plum);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 6%;
}
.ng-hero__bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 132, 106, 0.1) 0%, transparent 70%);
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  pointer-events: none;
}
.ng-hero__bg-glow--secondary {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(122, 63, 46, 0.1) 0%, transparent 70%);
  top: 20%;
  left: 5%;
}
.ng-hero__inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.ng-hero__text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ng-hero__image-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ng-hero__product-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.ng-hero__img-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,132,106,0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.ng-hero__eyebrow {
  font-family: var(--ng-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ng-rose-clay);
  margin-bottom: 20px;
  display: block;
}
.ng-hero__headline {
  font-family: var(--ng-font-heading);
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ng-ivory);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.ng-hero__headline em {
  font-style: italic;
  color: var(--ng-blush);
}
.ng-hero__subheadline {
  font-family: var(--ng-font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: rgba(245, 235, 230, 0.65);
  margin: 0 0 20px;
  letter-spacing: 0.04em;
}
.ng-hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}
.ng-hero__price {
  font-family: var(--ng-font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ng-ivory);
  letter-spacing: -0.01em;
}
.ng-hero__price-meta {
  font-family: var(--ng-font-body);
  font-size: 0.8rem;
  color: rgba(245,235,230,0.5);
  letter-spacing: 0.04em;
}
.ng-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ng-hero__trust-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ng-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ng-font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,235,230,0.45);
}
.ng-hero__trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(201,132,106,0.4);
  flex-shrink: 0;
}
.ng-btn--primary {
  background: var(--ng-rose-clay);
  color: var(--ng-ivory);
  font-family: var(--ng-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--ng-transition);
}
.ng-btn--primary:hover {
  background: var(--ng-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 132, 106, 0.4);
}
.ng-btn--secondary {
  background: transparent;
  color: var(--ng-ivory);
  font-family: var(--ng-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(245, 235, 230, 0.35);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--ng-transition);
}
.ng-btn--secondary:hover {
  border-color: var(--ng-blush);
  color: var(--ng-blush);
  transform: translateY(-2px);
}
.ng-hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: ng-bounce 2s ease-in-out infinite;
}
.ng-hero__scroll-hint span {
  font-family: var(--ng-font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ng-ivory);
}
.ng-hero__scroll-hint svg { color: var(--ng-rose-clay); }
@keyframes ng-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   Trust Bar
   ============================================= */
.ng-trust-bar {
  background: var(--ng-terracotta);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.ng-trust-bar__track {
  display: flex;
  animation: ng-marquee 30s linear infinite;
  width: max-content;
}
.ng-trust-bar__track:hover { animation-play-state: paused; }
.ng-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 48px;
  white-space: nowrap;
  font-family: var(--ng-font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ng-ivory);
}
.ng-trust-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(245, 235, 230, 0.4);
  flex-shrink: 0;
}
.ng-trust-bar__icon {
  font-size: 1rem;
  flex-shrink: 0;
}
@keyframes ng-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   Section Shared Styles
   ============================================= */
.ng-section {
  padding: 96px 5%;
}
.ng-section--dark {
  background: var(--ng-plum);
}
.ng-section--ivory {
  background: var(--ng-ivory);
}
.ng-section--plum-light {
  background: var(--ng-plum-light);
}
.ng-section__label {
  font-family: var(--ng-font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ng-rose-clay);
  display: block;
  margin-bottom: 16px;
  text-align: center;
}
.ng-section__headline {
  font-family: var(--ng-font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  margin: 0 auto 60px;
  max-width: 700px;
}
.ng-section__headline--ivory { color: var(--ng-ivory); }
.ng-section__headline--dark { color: var(--ng-plum); }
.ng-section__headline em { font-style: italic; color: var(--ng-rose-clay); }

/* =============================================
   Problem / Solution
   ============================================= */
.ng-ps {
  background: var(--ng-ivory);
  padding: 96px 5%;
}
.ng-ps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.ng-ps__card-dark {
  background: var(--ng-plum);
  border: 1px solid rgba(201, 132, 106, 0.2);
  border-radius: 4px;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ng-ps__card-dark::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 132, 106, 0.08) 0%, transparent 70%);
}
.ng-ps__problem-label {
  font-family: var(--ng-font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ng-rose-clay);
  margin-bottom: 24px;
}
.ng-ps__problem-text {
  font-family: var(--ng-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ng-ivory);
  margin: 0 0 32px;
  font-style: italic;
}
.ng-ps__solution-text {
  font-family: var(--ng-font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 235, 230, 0.65);
}
.ng-ps__image-col {
  border-radius: 4px;
  overflow: hidden;
  min-height: 480px;
  background: var(--ng-blush);
  position: relative;
}
.ng-ps__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ng-ps__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(135deg, var(--ng-blush) 0%, var(--ng-rose-clay) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.ng-ps__image-placeholder span {
  font-family: var(--ng-font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ng-ivory);
  opacity: 0.7;
}

/* =============================================
   Benefit Pillars
   ============================================= */
.ng-pillars {
  background: var(--ng-plum);
  padding: 96px 5%;
}
.ng-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.ng-pillar {
  background: rgba(245, 235, 230, 0.03);
  border: 1px solid rgba(201, 132, 106, 0.12);
  padding: 56px 40px;
  text-align: center;
  transition: var(--ng-transition);
  position: relative;
  overflow: hidden;
}
.ng-pillar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center bottom, rgba(201, 132, 106, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ng-pillar:hover::after { opacity: 1; }
.ng-pillar:hover {
  border-color: rgba(201, 132, 106, 0.3);
  transform: translateY(-4px);
}
.ng-pillar__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 132, 106, 0.1);
  border: 1px solid rgba(201, 132, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.5rem;
  color: var(--ng-rose-clay);
  position: relative;
  z-index: 1;
}
.ng-pillar__title {
  font-family: var(--ng-font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ng-ivory);
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}
.ng-pillar__wavelength {
  font-family: var(--ng-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--ng-rose-clay);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 1;
}
.ng-pillar__desc {
  font-family: var(--ng-font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(245, 235, 230, 0.55);
  position: relative;
  z-index: 1;
}

/* =============================================
   How It Works
   ============================================= */
.ng-hiw {
  background: var(--ng-ivory);
  padding: 96px 5%;
}
.ng-hiw__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.ng-hiw__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--ng-blush), var(--ng-rose-clay), var(--ng-blush));
  opacity: 0.5;
}
.ng-step {
  text-align: center;
  position: relative;
}
.ng-step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ng-plum);
  border: 1px solid var(--ng-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--ng-font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ng-ivory);
  position: relative;
  z-index: 1;
  transition: var(--ng-transition);
}
.ng-step:hover .ng-step__number {
  background: var(--ng-rose-clay);
  border-color: var(--ng-rose-clay);
  transform: scale(1.08);
}
.ng-step__title {
  font-family: var(--ng-font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ng-plum);
  margin: 0 0 12px;
}
.ng-step__desc {
  font-family: var(--ng-font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(26, 16, 22, 0.55);
}
.ng-step__tag {
  display: inline-block;
  font-family: var(--ng-font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ng-rose-clay);
  background: rgba(201, 132, 106, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 12px;
}

/* =============================================
   Before / After Results
   ============================================= */
.ng-results {
  background: var(--ng-plum-light);
  padding: 96px 5%;
}
.ng-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.ng-result-card {
  background: rgba(245, 235, 230, 0.03);
  border: 1px solid rgba(201, 132, 106, 0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--ng-transition);
}
.ng-result-card:hover {
  border-color: rgba(201, 132, 106, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.ng-results__grid--three {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.ng-result-card__image--tall {
  height: auto !important;
}
.ng-result-card__image--tall img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}
.ng-result-card__image {
  height: 220px;
  background: linear-gradient(135deg, rgba(201, 132, 106, 0.15) 0%, rgba(122, 63, 46, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ng-result-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ng-result-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--ng-rose-clay);
  color: var(--ng-ivory);
  font-family: var(--ng-font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.ng-result-card__body {
  padding: 24px;
}
.ng-result-card__name {
  font-family: var(--ng-font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ng-ivory);
  margin: 0 0 4px;
}
.ng-result-card__duration {
  font-family: var(--ng-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ng-rose-clay);
  margin-bottom: 12px;
  display: block;
}
.ng-result-card__text {
  font-family: var(--ng-font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245, 235, 230, 0.55);
}

/* =============================================
   Reviews
   ============================================= */
.ng-reviews {
  background: var(--ng-ivory);
  padding: 96px 5%;
}
.ng-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.ng-review-card {
  background: #fff;
  border: 1px solid rgba(201, 132, 106, 0.15);
  border-radius: 4px;
  padding: 36px;
  transition: var(--ng-transition);
  position: relative;
}
.ng-review-card:hover {
  border-color: rgba(201, 132, 106, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26, 16, 22, 0.08);
}
.ng-review-card__stars {
  color: var(--ng-rose-clay);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.ng-review-card__quote {
  font-family: var(--ng-font-heading);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ng-plum);
  margin: 0 0 24px;
}
.ng-review-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ng-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ng-blush), var(--ng-rose-clay));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ng-font-heading);
  font-size: 1rem;
  color: var(--ng-ivory);
  flex-shrink: 0;
}
.ng-review-card__name {
  font-family: var(--ng-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ng-plum);
}
.ng-review-card__meta {
  font-family: var(--ng-font-body);
  font-size: 0.75rem;
  color: rgba(26, 16, 22, 0.45);
}
.ng-review-card__verified {
  margin-left: auto;
  font-family: var(--ng-font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ng-rose-clay);
  background: rgba(201, 132, 106, 0.08);
  padding: 3px 8px;
  border-radius: 20px;
}

/* =============================================
   Science / Credibility
   ============================================= */
.ng-science {
  background: var(--ng-plum);
  padding: 32px 5% 96px;
}
.ng-science__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.ng-science__label {
  font-family: var(--ng-font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ng-rose-clay);
  display: block;
  margin-bottom: 20px;
}
.ng-science__headline {
  font-family: var(--ng-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ng-ivory);
  margin: 0 0 28px;
}
.ng-science__body {
  font-family: var(--ng-font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(245, 235, 230, 0.6);
  margin-bottom: 36px;
}
.ng-science__stat-row {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}
.ng-science__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ng-science__stat-num {
  font-family: var(--ng-font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ng-ivory);
  line-height: 1;
}
.ng-science__stat-label {
  font-family: var(--ng-font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(245, 235, 230, 0.45);
}

/* Light Penetration Graphic */
.ng-light-graphic {
  background: rgba(245, 235, 230, 0.03);
  border: 1px solid rgba(201, 132, 106, 0.15);
  border-radius: 8px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.ng-light-graphic__title {
  font-family: var(--ng-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ng-rose-clay);
  text-align: center;
  margin-bottom: 32px;
}
.ng-light-rays {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  height: 40px;
}
.ng-light-ray {
  width: 3px;
  border-radius: 2px;
  animation: ng-ray-pulse 2.5s ease-in-out infinite;
}
.ng-light-ray:nth-child(odd) {
  background: linear-gradient(to bottom, #ff6b6b, rgba(255, 107, 107, 0));
  height: 40px;
}
.ng-light-ray:nth-child(even) {
  background: linear-gradient(to bottom, #b366cc, rgba(179, 102, 204, 0));
  height: 30px;
  margin-top: 10px;
}
@keyframes ng-ray-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.ng-skin-layer {
  border-radius: 0 0 6px 6px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 132, 106, 0.1);
}
.ng-skin-layer__row {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  position: relative;
  overflow: hidden;
}
.ng-skin-layer__row--epidermis {
  background: rgba(232, 196, 180, 0.2);
  height: 52px;
}
.ng-skin-layer__row--dermis {
  background: rgba(201, 132, 106, 0.15);
  height: 68px;
}
.ng-skin-layer__row--hypodermis {
  background: rgba(122, 63, 46, 0.12);
  height: 80px;
}
.ng-skin-layer__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 14px;
}
.ng-skin-layer__row--epidermis .ng-skin-layer__indicator { background: #ff9999; }
.ng-skin-layer__row--dermis .ng-skin-layer__indicator { background: var(--ng-rose-clay); }
.ng-skin-layer__row--hypodermis .ng-skin-layer__indicator { background: var(--ng-terracotta); }
.ng-skin-layer__name {
  font-family: var(--ng-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex: 1;
}
.ng-skin-layer__row--epidermis .ng-skin-layer__name { color: rgba(245, 235, 230, 0.7); }
.ng-skin-layer__row--dermis .ng-skin-layer__name { color: var(--ng-blush); }
.ng-skin-layer__row--hypodermis .ng-skin-layer__name { color: rgba(245, 235, 230, 0.5); }
.ng-skin-layer__depth {
  font-family: var(--ng-font-body);
  font-size: 0.7rem;
  color: rgba(245, 235, 230, 0.35);
  letter-spacing: 0.05em;
}
.ng-skin-layer__beam {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  top: 0;
  opacity: 0.15;
}
.ng-skin-layer__row--epidermis .ng-skin-layer__beam { background: #ff6b6b; }
.ng-skin-layer__row--dermis .ng-skin-layer__beam {
  background: linear-gradient(to bottom, #ff6b6b 0%, #b366cc 100%);
  opacity: 0.2;
}
.ng-skin-layer__row--hypodermis .ng-skin-layer__beam {
  background: #b366cc;
  opacity: 0.1;
}
.ng-light-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.ng-light-legend__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ng-font-body);
  font-size: 0.7rem;
  color: rgba(245, 235, 230, 0.5);
  letter-spacing: 0.05em;
}
.ng-light-legend__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* =============================================
   FAQ
   ============================================= */
.ng-faq {
  background: var(--ng-ivory);
  padding: 96px 5%;
}
.ng-faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.ng-faq__item {
  border-bottom: 1px solid rgba(26, 16, 22, 0.1);
}
.ng-faq__item:first-child { border-top: 1px solid rgba(26, 16, 22, 0.1); }
.ng-faq__question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: var(--ng-transition);
}
.ng-faq__question:hover .ng-faq__q-text { color: var(--ng-rose-clay); }
.ng-faq__q-text {
  font-family: var(--ng-font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ng-plum);
  transition: color 0.25s ease;
}
.ng-faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(26, 16, 22, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--ng-transition);
  color: var(--ng-plum);
}
.ng-faq__item.open .ng-faq__icon {
  background: var(--ng-rose-clay);
  border-color: var(--ng-rose-clay);
  color: var(--ng-ivory);
  transform: rotate(45deg);
}
.ng-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0, 1, 0, 1);
}
.ng-faq__item.open .ng-faq__answer {
  max-height: 300px;
  transition: max-height 0.45s ease-in-out;
}
.ng-faq__answer-inner {
  padding: 0 0 24px;
  font-family: var(--ng-font-body);
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(26, 16, 22, 0.6);
}

/* =============================================
   Final CTA
   ============================================= */
.ng-cta-final {
  background: var(--ng-plum);
  padding: 96px 5% 32px;
  position: relative;
  overflow: hidden;
}
.ng-cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 132, 106, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.ng-cta-final__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ng-cta-final__label {
  font-family: var(--ng-font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ng-rose-clay);
  margin-bottom: 20px;
  display: block;
}
.ng-cta-final__headline {
  font-family: var(--ng-font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ng-ivory);
  margin: 0 0 20px;
}
.ng-cta-final__headline em {
  font-style: italic;
  color: var(--ng-blush);
}
.ng-cta-final__subtext {
  font-family: var(--ng-font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 235, 230, 0.55);
  margin-bottom: 36px;
}
.ng-cta-final__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.ng-cta-final__price {
  font-family: var(--ng-font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ng-ivory);
}
.ng-cta-final__price-note {
  font-family: var(--ng-font-body);
  font-size: 0.78rem;
  color: rgba(245, 235, 230, 0.4);
}
.ng-cta-final__add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  background: var(--ng-rose-clay);
  color: var(--ng-ivory);
  font-family: var(--ng-font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--ng-transition);
  margin-bottom: 16px;
}
.ng-cta-final__add-to-cart:hover {
  background: var(--ng-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 132, 106, 0.4);
}
.ng-cta-final__guarantee {
  font-family: var(--ng-font-body);
  font-size: 0.78rem;
  color: rgba(245, 235, 230, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ng-cta-final__guarantee::before {
  content: '✓';
  color: var(--ng-rose-clay);
  font-size: 0.85rem;
}
.ng-cta-final__image-col {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.ng-cta-final__image-col img {
  width: 100%;
  height: auto;
  display: block;
}
.ng-cta-final__image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, rgba(201, 132, 106, 0.12) 0%, rgba(122, 63, 46, 0.18) 100%);
  border: 1px solid rgba(201, 132, 106, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ng-cta-final__image-placeholder span {
  font-family: var(--ng-font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(245, 235, 230, 0.3);
}
.ng-cta-final__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.ng-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ng-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 235, 230, 0.5);
  border: 1px solid rgba(201, 132, 106, 0.2);
  padding: 6px 12px;
  border-radius: 2px;
}
.ng-badge svg { color: var(--ng-rose-clay); }

/* =============================================
   Scroll Fade Animations
   ============================================= */
.ng-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ng-fade-in.ng-visible {
  opacity: 1;
  transform: translateY(0);
}
.ng-fade-in--delay-1 { transition-delay: 0.1s; }
.ng-fade-in--delay-2 { transition-delay: 0.2s; }
.ng-fade-in--delay-3 { transition-delay: 0.3s; }
.ng-fade-in--delay-4 { transition-delay: 0.4s; }

/* =============================================
   Product Page — Full Dark Luxury Brand Override
   ============================================= */

/* Page-level dark background */
/* Translucent circle behind gallery arrows */
.template-product .slideshow-control,
.template-product slideshow-arrows .slideshow-control,
.template-product .media-gallery .slideshow-control {
  background: rgba(26, 16, 22, 0.55) !important;
  backdrop-filter: blur(8px) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(201, 132, 106, 0.4) !important;
  overflow: visible !important;
  transition: background 0.2s ease !important;
  color: #F5EBE6 !important;
}
.template-product .slideshow-control:hover,
.template-product slideshow-arrows .slideshow-control:hover {
  background: rgba(201, 132, 106, 0.5) !important;
}
.template-product .slideshow-control svg,
.template-product .slideshow-control .svg-wrapper {
  color: #F5EBE6 !important;
  width: 20px !important;
  height: 20px !important;
}

/* Fix sticky offset so product info column doesn't jump on scroll —
   our nav (64px) + announcement bar (34px) = 98px.
   Dawn's header.js ResizeObserver resets --header-height to 0px (hidden header),
   and product-information-content.liquid's :has() rule then sets
   --sticky-header-offset: var(--header-height) = 0px.
   We override with !important here AND in JS (neuraglow.js). */
.template-product {
  --sticky-header-offset: 98px !important;
  --header-height: 98px !important;
}

/* Beat the :has() rule in product-information-content.liquid that resolves to 0px */
.template-product .product-details.sticky-content--desktop,
.template-product .product-details.sticky-content {
  --sticky-header-offset: 98px !important;
}

@media (min-width: 750px) {
  .template-product .sticky-content,
  .template-product .sticky-content--desktop {
    top: 108px !important;
  }
}

.template-product body,
.template-product,
.template-product main,
.template-product .page-width,
.template-product .shopify-section,
.template-product .section-background,
.template-product [class*="color-scheme"],
.template-product .color-scheme-1,
.template-product .color-scheme-2 {
  background: var(--ng-plum) !important;
  --color-background: 26, 16, 22 !important;
  --color-foreground: 245, 235, 230 !important;
  --color-foreground-heading: 245, 235, 230 !important;
  --color-foreground-muted: 180, 155, 145 !important;
  --color-border: rgba(201, 132, 106, 0.18) !important;
}

/* Product layout container */
.template-product .product {
  background: var(--ng-plum) !important;
}

/* All text defaults to ivory */
.template-product p,
.template-product span,
.template-product div,
.template-product li,
.template-product label {
  color: rgba(245, 235, 230, 0.8);
}

/* Product title */
.template-product h1,
.template-product h2,
.template-product h3,
.template-product .product__title {
  font-family: var(--ng-font-heading) !important;
  font-weight: 400 !important;
  color: var(--ng-ivory) !important;
  letter-spacing: 0.01em;
}

/* Eyebrow / label text */
.template-product .product__vendor,
.template-product .product-block--text p:first-child {
  font-family: var(--ng-font-body) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--ng-rose-clay) !important;
}

/* Star / review text */
.template-product .product-block--text p {
  color: rgba(245, 235, 230, 0.85) !important;
  font-family: var(--ng-font-body) !important;
}

/* Price */
.template-product .price,
.template-product .price__regular,
.template-product .price__sale,
.template-product .price-item {
  font-family: var(--ng-font-body) !important;
  color: var(--ng-ivory) !important;
  font-size: 1.5rem !important;
}

/* Dividers */
.template-product hr,
.template-product .product-block--divider {
  border-color: rgba(201, 132, 106, 0.18) !important;
}

/* Variant buttons */
.template-product .variant-input-wrapper label,
.template-product .swatch-label,
.template-product .btn--variant {
  background: rgba(245, 235, 230, 0.06) !important;
  color: var(--ng-ivory) !important;
  border: 1px solid rgba(201, 132, 106, 0.25) !important;
  border-radius: 2px !important;
  font-family: var(--ng-font-body) !important;
  transition: all 0.2s ease !important;
}
.template-product .variant-input-wrapper input:checked + label,
.template-product .swatch-label.selected {
  background: var(--ng-rose-clay) !important;
  border-color: var(--ng-rose-clay) !important;
  color: var(--ng-ivory) !important;
}

/* Quantity input */
.template-product .quantity__input,
.template-product .quantity input {
  background: rgba(245, 235, 230, 0.06) !important;
  color: var(--ng-ivory) !important;
  border-color: rgba(201, 132, 106, 0.25) !important;
  font-family: var(--ng-font-body) !important;
}
.template-product .quantity__button {
  color: var(--ng-ivory) !important;
  background: transparent !important;
  border-color: rgba(201, 132, 106, 0.25) !important;
}

/* Add to cart + all product buttons → rose clay */
.template-product .button--primary,
.template-product button[name="add"],
.template-product .product-form__submit,
.template-product .button,
.template-product [id*="ProductSubmitButton"],
.template-product button.product-form__submit {
  background: #C9846A !important;
  color: #F5EBE6 !important;
  border: none !important;
  border-radius: 2px !important;
  font-family: var(--ng-font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-size: 0.85rem !important;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
  box-shadow: 0 4px 24px rgba(201,132,106,0.22) !important;
}
.template-product .button--primary:hover,
.template-product button[name="add"]:hover,
.template-product .product-form__submit:hover,
.template-product .button:hover {
  background: #7A3F2E !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 32px rgba(201,132,106,0.38) !important;
}

/* Buy it now / dynamic checkout buttons */
.template-product .shopify-payment-button__button,
.template-product .shopify-payment-button__button--unbranded,
.template-product .shopify-payment-button__button--branded {
  background: #7A3F2E !important;
  color: #F5EBE6 !important;
  border-radius: 2px !important;
  border: none !important;
  font-family: var(--ng-font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}
.template-product .shopify-payment-button__button:hover,
.template-product .shopify-payment-button__button--unbranded:hover {
  background: #C9846A !important;
}

/* Quantity selector border */
.template-product .quantity,
.template-product .quantity__input,
.template-product .quantity__button {
  border-color: rgba(201,132,106,0.4) !important;
  color: #F5EBE6 !important;
  background: transparent !important;
}

/* Product description / RTE */
.template-product .product__description,
.template-product .rte,
.template-product .rte p {
  font-family: var(--ng-font-body) !important;
  color: rgba(245, 235, 230, 0.5) !important;
  font-size: 0.8rem !important;
  line-height: 1.6 !important;
}

/* Product description: vertical dash list */
.template-product .rte-table-wrapper {
  overflow: visible !important;
}
.template-product .rte table,
.template-product .rte table tbody,
.template-product .rte table tr {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  border: none !important;
  background: none !important;
  gap: 0 !important;
}
.template-product .rte table td,
.template-product .rte table th {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 3px 0 3px 18px !important;
  position: relative !important;
  font-family: var(--ng-font-body) !important;
  color: rgba(245,235,230,0.72) !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  white-space: normal !important;
}
.template-product .rte table td::before,
.template-product .rte table th::before {
  content: '—' !important;
  position: absolute !important;
  left: 0 !important;
  color: #C9846A !important;
  display: block !important;
}

/* Styled bullet points */
.template-product .rte ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 12px 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.template-product .rte ul li {
  font-family: var(--ng-font-body) !important;
  color: rgba(245, 235, 230, 0.72) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  padding-left: 20px !important;
  position: relative !important;
}
.template-product .rte ul li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 8px !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: var(--ng-rose-clay) !important;
}
.template-product .rte ol {
  list-style: none !important;
  padding: 0 !important;
  margin: 12px 0 !important;
  counter-reset: ng-counter;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.template-product .rte ol li {
  font-family: var(--ng-font-body) !important;
  color: rgba(245, 235, 230, 0.72) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  padding-left: 28px !important;
  position: relative !important;
  counter-increment: ng-counter;
}
.template-product .rte ol li::before {
  content: counter(ng-counter) !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-family: var(--ng-font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: var(--ng-rose-clay) !important;
  letter-spacing: 0.05em !important;
  line-height: 1.6 !important;
}

/* Media gallery — image border/radius */
.template-product .product__media,
.template-product .product-media-container {
  border-radius: 4px !important;
  overflow: hidden !important;
}

/* Thumbnail strip */
.template-product .thumbnail-slider__button,
.template-product .product__thumbnail {
  border-color: rgba(201, 132, 106, 0.2) !important;
  border-radius: 2px !important;
}
.template-product .thumbnail-slider__button--active,
.template-product .product__thumbnail--active {
  border-color: var(--ng-rose-clay) !important;
}

/* Guarantee / small trust text */
.template-product .product-block--text p[style*="opacity"],
.template-product .product-block--text span {
  color: rgba(245, 235, 230, 0.45) !important;
}

/* Sticky details panel */
.template-product .product__info-sticky-container {
  background: transparent !important;
}

/* ── PDP Trust Strip ── */
.ng-pdp-trust {
  background: var(--ng-plum);
  border-top: 1px solid rgba(201, 132, 106, 0.15);
  border-bottom: 1px solid rgba(201, 132, 106, 0.15);
  padding: 18px 5%;
}
.ng-pdp-trust__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.ng-pdp-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ng-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 235, 230, 0.7);
}
.ng-pdp-trust__item svg { color: var(--ng-rose-clay); flex-shrink: 0; }
.ng-pdp-trust__sep {
  width: 1px;
  height: 16px;
  background: rgba(201, 132, 106, 0.25);
}

/* ── PDP Benefits ── */
.ng-pdp-benefits {
  background: var(--ng-ivory);
  padding: 72px 5%;
  border-top: 1px solid rgba(201, 132, 106, 0.12);
}
.ng-pdp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.ng-pdp-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ng-pdp-benefit__icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 132, 106, 0.1);
  border: 1px solid rgba(201, 132, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ng-rose-clay);
}
.ng-pdp-benefit__title {
  font-family: var(--ng-font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ng-plum);
  margin: 0 0 4px;
}
.ng-pdp-benefit__desc {
  font-family: var(--ng-font-body);
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(26, 16, 22, 0.5);
  margin: 0;
}

/* ── PDP Before/After ── */
.ng-pdp-ba {
  background: var(--ng-plum-light);
  padding: 80px 5%;
}
.ng-pdp-ba__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.ng-pdp-ba__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.ng-pdp-ba__card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 132, 106, 0.15);
  transition: var(--ng-transition);
}
.ng-pdp-ba__card:hover {
  border-color: rgba(201, 132, 106, 0.35);
  transform: translateY(-3px);
}
.ng-pdp-ba__card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── PDP Reviews ── */
.ng-pdp-reviews {
  background: var(--ng-ivory);
  padding: 80px 5%;
  text-align: center;
}
.ng-pdp-reviews .ng-reviews__grid {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── PDP FAQ ── */
.ng-pdp-faq {
  background: #fff;
  padding: 80px 5%;
  text-align: center;
}
.ng-pdp-faq .ng-faq__list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 900px) {
  .ng-pdp-benefits__grid { grid-template-columns: 1fr 1fr; }
  .ng-pdp-ba__grid { grid-template-columns: 1fr; }
  .ng-pdp-trust__sep { display: none; }
  .ng-pdp-trust__inner { gap: 12px 0; flex-direction: column; align-items: flex-start; padding: 0 5%; }
}
@media (max-width: 600px) {
  .ng-pdp-benefits__grid { grid-template-columns: 1fr; }
}

/* =============================================
   Custom NeuraGlow Footer
   ============================================= */
.ng-footer-wrapper { background: var(--ng-plum); }
.ng-footer {
  background: var(--ng-plum);
  border-top: 1px solid rgba(201, 132, 106, 0.18);
  padding: 28px 5% 0;
  font-family: var(--ng-font-body);
}
.ng-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.8fr;
  gap: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 132, 106, 0.12);
}
.ng-footer__logo {
  display: inline-block;
  font-family: var(--ng-font-heading);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ng-ivory);
  text-decoration: none;
  margin-bottom: 14px;
}
.ng-footer__logo span { color: var(--ng-rose-clay); }
.ng-footer__tagline {
  font-size: 0.85rem;
  color: rgba(245, 235, 230, 0.45);
  line-height: 1.7;
  margin: 0 0 20px;
}
.ng-footer__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ng-footer__trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 235, 230, 0.5);
}
.ng-footer__trust-sep {
  width: 1px;
  height: 12px;
  background: rgba(201, 132, 106, 0.25);
}
.ng-footer__col-heading {
  font-family: var(--ng-font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ng-ivory);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.ng-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ng-footer__links a {
  font-size: 0.85rem;
  color: rgba(245, 235, 230, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ng-footer__links a:hover { color: var(--ng-rose-clay); }
.ng-footer__email-desc {
  font-size: 0.82rem;
  color: rgba(245, 235, 230, 0.42);
  line-height: 1.6;
  margin: 0 0 14px;
}
.ng-footer__email-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201, 132, 106, 0.28);
  border-radius: 2px;
  overflow: hidden;
}
.ng-footer__email-input {
  flex: 1;
  background: rgba(245, 235, 230, 0.04);
  border: none;
  outline: none;
  padding: 11px 14px;
  font-family: var(--ng-font-body);
  font-size: 0.82rem;
  color: var(--ng-ivory);
}
.ng-footer__email-input::placeholder { color: rgba(245, 235, 230, 0.28); }
.ng-footer__email-input:focus { background: rgba(201, 132, 106, 0.06); }
.ng-footer__email-btn {
  background: var(--ng-rose-clay);
  border: none;
  padding: 0 16px;
  cursor: pointer;
  color: var(--ng-ivory);
  display: flex;
  align-items: center;
  transition: background 0.2s ease;
}
.ng-footer__email-btn:hover { background: var(--ng-terracotta); }
.ng-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 14px;
}
.ng-footer__copy {
  font-size: 0.78rem;
  color: rgba(245, 235, 230, 0.28);
  margin: 0;
}
.ng-footer__social {
  display: flex;
  gap: 16px;
}
.ng-footer__social-link {
  color: rgba(245, 235, 230, 0.38);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}
.ng-footer__social-link:hover { color: var(--ng-rose-clay); }
@media (max-width: 900px) {
  .ng-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ng-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .ng-footer__inner { grid-template-columns: 1fr; }
  .ng-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* =============================================
   Footer Brand Override
   ============================================= */
#footer-group,
#footer-group .section-background,
#footer-group .section {
  background: var(--ng-plum) !important;
  --color-background: #1A1016 !important;
  --color-foreground: 245, 235, 230 !important;
  --color-foreground-heading: 245, 235, 230 !important;
  --color-foreground-muted: 180, 155, 145 !important;
  --color-border: rgba(201, 132, 106, 0.15) !important;
}

#footer-group {
  border-top: 1px solid rgba(201, 132, 106, 0.2);
}

/* Footer text and links */
#footer-group p,
#footer-group span,
#footer-group li,
#footer-group div {
  color: rgba(245, 235, 230, 0.6);
}

#footer-group h1,
#footer-group h2,
#footer-group h3,
#footer-group h4,
#footer-group h5,
#footer-group h6 {
  color: var(--ng-ivory) !important;
  font-family: var(--ng-font-heading) !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em;
}

#footer-group a {
  color: rgba(245, 235, 230, 0.55) !important;
  text-decoration: none;
  font-family: var(--ng-font-body);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
#footer-group a:hover {
  color: var(--ng-rose-clay) !important;
}

/* Menu headings */
#footer-group .menu__heading {
  color: var(--ng-ivory) !important;
  font-family: var(--ng-font-heading) !important;
  font-size: 1rem !important;
  letter-spacing: 0.08em;
}

/* Email input */
#footer-group input[type="email"] {
  background: rgba(245, 235, 230, 0.05) !important;
  border: 1px solid rgba(201, 132, 106, 0.3) !important;
  color: var(--ng-ivory) !important;
  font-family: var(--ng-font-body) !important;
  border-radius: 2px !important;
}
#footer-group input[type="email"]::placeholder {
  color: rgba(245, 235, 230, 0.35) !important;
}
#footer-group input[type="email"]:focus {
  outline: none !important;
  border-color: var(--ng-rose-clay) !important;
}

/* Email sign-up button */
#footer-group button[type="submit"],
#footer-group .button {
  background: var(--ng-rose-clay) !important;
  color: var(--ng-ivory) !important;
  border: none !important;
  font-family: var(--ng-font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  transition: background 0.25s ease !important;
}
#footer-group button[type="submit"]:hover,
#footer-group .button:hover {
  background: var(--ng-terracotta) !important;
}

/* Footer utilities bar (copyright + social) */
#footer-group .utilities {
  border-top-color: rgba(201, 132, 106, 0.15) !important;
  background: var(--ng-plum) !important;
}
#footer-group .utilities * {
  color: rgba(245, 235, 230, 0.35) !important;
}
#footer-group .utilities a:hover,
#footer-group .utilities svg:hover {
  color: var(--ng-rose-clay) !important;
}
#footer-group svg {
  color: rgba(245, 235, 230, 0.4) !important;
}
#footer-group svg:hover {
  color: var(--ng-rose-clay) !important;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 900px) {
  .ng-ps__grid,
  .ng-science__grid,
  .ng-cta-final__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ng-pillars__grid,
  .ng-hiw__grid,
  .ng-results__grid,
  .ng-reviews__grid {
    grid-template-columns: 1fr;
  }
  .ng-hiw__grid::before { display: none; }
  .ng-cta-final__image-col { order: -1; }
  .ng-ps__image-col { min-height: 320px; }
  .ng-section { padding: 64px 5%; }
  .ng-cta-final { padding-bottom: 24px; }
  .ng-science.ng-section { padding-top: 24px; }
  .ng-hero { min-height: auto; padding: 64px 5% 80px; }
  .ng-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .ng-hero__text-col { align-items: center; text-align: center; }
  .ng-hero__ctas { justify-content: center; }
  .ng-hero__trust-strip { justify-content: center; gap: 6px; flex-wrap: nowrap; }
  .ng-hero__trust-item { font-size: 0.6rem; letter-spacing: 0.08em; }
  .ng-hero__scroll-hint { display: none; }
  .ng-hero__image-col { order: -1; margin-left: -5vw; margin-right: -5vw; width: calc(100% + 10vw); }
  .ng-hero__product-img { max-width: 100%; width: 100%; border-radius: 0; }
}
@media (max-width: 600px) {
  .ng-pillars__grid { grid-template-columns: 1fr; }
  .ng-results__grid { grid-template-columns: 1fr; }
  .ng-reviews__grid { grid-template-columns: 1fr; }
  .ng-hero__ctas { flex-direction: column; align-items: center; }
  .ng-btn--primary, .ng-btn--secondary { width: 100%; max-width: 320px; justify-content: center; }
  .ng-science__stat-row { flex-wrap: wrap; gap: 20px; }
  .ng-nav { padding: 0 4%; }
}

/* Hide default theme header — NeuraGlow uses its own ng-nav */
#shopify-section-header,
header-drawer,
.header-wrapper,
.header__heading,
.header__icon--menu {
  display: none !important;
}

/* =============================================
   Contact Page
   ============================================= */
.ng-contact-wrapper,
.ng-contact {
  background: var(--ng-plum);
}
.ng-contact {
  padding: 80px 5% 100px;
  min-height: 70vh;
}
.ng-contact__inner {
  max-width: 680px;
  margin: 0 auto;
}
.ng-contact__eyebrow {
  display: block;
  font-family: var(--ng-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ng-rose-clay);
  margin-bottom: 12px;
}
.ng-contact__headline {
  font-family: var(--ng-font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--ng-ivory);
  line-height: 1.1;
  margin: 0 0 16px;
}
.ng-contact__subtext {
  font-family: var(--ng-font-body);
  font-size: 1rem;
  color: rgba(245,235,230,0.65);
  line-height: 1.7;
  margin: 0 0 48px;
}
.ng-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ng-contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.ng-contact__label {
  font-family: var(--ng-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,235,230,0.55);
}
.ng-contact__required {
  color: var(--ng-rose-clay);
}
.ng-contact__input,
.ng-contact-wrapper input[type],
.ng-contact-wrapper textarea,
.ng-contact-wrapper select,
#ng-contact-form input,
#ng-contact-form textarea,
#ng-contact-form select {
  background: #2d1f28 !important;
  border: 1.5px solid #C9846A !important;
  border-radius: 3px !important;
  padding: 13px 16px !important;
  font-family: var(--ng-font-body) !important;
  font-size: 0.92rem !important;
  color: #F5EBE6 !important;
  outline: none !important;
  transition: border-color 0.2s ease, background 0.2s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
}
.ng-contact__input::placeholder,
.ng-contact-wrapper input::placeholder,
.ng-contact-wrapper textarea::placeholder {
  color: rgba(245,235,230,0.45) !important;
}
.ng-contact__input:focus,
.ng-contact-wrapper input:focus,
.ng-contact-wrapper textarea:focus,
.ng-contact-wrapper select:focus {
  border-color: #C9846A !important;
  background: #321f2b !important;
  box-shadow: none !important;
}
.ng-contact__select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9846A' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.ng-contact__select option {
  background: var(--ng-plum);
  color: var(--ng-ivory);
}
.ng-contact__textarea {
  resize: vertical;
  min-height: 140px;
}
.ng-contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ng-rose-clay);
  color: var(--ng-ivory);
  border: none;
  border-radius: 3px;
  padding: 15px 32px;
  font-family: var(--ng-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
  margin-top: 8px;
}
.ng-contact__submit:hover {
  background: var(--ng-terracotta);
  transform: translateY(-1px);
}
.ng-contact__success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,132,106,0.12);
  border: 1px solid rgba(201,132,106,0.4);
  border-radius: 3px;
  padding: 14px 18px;
  font-family: var(--ng-font-body);
  font-size: 0.9rem;
  color: var(--ng-ivory);
  margin-bottom: 28px;
}
.ng-contact__errors {
  background: rgba(122,63,46,0.18);
  border: 1px solid rgba(122,63,46,0.5);
  border-radius: 3px;
  padding: 14px 18px;
  font-family: var(--ng-font-body);
  font-size: 0.85rem;
  color: #E8A090;
  margin-bottom: 28px;
}
.ng-contact__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.ng-contact__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ng-font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,235,230,0.45);
}
.ng-contact__trust-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(201,132,106,0.4);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .ng-contact__row { grid-template-columns: 1fr; }
  .ng-contact { padding: 60px 5% 80px; }
}

/* =============================================
   Cart Page
   ============================================= */
.template-cart body,
.template-cart,
.template-cart main,
.template-cart .shopify-section,
.template-cart [class*="color-scheme"],
.template-cart .page-width {
  background: #1A1016 !important;
  background-color: #1A1016 !important;
  --color-background: 26, 16, 22 !important;
  --color-foreground: 245, 235, 230 !important;
  --color-border: 201, 132, 106 !important;
}

/* Stretch cart to fill viewport so no dark gap below footer */
.template-cart body {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100vh !important;
}
.template-cart main {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.template-cart #shopify-section-cart-section {
  flex: 1 !important;
  min-height: 70vh !important;
}

/* All text */
.template-cart p,
.template-cart span,
.template-cart div,
.template-cart li,
.template-cart label,
.template-cart h1,
.template-cart h2,
.template-cart h3,
.template-cart h4,
.template-cart h5,
.template-cart a {
  color: #F5EBE6 !important;
  font-family: var(--ng-font-body) !important;
}

/* Cart title */
.template-cart h1,
.template-cart h2,
.template-cart h3,
.template-cart h4 {
  font-family: var(--ng-font-heading) !important;
  color: #F5EBE6 !important;
}

/* Dividers / borders */
.template-cart hr,
.template-cart [class*="divider"],
.template-cart .cart-items td,
.template-cart .cart-items th {
  border-color: rgba(201,132,106,0.15) !important;
}

/* Product name & price in cart */
.template-cart .cart-item__name,
.template-cart .cart-item__details a,
.template-cart .price,
.template-cart .price__regular,
.template-cart .totals__total-value {
  color: #F5EBE6 !important;
}

.template-cart .cart-item__vendor,
.template-cart .cart-item__discounts,
.template-cart .totals__subtotal {
  color: rgba(245,235,230,0.55) !important;
}

/* Quantity input */
.template-cart .quantity,
.template-cart .quantity__input,
.template-cart .quantity__button,
.template-cart input[type="number"] {
  background: transparent !important;
  background-color: transparent !important;
  border-color: rgba(201,132,106,0.4) !important;
  color: #F5EBE6 !important;
  -webkit-text-fill-color: #F5EBE6 !important;
}

/* Remove link */
.template-cart .cart-item__remove,
.template-cart .cart-item__remove * {
  color: rgba(245,235,230,0.4) !important;
  transition: color 0.2s ease !important;
}
.template-cart .cart-item__remove:hover,
.template-cart .cart-item__remove:hover * {
  color: #C9846A !important;
}

/* Order note / special instructions */
.template-cart textarea,
.template-cart input[type="text"] {
  background: rgba(245,235,230,0.06) !important;
  border: 1px solid rgba(201,132,106,0.35) !important;
  color: #F5EBE6 !important;
  -webkit-text-fill-color: #F5EBE6 !important;
  border-radius: 3px !important;
}
.template-cart textarea::placeholder,
.template-cart input[type="text"]::placeholder {
  color: rgba(245,235,230,0.35) !important;
  -webkit-text-fill-color: rgba(245,235,230,0.35) !important;
}

/* Checkout / update cart buttons */
.template-cart .cart__checkout-button,
.template-cart button[name="checkout"],
.template-cart .button--primary,
.template-cart .button {
  background: #C9846A !important;
  background-color: #C9846A !important;
  color: #F5EBE6 !important;
  -webkit-text-fill-color: #F5EBE6 !important;
  border: none !important;
  border-radius: 2px !important;
  font-family: var(--ng-font-body) !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 24px rgba(201,132,106,0.25) !important;
  transition: background 0.25s ease, transform 0.2s ease !important;
}
.template-cart .cart__checkout-button:hover,
.template-cart button[name="checkout"]:hover,
.template-cart .button--primary:hover,
.template-cart .button:hover {
  background: #7A3F2E !important;
  background-color: #7A3F2E !important;
  transform: translateY(-1px) !important;
}

/* Summary / totals box */
.template-cart .cart__footer,
.template-cart .cart-summary,
.template-cart [class*="cart-summary"],
.template-cart .totals {
  background: rgba(245,235,230,0.04) !important;
  border: 1px solid rgba(201,132,106,0.15) !important;
  border-radius: 4px !important;
}

/* Shipping / tax note */
.template-cart .cart__shipping,
.template-cart .tax-note,
.template-cart small {
  color: rgba(245,235,230,0.45) !important;
  font-size: 0.75rem !important;
}

/* Empty cart */
.template-cart .cart__empty-text,
.template-cart [class*="empty"] p,
.template-cart [class*="empty"] h2 {
  color: #F5EBE6 !important;
}
.template-cart .cart__continue-shopping,
.template-cart [class*="continue"] a {
  color: #C9846A !important;
  border-color: rgba(201,132,106,0.4) !important;
}

/* Cart section min height so it doesn't feel cramped */
.template-cart #shopify-section-cart-section {
  min-height: 60vh !important;
}

/* Wider cart layout on desktop */
@media (min-width: 990px) {
  .template-cart .page-width,
  .template-cart [class*="page-width"],
  .template-cart .cart,
  .template-cart #shopify-section-cart-section > div,
  .template-cart main > div {
    max-width: 1200px !important;
    width: 92% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

/* NeuraGlow — Discount Popup */
.ng-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 16, 22, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.ng-popup-overlay.ng-popup--visible {
  opacity: 1;
  pointer-events: all;
}
.ng-popup {
  position: relative;
  background: #1A1016;
  border: 1px solid rgba(201, 132, 106, 0.28);
  border-radius: 4px;
  max-width: 480px;
  width: 100%;
  padding: 48px 44px 44px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,132,106,0.08);
  transform: translateY(12px);
  transition: transform 0.35s ease;
  text-align: center;
}
.ng-popup-overlay.ng-popup--visible .ng-popup {
  transform: translateY(0);
}
.ng-popup__close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(245,235,230,0.4);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.2s;
}
.ng-popup__close:hover { color: var(--ng-ivory); }
.ng-popup__badge {
  display: inline-block;
  background: rgba(201,132,106,0.12);
  border: 1px solid rgba(201,132,106,0.35);
  color: var(--ng-rose-clay);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}
.ng-popup__headline {
  font-family: var(--ng-font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ng-ivory);
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.ng-popup__headline em {
  font-style: normal;
  color: var(--ng-rose-clay);
}
.ng-popup__sub {
  font-size: 0.88rem;
  color: rgba(245,235,230,0.55);
  line-height: 1.65;
  margin: 0 0 28px;
}
.ng-popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ng-popup__input {
  background: #2d1f28;
  border: 1.5px solid rgba(201,132,106,0.4);
  border-radius: 3px;
  color: var(--ng-ivory);
  font-size: 0.92rem;
  padding: 13px 16px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-text-fill-color: var(--ng-ivory);
}
.ng-popup__input::placeholder {
  color: rgba(245,235,230,0.38);
  -webkit-text-fill-color: rgba(245,235,230,0.38);
}
.ng-popup__input:focus {
  border-color: var(--ng-rose-clay);
  box-shadow: 0 0 0 3px rgba(201,132,106,0.15);
}
.ng-popup__submit {
  background: var(--ng-rose-clay);
  color: var(--ng-ivory);
  border: none;
  border-radius: 3px;
  padding: 14px 24px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.ng-popup__submit:hover { background: #7A3F2E; }
.ng-popup__code-reveal {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}
.ng-popup__code-reveal.ng-popup--show { display: flex; }
.ng-popup__code-label {
  font-size: 0.75rem;
  color: rgba(245,235,230,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ng-popup__code-box {
  background: rgba(201,132,106,0.1);
  border: 1.5px dashed rgba(201,132,106,0.5);
  border-radius: 3px;
  padding: 12px 28px;
  font-family: var(--ng-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ng-rose-clay);
  cursor: pointer;
  user-select: all;
  transition: background 0.2s;
}
.ng-popup__code-box:hover { background: rgba(201,132,106,0.18); }
.ng-popup__code-hint {
  font-size: 0.75rem;
  color: rgba(245,235,230,0.4);
}
.ng-popup__no-thanks {
  background: none;
  border: none;
  color: rgba(245,235,230,0.3);
  font-size: 0.75rem;
  cursor: pointer;
  margin-top: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  display: inline-block;
}
.ng-popup__no-thanks:hover { color: rgba(245,235,230,0.6); }
@media (max-width: 480px) {
  .ng-popup { padding: 40px 24px 32px; }
  .ng-popup__headline { font-size: 1.7rem; }
}
}

/* NeuraGlow — Blog & Article dark theme */
.template-blog,
.template-article {
  background: #1A1016 !important;
  color: #F5EBE6 !important;
}

.template-blog body,
.template-article body,
.template-blog main,
.template-article main,
.template-blog .shopify-section,
.template-article .shopify-section,
.template-blog [class*="color-scheme"],
.template-article [class*="color-scheme"],
.template-blog .color-scheme-1,
.template-article .color-scheme-1 {
  background: #1A1016 !important;
  color: #F5EBE6 !important;
  --color-background: 26, 16, 22 !important;
  --color-foreground: 245, 235, 230 !important;
  --color-foreground-heading: 245, 235, 230 !important;
  --color-foreground-muted: 180, 155, 145 !important;
  --color-border: rgba(201, 132, 106, 0.2) !important;
}

/* Blog listing title */
.template-blog h1,
.template-blog h2,
.template-blog h3,
.template-article h1,
.template-article h2,
.template-article h3 {
  color: #F5EBE6 !important;
}

/* Blog post cards */
.template-blog .blog-post-card,
.template-blog [class*="blog-post"],
.template-blog article {
  background: #241520 !important;
  border: 1px solid rgba(201,132,106,0.15) !important;
  border-radius: 4px !important;
}

.template-blog .blog-post-card a,
.template-blog [class*="blog-post"] a,
.template-blog article a {
  color: #F5EBE6 !important;
  text-decoration: none;
}

.template-blog .blog-post-card a:hover,
.template-blog [class*="blog-post"] a:hover {
  color: #C9846A !important;
}

/* Article body content */
.template-article .rte,
.template-article [class*="article__content"],
.template-article [class*="blog-post-content"] {
  color: rgba(245,235,230,0.82) !important;
  line-height: 1.8;
  font-size: 1rem;
}

.template-article .rte p,
.template-article .rte li {
  color: rgba(245,235,230,0.82) !important;
}

.template-article .rte strong,
.template-article .rte b {
  color: #F5EBE6 !important;
}

.template-article .rte h2,
.template-article .rte h3,
.template-article .rte h4 {
  color: #F5EBE6 !important;
  margin-top: 2em;
}

.template-article .rte a {
  color: #C9846A !important;
}

/* Date/meta info */
.template-blog [class*="blog-post-info"],
.template-blog [class*="article-meta"],
.template-article [class*="blog-post-info"],
.template-article [class*="article-meta"] {
  color: rgba(245,235,230,0.45) !important;
}

/* Article max width for readability */
.template-article main > .shopify-section > * {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Back to blog link */
.template-article [class*="back"] a,
.template-article .breadcrumb a {
  color: #C9846A !important;
}

/* =============================================
   Product Page — Media Gallery (sticky viewport-height panel)
   ============================================= */
@media screen and (min-width: 750px) {
  /* Sticky left panel — fills viewport height below the nav */
  [data-template="product"] .product-information__media {
    position: sticky !important;
    top: var(--header-height, 98px) !important;
    height: calc(100vh - var(--header-height, 98px)) !important;
    align-self: start !important;
    display: block !important;
    overflow: hidden !important;
  }

  /* media-gallery becomes a flex column to pass height down */
  [data-template="product"] .product-information__media media-gallery {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  /* slideshow-component (already flex col natively) fills media-gallery */
  [data-template="product"] .product-information__media slideshow-component {
    flex: 1 1 auto !important;
    min-height: 0 !important;
  }

  /* slideshow-container fills slideshow-component as a flex child */
  [data-template="product"] .product-information__media slideshow-container {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  /* slideshow-slides fills container height and stretches each slide */
  [data-template="product"] .product-information__media slideshow-slides {
    height: 100% !important;
    min-height: 0 !important;
    align-items: stretch !important;
  }

  /* slide fills the scroll viewport */
  [data-template="product"] .product-media-container {
    aspect-ratio: auto !important;
    height: 100% !important;
    max-height: none !important;
    min-height: 0 !important;
  }

  /* .product-media has inline --ratio set to image's natural ratio — override */
  [data-template="product"] .product-information__media .product-media {
    aspect-ratio: auto !important;
    height: 100% !important;
    width: 100% !important;
  }

  /* Image covers the full panel */
  [data-template="product"] .product-information__media .product-media__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* =============================================
   Product Page — Description Block
   Uses element-type selectors (rte-formatter) + structural fallback for
   higher specificity than base.css's .rte ul (0,1,1). Also uses !important
   on the layout properties that otherwise bleed through.
   ============================================= */
rte-formatter.text-block--description ul,
.product-details rte-formatter ul {
  list-style: none !important;
  padding: 0 !important;
  padding-inline-start: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column;
  gap: 8px;
}

rte-formatter.text-block--description ul li,
.product-details rte-formatter ul li {
  list-style: none !important;
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px !important;
  padding-inline-start: 14px !important;
  background: rgba(26, 16, 22, 0.04);
  border-left: 2px solid #c9846a;
  border-radius: 0 6px 6px 0;
  font-family: var(--ng-font-body);
  font-size: 0.82rem;
  line-height: 1.65;
  color: #2a1a22;
}

rte-formatter.text-block--description ul li::marker,
.product-details rte-formatter ul li::marker {
  content: '';
}

rte-formatter.text-block--description ul li::before,
.product-details rte-formatter ul li::before {
  content: '→';
  color: #c9846a;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--ng-font-body);
}

rte-formatter.text-block--description ul li strong,
.product-details rte-formatter ul li strong {
  color: #1a1016;
  font-weight: 600;
  letter-spacing: 0.01em;
}
