/** Shopify CDN: Minification failed

Line 934:13 Expected identifier but found whitespace
Line 934:14 Unexpected "0"

**/
/* ==========================================================================
   Nightglowe Theme — Dark Premium Automotive Lighting Store
   Font: Barlow | Colors: #000 bg, #fff text, #03b94c accent, #ffd019 secondary
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --ng-bg: #000000;
  --ng-bg-elevated: #060606;
  --ng-bg-surface: #0a0a0a;
  --ng-text: #ffffff;
  --ng-text-muted: rgba(255, 255, 255, 0.58);
  --ng-text-subtle: rgba(255, 255, 255, 0.42);
  --ng-accent: #03b94c;
  --ng-accent-bright: #2dd66f;
  --ng-accent-dim: rgba(3, 185, 76, 0.14);
  --ng-secondary: #ffd019;
  --ng-gray-100: #111111;
  --ng-gray-200: #1a1a1a;
  --ng-gray-300: #2a2a2a;
  --ng-gray-400: #666666;
  --ng-gray-500: #999999;
  --ng-font: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ng-container: 1280px;
  --ng-container-narrow: 800px;
  --ng-header-height: 112px;
  --ng-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ng-radius: 8px;
  --ng-radius-pill: 999px;
  --ng-logo-width: 160px;
}

html { scroll-behavior: smooth; }

body.ng-body {
  margin: 0;
  font-family: var(--ng-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ng-text);
  background: var(--ng-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }

.ng-skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--ng-accent);
  color: #000;
}
.ng-skip-link:focus { left: 16px; top: 16px; }

.ng-container {
  max-width: var(--ng-container);
  margin: 0 auto;
  padding: 0 24px;
}
.ng-container--narrow { max-width: var(--ng-container-narrow); }

/* ── Buttons ── */
.ng-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--ng-radius);
  transition: var(--ng-transition);
  border: 2px solid transparent;
}
.ng-btn--accent {
  background: var(--ng-accent);
  color: #000;
}
.ng-btn--accent:hover {
  background: #02a043;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 185, 76, 0.35);
}
.ng-btn--secondary {
  background: var(--ng-secondary);
  color: #000;
}
.ng-btn--secondary:hover {
  background: #e6bc00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 208, 25, 0.35);
}
.ng-btn--outline {
  background: transparent;
  color: var(--ng-text);
  border-color: var(--ng-gray-400);
}
.ng-btn--outline:hover {
  border-color: var(--ng-accent);
  color: var(--ng-accent);
}
.ng-btn--lg { padding: 18px 40px; font-size: 15px; }

.ng-input {
  padding: 12px 16px;
  background: var(--ng-gray-200);
  border: 1px solid var(--ng-gray-300);
  color: var(--ng-text);
  border-radius: var(--ng-radius);
  font-family: inherit;
  font-size: 15px;
}
.ng-input:focus {
  outline: none;
  border-color: var(--ng-accent);
}

.ng-link-arrow {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ng-accent);
  transition: var(--ng-transition);
}
.ng-link-arrow:hover { opacity: 0.8; }

/* ── Section headers ── */
.ng-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.ng-section-header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  gap: 24px;
}
.ng-section-header__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.15;
}
.ng-section-header__subtitle {
  font-size: 17px;
  color: var(--ng-gray-500);
  margin: 0;
  max-width: 600px;
}
.ng-section-header--row .ng-section-header__subtitle { margin: 0; }

/* ── Announcement bar ── */
.ng-announcement {
  background: var(--ng-accent);
  color: #000;
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ng-announcement__link { color: inherit; display: block; }
.ng-announcement__link:hover { opacity: 0.85; }

/* ── Header ── */
.ng-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: #000;
  border-bottom: 1px solid var(--ng-gray-300);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: visible;
}

.shopify-section.ng-section-header {
  height: var(--ng-header-offset, var(--ng-header-height));
  min-height: var(--ng-header-offset, var(--ng-header-height));
  pointer-events: none;
}

.shopify-section.ng-section-header .ng-header {
  pointer-events: auto;
}

.ng-header--transparent {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.ng-header--transparent.ng-header--scrolled,
.ng-header--scrolled {
  background: #000;
  border-bottom-color: var(--ng-gray-300);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.ng-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: var(--ng-header-height);
  padding: max(12px, env(safe-area-inset-top, 0px)) 0 12px;
  gap: 16px;
}
.ng-header__main-nav {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ng-header__logo {
  justify-self: center;
  text-align: center;
}
.ng-header__logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--ng-text);
}
.ng-header__logo-image {
  display: block;
  width: auto;
  max-height: 52px;
  height: auto;
}
.ng-header__logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ng-header__brand-name {
  display: block;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: lowercase;
  color: #fff;
  white-space: nowrap;
}
.ng-header__brand-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.ng-header__brand-tagline-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  min-width: 18px;
}
.ng-header__brand-tagline-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}
.ng-header__secondary-nav {
  justify-self: end;
}
.ng-header__icon-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.ng-header__icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ng-text);
  padding: 10px;
  transition: var(--ng-transition);
}
.ng-header__icon-btn:hover { color: var(--ng-accent); }
.ng-header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--ng-accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ng-header__cart-count[hidden] { display: none !important; }
.ng-header__menu-toggle { display: inline-flex; }
.ng-header__search-toggle--mobile { display: none; }
.ng-header__search-toggle--desktop { display: inline-flex; }
.ng-header__localization {
  position: relative;
}
.ng-header__localization-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 108px;
  padding: 8px 12px;
  color: var(--ng-text);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  transition: var(--ng-transition);
}
.ng-header__localization-toggle:hover {
  color: var(--ng-accent);
  background: rgba(255, 255, 255, 0.06);
}
.ng-header__localization-label { white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.ng-header__localization-inline-form {
  margin: 0;
  padding: 0;
}
.ng-header__localization-inline-form .ng-header__localization-option {
  width: 100%;
}
.ng-header__localization-sep { opacity: 0.45; font-weight: 400; }
.ng-header__localization-lang { letter-spacing: 0.04em; }
.ng-header__localization-divider {
  height: 1px;
  margin: 14px 0;
  background: var(--ng-gray-300);
}
.ng-header__localization-option-code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.55;
  white-space: nowrap;
}
.ng-header__localization-list--languages .ng-header__localization-option.is-active .ng-header__localization-option-code {
  color: var(--ng-accent);
  opacity: 1;
}
.ng-header__chevron { opacity: 0.85; flex-shrink: 0; }
.ng-header__localization-panel {
  position: fixed;
  top: calc(var(--ng-header-offset, var(--ng-header-height)) + 8px);
  right: clamp(16px, 3vw, 32px);
  width: min(320px, 88vw);
  max-height: min(420px, 70vh);
  overflow: auto;
  background: rgba(12, 12, 12, 0.98);
  border: 1px solid var(--ng-gray-300);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  z-index: 1003;
}
.ng-header__localization-panel[hidden] { display: none !important; }
.ng-header__localization-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.ng-header__localization-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ng-header__localization-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 10px;
  text-align: left;
  color: var(--ng-text);
  border-radius: 8px;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}
.ng-header__localization-option:hover,
.ng-header__localization-option.is-active {
  background: rgba(3, 185, 76, 0.12);
  color: var(--ng-accent);
}
.ng-header__localization-option-currency {
  font-size: 12px;
  opacity: 0.65;
  white-space: nowrap;
}

.ng-header__mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1001;
}
.ng-header__mobile-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--ng-gray-100);
  padding: 24px;
}
.ng-header__mobile-close {
  font-size: 32px;
  color: var(--ng-text);
  margin-bottom: 24px;
}
.ng-header__mobile-nav li { border-bottom: 1px solid var(--ng-gray-300); }
.ng-header__mobile-nav a {
  display: block;
  padding: 16px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ng-header__search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ng-gray-100);
  padding: 24px 0;
  border-bottom: 1px solid var(--ng-gray-300);
}
.ng-header__search-form {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
}
.ng-header__search-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--ng-gray-200);
  border: 1px solid var(--ng-gray-300);
  color: var(--ng-text);
  font-size: 16px;
  border-radius: var(--ng-radius);
}
.ng-header__search-close {
  font-size: 28px;
  color: var(--ng-gray-500);
  padding: 4px 8px;
}

body.ng-menu-open { overflow: hidden; }

/* ── Hero ── */
.ng-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ng-hero__media {
  position: absolute;
  inset: 0;
}
.ng-hero__video,
.ng-hero__poster,
.ng-hero__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ng-hero__placeholder {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}
.ng-hero__overlay {
  position: absolute;
  inset: 0;
  background: #000;
}
.ng-hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
}
.ng-hero__text { max-width: 680px; }
.ng-hero__heading {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.ng-hero__subheading {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 36px;
  line-height: 1.5;
}
.ng-hero__cta { margin-top: 8px; }

/* ── Vehicle Finder ── */
.ng-vehicle-finder {
  padding: 80px 0;
  background: var(--ng-gray-100);
}
.ng-vf-form__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.ng-vf-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ng-gray-500);
}
.ng-vf-field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--ng-gray-200);
  border: 1px solid var(--ng-gray-300);
  color: var(--ng-text);
  font-family: inherit;
  font-size: 15px;
  border-radius: var(--ng-radius);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.ng-vf-field select:disabled { opacity: 0.5; cursor: not-allowed; }
.ng-vf-field select:focus { outline: none; border-color: var(--ng-accent); }
.ng-vf-form__submit { width: 100%; }
.ng-vf-form__submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.ng-vf-results { margin-top: 48px; }
.ng-vf-results__title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
  text-align: center;
}
.ng-vf-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.ng-vf-result-card {
  display: block;
  background: var(--ng-gray-200);
  border: 1px solid var(--ng-gray-300);
  border-radius: var(--ng-radius);
  padding: 28px;
  transition: var(--ng-transition);
}
.ng-vf-result-card:hover {
  border-color: var(--ng-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(3, 185, 76, 0.15);
}
.ng-vf-result-card__title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.ng-vf-result-card__desc {
  color: var(--ng-gray-500);
  margin: 0 0 12px;
  font-size: 15px;
}
.ng-vf-result-card__vehicle {
  font-size: 13px;
  color: var(--ng-gray-400);
  margin: 0 0 16px;
}
.ng-vf-result-card__price {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--ng-accent);
  margin-bottom: 12px;
}
.ng-vf-result-card__cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ng-secondary);
}

/* ── Featured Collection / Product Grid ── */
.ng-featured-collection { padding: 80px 0; }
.ng-product-grid {
  display: grid;
  grid-template-columns: repeat(var(--columns, 4), 1fr);
  gap: 24px;
}

/* ── Product Card ── */
.ng-product-card { position: relative; }
.ng-product-card__link { display: block; transition: var(--ng-transition); }
.ng-product-card__link:hover { transform: translateY(-4px); }
.ng-product-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ng-gray-200);
  border-radius: var(--ng-radius);
  margin-bottom: 16px;
}
.ng-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ng-product-card__link:hover .ng-product-card__image { transform: scale(1.05); }
.ng-product-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ng-gray-200), var(--ng-gray-300));
}
.ng-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ng-accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.ng-product-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.ng-product-card--placeholder .ng-product-card__info { padding: 0 4px; }

/* ── Price ── */
.ng-price { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ng-price__regular,
.ng-price__sale {
  font-size: 16px;
  font-weight: 700;
}
.ng-price__sale { color: var(--ng-accent); }
.ng-price__compare {
  font-size: 14px;
  color: var(--ng-gray-400);
  text-decoration: line-through;
}
.ng-price__sold-out {
  font-size: 12px;
  color: var(--ng-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Carousel ── */
.ng-carousel { position: relative; }
.ng-carousel__track { overflow: hidden; }
.ng-carousel__slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ng-carousel__slide {
  flex: 0 0 calc(25% - 18px);
  min-width: calc(25% - 18px);
  margin-right: 24px;
}
.ng-carousel--testimonials .ng-carousel__slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
}
.ng-carousel__btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  background: var(--ng-gray-200);
  border: 1px solid var(--ng-gray-300);
  border-radius: 50%;
  color: var(--ng-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ng-transition);
}
.ng-carousel__btn:hover {
  background: var(--ng-accent);
  color: #000;
  border-color: var(--ng-accent);
}
.ng-carousel__btn--prev { left: -22px; }
.ng-carousel__btn--next { right: -22px; }
.ng-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.ng-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ng-gray-300);
  padding: 0;
  transition: var(--ng-transition);
}
.ng-carousel__dot--active { background: var(--ng-accent); }

/* ── Press / About quote ── */
.ng-press {
  padding: 80px 0;
  background: var(--ng-gray-100);
  text-align: center;
}
.ng-press__heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ng-accent);
  margin: 0 0 32px;
}
.ng-press__quote {
  margin: 0;
  padding: 0;
  border: none;
}
.ng-press__quote p {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px;
}
.ng-press__author {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ng-gray-500);
}

/* ── About / Brand story ── */
.ng-about { padding: 80px 0; }
.ng-about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.ng-about__row:last-child { margin-bottom: 0; }
.ng-about__row--reverse { direction: rtl; }
.ng-about__row--reverse > * { direction: ltr; }
.ng-about__media {
  border-radius: var(--ng-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ng-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ng-about__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ng-gray-200), var(--ng-gray-300));
}
.ng-about__heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 20px;
}
.ng-about__text {
  color: var(--ng-gray-500);
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.7;
}
.ng-about__text p { margin: 0 0 12px; }

/* ── Testimonials ── */
.ng-testimonials {
  padding: 80px 0;
  background: var(--ng-gray-100);
}
.ng-testimonials__heading {
  text-align: center;
  margin-bottom: 48px;
}
.ng-testimonial-card {
  background: var(--ng-gray-200);
  border: 1px solid var(--ng-gray-300);
  border-radius: var(--ng-radius);
  padding: 32px;
  height: 100%;
}
.ng-testimonial-card__stars { margin-bottom: 16px; }
.ng-star { color: var(--ng-secondary); font-size: 18px; }
.ng-star--empty { color: var(--ng-gray-300); }
.ng-testimonial-card__quote {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}
.ng-testimonial-card__author {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  display: block;
}
.ng-testimonial-card__vehicle {
  display: block;
  font-size: 13px;
  color: var(--ng-gray-500);
  margin-top: 4px;
}

/* ── Product Hotspot ── */
.ng-hotspot { padding: 80px 0; }
.ng-hotspot__wrapper { position: relative; }
.ng-hotspot__image-container {
  position: relative;
  border-radius: var(--ng-radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.ng-hotspot__image,
.ng-hotspot__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ng-hotspot__placeholder {
  background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
}
.ng-hotspot__pin-wrap {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ng-hotspot__pin {
  position: relative;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.ng-hotspot__pin-dot {
  position: absolute;
  inset: 0;
  background: var(--ng-accent);
  border-radius: 50%;
  border: 3px solid #fff;
  z-index: 2;
}
.ng-hotspot__pin-pulse {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--ng-accent);
  border-radius: 50%;
  animation: ng-pulse 2s infinite;
}
@keyframes ng-pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.ng-hotspot__tooltip {
  position: absolute;
  z-index: 10;
  background: var(--ng-gray-200);
  border: 1px solid var(--ng-gray-300);
  border-radius: var(--ng-radius);
  padding: 16px 20px;
  transform: translate(-50%, -100%);
  white-space: normal;
  max-width: min(280px, 80vw);
  text-align: center;
}
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.ng-hotspot__tooltip-label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.ng-hotspot__tooltip-link {
  font-size: 13px;
  color: var(--ng-accent);
  font-weight: 600;
}

/* ── Rich text ── */
.ng-rich-text {
  padding: 60px 0 40px;
  text-align: center;
}
.ng-rich-text__heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}
.ng-rich-text__content {
  color: var(--ng-gray-500);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}
.ng-rich-text__content p { margin: 0; }

/* ── Community reviews scroll ── */
.ng-community-reviews {
  padding: 20px 0 80px;
  overflow: hidden;
}
.ng-community-reviews__scroll { overflow: hidden; }
.ng-community-reviews__track {
  display: flex;
  gap: 24px;
  will-change: transform;
}
.ng-community-card {
  flex: 0 0 320px;
  background: var(--ng-gray-200);
  border: 1px solid var(--ng-gray-300);
  border-radius: var(--ng-radius);
  overflow: hidden;
}
.ng-community-card__media {
  aspect-ratio: 1;
  overflow: hidden;
}
.ng-community-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ng-community-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ng-gray-300), var(--ng-gray-200));
}
.ng-community-card__body { padding: 20px; }
.ng-community-card__heading {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.ng-community-card__text {
  font-size: 14px;
  color: var(--ng-gray-500);
  margin: 0 0 12px;
  line-height: 1.5;
}
.ng-community-card__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--ng-accent);
}

/* ── FAQ ── */
.ng-faq { padding: 80px 0; background: var(--ng-gray-100); }
.ng-faq__heading { text-align: center; margin-bottom: 48px; }
.ng-faq__list { display: flex; flex-direction: column; gap: 2px; }
.ng-faq__item {
  background: var(--ng-gray-200);
  border: 1px solid var(--ng-gray-300);
  border-radius: var(--ng-radius);
  overflow: hidden;
}
.ng-faq__item[open] { border-color: var(--ng-accent); }
.ng-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.ng-faq__question::-webkit-details-marker { display: none; }
.ng-faq__icon {
  flex-shrink: 0;
  transition: transform var(--ng-transition);
}
.ng-faq__item[open] .ng-faq__icon { transform: rotate(180deg); }
.ng-faq__answer {
  padding: 0 24px 20px;
  color: var(--ng-gray-500);
  line-height: 1.7;
  font-size: 15px;
}
.ng-faq__answer p { margin: 0 0 8px; }

/* ── Footer ── */
.ng-footer {
  background: #000;
  border-top: 1px solid var(--ng-gray-300);
  padding: 64px 0 32px;
}
.ng-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.ng-footer__brand-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.ng-footer__tagline {
  color: var(--ng-gray-500);
  font-size: 14px;
  margin: 16px 0;
  line-height: 1.6;
}
.ng-footer__social {
  display: flex;
  gap: 16px;
}
.ng-footer__social a {
  font-size: 13px;
  font-weight: 700;
  color: var(--ng-gray-500);
  transition: var(--ng-transition);
}
.ng-footer__social a:hover { color: var(--ng-accent); }
.ng-footer__heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.ng-footer__links li { margin-bottom: 10px; }
.ng-footer__links a {
  font-size: 14px;
  color: var(--ng-gray-500);
  transition: var(--ng-transition);
}
.ng-footer__links a:hover { color: var(--ng-text); }
.ng-footer__newsletter p {
  color: var(--ng-gray-500);
  font-size: 14px;
  margin: 0 0 16px;
}
.ng-footer__form-row {
  display: flex;
  gap: 8px;
}
.ng-footer__input {
  flex: 1;
  padding: 12px 14px;
  background: var(--ng-gray-200);
  border: 1px solid var(--ng-gray-300);
  color: var(--ng-text);
  border-radius: var(--ng-radius);
  font-family: inherit;
}
.ng-footer__success {
  color: var(--ng-accent);
  font-size: 13px;
  margin-top: 8px;
}
.ng-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--ng-gray-300);
  font-size: 13px;
  color: var(--ng-gray-500);
}
.ng-footer__payments {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ng-footer__payment-icon { height: 24px; width: auto; }

/* ── Main templates ── */
.ng-main-product { padding: 48px 0 80px; }
.ng-main-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.ng-main-product__image {
  width: 100%;
  border-radius: var(--ng-radius);
}
.ng-main-product__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.ng-main-product__price { margin-bottom: 24px; }
.ng-main-product__description {
  color: var(--ng-gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
}
.ng-main-product__quantity {
  margin-bottom: 20px;
}
.ng-main-product__quantity label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.ng-main-product__add { width: 100%; }

.ng-main-collection { padding: 48px 0 80px; }
.ng-main-collection__header { margin-bottom: 48px; text-align: center; }
.ng-main-collection__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.ng-main-collection__description { color: var(--ng-gray-500); margin-bottom: 8px; }
.ng-main-collection__count { font-size: 14px; color: var(--ng-gray-400); }
.ng-main-collection__empty { text-align: center; color: var(--ng-gray-500); padding: 48px 0; }

.ng-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
.ng-pagination__info { font-size: 14px; color: var(--ng-gray-500); }

.ng-main-cart { padding: 48px 0 80px; }
.ng-main-cart__title {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 32px;
}
.ng-cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--ng-gray-300);
}
.ng-cart-item__image img { border-radius: var(--ng-radius); }
.ng-cart-item__title { font-weight: 700; display: block; margin-bottom: 4px; }
.ng-cart-item__variant { font-size: 13px; color: var(--ng-gray-500); margin: 0; }
.ng-cart-item__price { font-weight: 700; color: var(--ng-accent); margin: 4px 0 0; }
.ng-cart-item__remove {
  font-size: 13px;
  color: var(--ng-gray-500);
  text-decoration: underline;
}
.ng-cart-item__remove:hover { color: var(--ng-text); }
.ng-main-cart__footer {
  margin-top: 32px;
  text-align: right;
}
.ng-main-cart__subtotal {
  font-size: 20px;
  margin-bottom: 20px;
}
.ng-main-cart__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.ng-main-cart__empty {
  color: var(--ng-gray-500);
  margin-bottom: 24px;
}

.ng-main-page { padding: 48px 0 80px; }
.ng-main-page__title {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 32px;
}
.ng-main-page__content { line-height: 1.8; color: rgba(255,255,255,0.85); }
.ng-main-page__content h2,
.ng-main-page__content h3 { margin-top: 32px; }

.rte a { color: var(--ng-accent); text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ng-carousel__slide:not(.ng-carousel--featured-row .ng-carousel__slide):not(.ng-carousel--video-row .ng-carousel__slide):not(.ng-carousel--testimonials-row .ng-carousel__slide) {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
  .ng-carousel--testimonials .ng-carousel__slide {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
  .ng-vf-form__grid { grid-template-columns: repeat(2, 1fr); }
  .ng-footer__grid { grid-template-columns: 1fr 1fr; }
  .ng-about__row { gap: 40px; }
}

@media (max-width: 768px) {
  .ng-header__localization--desktop { display: none; }
  .ng-header__search-toggle--desktop,
  .ng-header__account { display: none; }
  .ng-header__search-toggle--mobile { display: inline-flex; }
  .ng-header__inner { gap: 8px; }
  .ng-header__brand-tagline-line { min-width: 10px; }
  .ng-hero--impact .ng-hero__content--center {
    padding-top: calc(var(--ng-header-offset, var(--ng-header-height)) + 24px);
    padding-bottom: 48px;
  }
  .ng-vf-form__grid { grid-template-columns: 1fr; }
  .ng-carousel__slide:not(.ng-carousel--featured-row .ng-carousel__slide):not(.ng-carousel--video-row .ng-carousel__slide):not(.ng-carousel--testimonials-row .ng-carousel__slide),
  .ng-carousel--testimonials .ng-carousel__slide {
    flex: 0 0 calc(100% - 0px);
    min-width: 100%;
    margin-right: 0;
  }
  .ng-carousel__btn--prev { left: 8px; }
  .ng-carousel__btn--next { right: 8px; }
  .ng-about__row,
  .ng-about__row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  .ng-main-product__grid { grid-template-columns: 1fr; gap: 32px; }
  .ng-product-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .ng-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .ng-footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .ng-section-header--row { flex-direction: column; align-items: flex-start; }
  .ng-cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }
  .ng-cart-item__quantity { grid-column: 2; }
  .ng-cart-item__remove { grid-column: 2; }
  .ng-main-cart__actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .ng-product-grid { grid-template-columns: 1fr !important; }
  .ng-btn { padding: 12px 24px; font-size: 13px; }
  .ng-community-card { flex: 0 0 280px; }
}

/* ── Impact / Nightglowe 1:1 overrides ── */
.ng-btn--pill { border-radius: 3.75rem; }
.ng-btn--xl { padding: 18px 40px; font-size: 15px; }
/* Homepage: header overlays hero — no gap between nav and video */
body.template-index .shopify-section.ng-section-header {
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0 !important;
  overflow: visible;
  border: none;
}

body.template-index .ng-hero--impact {
  margin-top: calc(-1 * var(--ng-header-offset, var(--ng-header-height)));
  min-height: max(100svh, clamp(520px, 68vh, 760px));
  padding-top: 0;
}

.ng-hero--impact .ng-hero__media {
  top: 0;
  height: 100%;
}

.ng-hero--impact .ng-hero__video,
.ng-hero--impact .ng-hero__poster {
  object-position: center center;
}

.ng-hero--impact .ng-hero__content--center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: calc(var(--ng-header-offset, var(--ng-header-height)) + 32px) 24px clamp(72px, 12vh, 112px);
  box-sizing: border-box;
  overflow: visible;
  pointer-events: none;
}

.ng-hero--impact .ng-hero__content--center a,
.ng-hero--impact .ng-hero__content--center button {
  pointer-events: auto;
}

.ng-hero--impact .ng-hero__scroll-hint {
  z-index: 3;
}
.ng-header__nav--drawer-only { display: none !important; }
.ng-section-header--impact { text-align: center; margin-bottom: 40px; }
.ng-section-header--impact .ng-section-header__subheading { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin: 0 0 8px; }
.ng-section-header--impact .ng-section-header__title { margin: 0; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.ng-link-arrow--impact { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ng-text); margin-top: 16px; }
.ng-product-card__media-wrap { position: relative; }
.ng-product-card__quick-add { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); opacity: 0; transition: opacity .2s; z-index: 2; }
.ng-product-card--impact:hover .ng-product-card__quick-add { opacity: 1; }
.ng-product-card__quick-btn { background: #fff; color: #000; border: none; padding: 8px 16px; border-radius: 3.75rem; font-size: 12px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.ng-product-card--impact .ng-product-card__title a { font-weight: 700; }
.ng-price--on-sale .ng-price__sale { color: var(--ng-accent); font-weight: 700; }
.ng-price--on-sale .ng-price__compare { text-decoration: line-through; opacity: 0.5; margin-left: 6px; font-size: 0.9em; }
.ng-price__from { font-size: 0.85em; opacity: 0.8; margin-right: 4px; }
.ng-press--impact { padding: 64px 0; text-align: center; }
.ng-press--impact blockquote { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0; letter-spacing: -0.02em; border: none; }
.ng-about--impact .ng-about__heading { font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.15; letter-spacing: -0.02em; }
.ng-about--impact .ng-about__text { color: rgba(255,255,255,.75); }
.ng-testimonial-card__header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 12px; }
.ng-testimonial-card__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ng-testimonial-card__author { font-style: normal; color: rgba(255,255,255,.45); font-size: 14px; display: block; }
.ng-star { color: #ffb74a; font-size: 14px; }
.ng-star--empty { opacity: 0.25; }
.ng-fallback-products { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.ng-fallback-products .ng-carousel__slide { flex: 0 0 calc(25% - 12px); min-width: 220px; scroll-snap-align: start; }
@media (max-width: 768px) { .ng-fallback-products .ng-carousel__slide { flex: 0 0 calc(50% - 8px); min-width: 160px; } }
