/* ═══════════════════════════════════════════════════════════════════
   NXT Autopropelidos — Neo-Industrial Design System
   Beer CSS v4 (Material Design 3) premium override layer
   Typography: Syne (display) + Plus Jakarta Sans (body)
   ═══════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --nxt-yellow: #DEFF3F;
  --nxt-lime: #C8FF00;
  --nxt-yellow-dim: rgba(222, 255, 63, 0.06);
  --nxt-yellow-glow: rgba(222, 255, 63, 0.15);
  --nxt-yellow-border: rgba(222, 255, 63, 0.25);
  --nxt-yellow-mid: rgba(222, 255, 63, 0.5);

  --nxt-void: #050505;
  --nxt-base: #080808;
  --nxt-surface-1: #0D0D0D;
  --nxt-surface-2: #151515;
  --nxt-surface-3: #1E1E1E;
  --nxt-surface-glass: rgba(5, 5, 5, 0.82);

  --nxt-text-primary: #F0F0F0;
  --nxt-text-secondary: rgba(240, 240, 240, 0.6);
  --nxt-text-muted: rgba(240, 240, 240, 0.35);
  --nxt-accent-text: var(--nxt-yellow);

  --nxt-border-subtle: rgba(255, 255, 255, 0.06);
  --nxt-border-mid: rgba(255, 255, 255, 0.12);
  --nxt-border-strong: rgba(255, 255, 255, 0.22);

  --nxt-font-display: 'Syne', system-ui, sans-serif;
  --nxt-font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --nxt-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nxt-ease-out: cubic-bezier(0, 0, 0.2, 1);
  --nxt-transition: 0.3s var(--nxt-ease);
  --nxt-transition-slow: 0.6s var(--nxt-ease);

  --nxt-radius-sm: 8px;
  --nxt-radius: 14px;
  --nxt-radius-lg: 20px;
  --nxt-radius-xl: 28px;
}

/* ─── LIGHT MODE ─── */
body:not(.dark) {
  --nxt-void: #FAFAFA;
  --nxt-base: #FFFFFF;
  --nxt-surface-1: #FFFFFF;
  --nxt-surface-2: #F2F2F2;
  --nxt-surface-3: #E8E8E8;
  --nxt-surface-glass: rgba(255, 255, 255, 0.88);
  --nxt-text-primary: #111111;
  --nxt-text-secondary: #555555;
  --nxt-text-muted: #999999;
  --nxt-accent-text: #000000;
  --nxt-border-subtle: rgba(0, 0, 0, 0.05);
  --nxt-border-mid: rgba(0, 0, 0, 0.10);
  --nxt-border-strong: rgba(0, 0, 0, 0.18);
  --nxt-yellow-dim: rgba(222, 255, 63, 0.12);
  --nxt-yellow-glow: rgba(222, 255, 63, 0.2);
}

/* ─── BASE ─── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--nxt-font-body) !important;
  background: var(--nxt-void) !important;
  color: var(--nxt-text-primary) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  overflow-x: hidden;
}

::selection {
  background: var(--nxt-yellow);
  color: #000;
}

/* ─── NOISE TEXTURE ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

/* ─── ACCENT ─── */
.nxt-accent { color: var(--nxt-accent-text) !important; }
.primary { background: var(--nxt-yellow) !important; color: #000 !important; }
.primary-text { color: var(--nxt-accent-text) !important; }

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */
header.nxt-topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 200 !important;
  width: 100% !important;
  left: 0; right: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.nxt-topbar nav {
  background: transparent !important;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--nxt-border-subtle);
  padding: 0.7rem 2.5rem !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  transition: all var(--nxt-transition);
  box-sizing: border-box;
}

header.nxt-topbar.scrolled nav {
  background: var(--nxt-surface-glass) !important;
  border-bottom-color: var(--nxt-border-mid);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.15);
}

.nxt-nav-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.nxt-topbar nav .link {
  font-family: var(--nxt-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nxt-text-secondary) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--nxt-radius-sm);
  transition: all var(--nxt-transition);
  position: relative;
}

.nxt-topbar nav .link i { display: none; }

.nxt-topbar nav .link:hover {
  color: var(--nxt-text-primary) !important;
  background: var(--nxt-yellow-dim);
}

.nxt-topbar nav .link.active {
  color: var(--nxt-accent-text) !important;
}

.nxt-topbar nav .link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--nxt-yellow);
}

/* Hide hamburger on desktop, show links */
.nxt-topbar nav .nxt-menu-btn { display: none; }

@media (max-width: 960px) {
  .nxt-topbar nav { padding: 0.5rem 1rem !important; }
  .nxt-topbar nav .link { display: none !important; }
  .nxt-topbar nav .nxt-menu-btn { display: inline-flex; }
}

/* ─── MOBILE DRAWER ─── */
#mobile-drawer {
  background: var(--nxt-surface-1) !important;
  border-right: 1px solid var(--nxt-border-subtle);
  border-radius: 0 var(--nxt-radius-xl) var(--nxt-radius-xl) 0;
}

#mobile-drawer a {
  font-family: var(--nxt-font-body);
  color: var(--nxt-text-primary);
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: var(--nxt-radius-sm);
  margin: 0.15rem 1rem;
  letter-spacing: 0.02em;
}

#mobile-drawer a i { display: none; }

#mobile-drawer a:hover,
#mobile-drawer a.active {
  color: var(--nxt-accent-text) !important;
  background: var(--nxt-yellow-dim) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.nxt-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 12rem;
  overflow: hidden;
  background: var(--nxt-void);
}

.nxt-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--nxt-void);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

.nxt-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.dark .nxt-hero-bg { filter: brightness(0.55) contrast(1.05); }
body:not(.dark) .nxt-hero-bg {
  filter: brightness(0.4) contrast(1.1);
}

/* Extra dark gradient at bottom for button readability */
.nxt-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.nxt-hero-content {
  text-align: center;
  max-width: 880px;
  position: relative;
  z-index: 1;
}

.nxt-hero-symbol {
  width: 52px;
  height: 52px;
  margin-bottom: 2.5rem;
  animation: nxt-glow-pulse 3s ease-in-out infinite;
}

@keyframes nxt-glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(222, 255, 63, 0.25)); }
  50% { filter: drop-shadow(0 0 32px rgba(222, 255, 63, 0.5)); }
}

.nxt-hero-title {
  font-family: var(--nxt-font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 2rem;
  color: #fff !important;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

body:not(.dark) .nxt-hero-title,
body:not(.dark) .nxt-hero-title .nxt-word-inner {
  color: #fff !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

body:not(.dark) .nxt-hero-title .nxt-hero-highlight {
  color: #000 !important;
  text-shadow: none;
}

/* Hero buttons — all glass over photo background (high specificity to beat .button.fill/.border) */
section.nxt-hero .button,
section.nxt-hero .button.fill,
section.nxt-hero .button.border {
  background: rgba(255, 255, 255, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  color: #fff !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
}

section.nxt-hero .button:hover,
section.nxt-hero .button.fill:hover,
section.nxt-hero .button.border:hover {
  background: rgba(255, 255, 255, 0.28) !important;
  border-color: #fff !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  filter: none !important;
}

/* Hero button row — wrap on mobile */
.nxt-hero .row.gap {
  flex-wrap: wrap;
  justify-content: center;
}

.nxt-hero .button {
  min-width: 0;
  white-space: nowrap;
}

.nxt-hero-title .nxt-hero-highlight {
  background: var(--nxt-yellow) !important;
  color: #000 !important;
  padding: 0.02em 0.2em;
  border-radius: 6px;
  display: inline-block;
  text-shadow: none;
}

.nxt-hero-subtitle {
  font-family: var(--nxt-font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

body:not(.dark) .nxt-hero-subtitle { color: rgba(255, 255, 255, 0.8); }

/* ═══════════════════════════════════════════════════════════════════
   MARQUEE TICKER
   ═══════════════════════════════════════════════════════════════════ */
.nxt-marquee {
  overflow: hidden;
  background: var(--nxt-yellow);
  padding: 0.85rem 0;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}

.nxt-marquee-track {
  display: flex;
  animation: nxt-scroll 28s linear infinite;
  width: max-content;
}

.nxt-marquee-item {
  font-family: var(--nxt-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nxt-marquee-sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  margin: 0 1rem;
  flex-shrink: 0;
}

@keyframes nxt-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .nxt-marquee-track { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════════════════ */
.nxt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--nxt-border-subtle);
  border-top: 1px solid var(--nxt-border-subtle);
  border-bottom: 1px solid var(--nxt-border-subtle);
}

.nxt-stat {
  background: var(--nxt-void);
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.nxt-stat-number {
  font-family: var(--nxt-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--nxt-accent-text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.nxt-stat-label {
  font-family: var(--nxt-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--nxt-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.75rem;
}

@media (max-width: 599px) {
  .nxt-stats { grid-template-columns: repeat(2, 1fr); }
  .nxt-stat { padding: 2.5rem 1rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   BENTO ABOUT
   ═══════════════════════════════════════════════════════════════════ */
.nxt-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.nxt-bento-image {
  grid-row: 1 / 3;
  position: relative;
  border-radius: var(--nxt-radius-lg);
  overflow: hidden;
  min-height: 440px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--nxt-border-subtle);
}

.nxt-bento-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.nxt-bento-image-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 1;
}

.nxt-bento-image-text h2 {
  font-family: var(--nxt-font-display) !important;
  color: #fff !important;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.nxt-bento-text {
  background: var(--nxt-surface-1);
  border-radius: var(--nxt-radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--nxt-border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nxt-bento-text h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.nxt-bento-text p {
  font-size: 0.95rem;
  color: var(--nxt-text-secondary);
  line-height: 1.7;
}

.nxt-bento-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-column: 1 / -1;
}

.nxt-bento-feature {
  background: var(--nxt-surface-1);
  border-radius: var(--nxt-radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--nxt-border-subtle);
  text-align: center;
  transition: all var(--nxt-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.nxt-bento-feature:hover {
  border-color: var(--nxt-yellow-border);
  background: var(--nxt-yellow-dim);
}

.nxt-bento-feature i {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.4rem !important;
  color: var(--nxt-accent-text) !important;
  background: var(--nxt-yellow-dim);
  border-radius: var(--nxt-radius-sm);
  flex-shrink: 0;
}

.nxt-bento-feature span {
  font-family: var(--nxt-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--nxt-text-secondary);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .nxt-bento { grid-template-columns: 1fr; }
  .nxt-bento-image { grid-row: auto; min-height: 280px; }
  .nxt-bento-features { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 480px) {
  .nxt-bento-features { grid-template-columns: 1fr; }
}

/* ─── SECTION TITLES ─── */
.nxt-section-label {
  font-family: var(--nxt-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nxt-accent-text);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.nxt-section-title {
  font-family: var(--nxt-font-display) !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--nxt-text-primary) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT FEATURED HERO
   ═══════════════════════════════════════════════════════════════════ */
.nxt-product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--nxt-surface-1);
  border: 1px solid var(--nxt-border-subtle);
  border-radius: var(--nxt-radius-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.nxt-product-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse, var(--nxt-yellow-dim), transparent 70%);
  pointer-events: none;
}

.nxt-product-hero-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--nxt-radius-lg);
  overflow: hidden;
  padding: 1.5rem;
}

.nxt-product-hero-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 320px;
}

.nxt-product-hero-info {
  position: relative;
  z-index: 1;
}

.nxt-product-hero-info h2 {
  font-family: var(--nxt-font-display) !important;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .nxt-product-hero {
    grid-template-columns: 1fr;
    padding: 2rem;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT CARDS — cursor glow
   ═══════════════════════════════════════════════════════════════════ */
.nxt-product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--nxt-radius-lg);
  overflow: hidden;
  background: var(--nxt-surface-1) !important;
  border: 1px solid var(--nxt-border-subtle);
  transition: border-color var(--nxt-transition), transform var(--nxt-transition), box-shadow var(--nxt-transition);
  position: relative;
}

.nxt-product-card::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--nxt-yellow-glow), transparent 70%);
  left: var(--mx, -300px);
  top: var(--my, -300px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.nxt-product-card:hover::before { opacity: 1; }

.nxt-product-card:hover {
  border-color: var(--nxt-yellow-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.nxt-product-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}

body.dark .nxt-product-img-wrap {
  background: #f5f5f5;
}

.nxt-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform var(--nxt-transition-slow);
}

.nxt-product-card:hover .nxt-product-img {
  transform: none;
}

.nxt-product-card .padding {
  padding: 1.5rem !important;
  position: relative;
  z-index: 1;
  background: transparent;
}

.nxt-product-card h3 {
  font-family: var(--nxt-font-display) !important;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.nxt-product-card .row.small-text {
  color: var(--nxt-text-secondary);
  margin-top: 0.8rem;
}

/* ─── COLOR DOTS & CHIPS ─── */
.nxt-color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid var(--nxt-surface-1);
  box-shadow: 0 0 0 1px var(--nxt-border-strong);
}

.nxt-color-chip {
  cursor: pointer;
  border-radius: 100px !important;
  border: 1px solid var(--nxt-border-mid) !important;
  background: var(--nxt-surface-1) !important;
  color: var(--nxt-text-secondary);
  font-family: var(--nxt-font-body);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 1rem !important;
  transition: all var(--nxt-transition);
}

.nxt-color-chip:hover {
  border-color: var(--nxt-text-primary) !important;
  color: var(--nxt-text-primary) !important;
}

.nxt-color-chip.fill {
  border-color: var(--nxt-text-primary) !important;
  background: var(--nxt-text-primary) !important;
  color: var(--nxt-void) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT GALLERY (detail page)
   ═══════════════════════════════════════════════════════════════════ */
.nxt-gallery {
  border: 1px solid var(--nxt-border-subtle);
  background: var(--nxt-surface-1);
  border-radius: var(--nxt-radius-lg);
  overflow: hidden;
}

.nxt-gallery-main {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: contain;
  object-position: center center;
  padding: 1rem;
  background: #fff;
  display: block;
}

body.dark .nxt-gallery-main {
  background: #f5f5f5;
}

.nxt-gallery-thumb {
  width: 80px !important;
  height: 80px !important;
  min-width: 80px !important;
  min-height: 80px !important;
  max-width: 80px !important;
  max-height: 80px !important;
  padding: 4px !important;
  margin: 0 !important;
  cursor: pointer;
  border-radius: var(--nxt-radius-sm) !important;
  border: 2px solid var(--nxt-border-subtle) !important;
  background: #fff !important;
  transition: border-color var(--nxt-transition);
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
}

.nxt-gallery-thumb img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
}

.nxt-gallery-thumb:hover,
.nxt-gallery-thumb.nxt-thumb-active {
  border-color: #111 !important;
  background: #fff !important;
  background-color: #fff !important;
}

/* Spec table */
article.surface-container table.stripes { width: 100%; border-collapse: collapse; }
table.stripes tr { border-bottom: 1px solid var(--nxt-border-subtle); }
table.stripes tr:last-child { border-bottom: none; }

table.stripes td {
  padding: 1rem;
  font-size: 0.9rem;
  font-family: var(--nxt-font-body);
}

table.stripes td:first-child {
  width: 40%;
  color: var(--nxt-text-secondary);
  font-weight: 500;
}

table.stripes td:last-child {
  font-weight: 700;
  text-align: right;
  color: var(--nxt-text-primary);
  font-family: var(--nxt-font-display);
}

/* ═══════════════════════════════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════════════════════════════ */
.nxt-benefit-card {
  background: var(--nxt-surface-1);
  border: 1px solid var(--nxt-border-subtle);
  border-radius: var(--nxt-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all var(--nxt-transition);
  position: relative;
  overflow: hidden;
}

.nxt-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nxt-yellow), var(--nxt-lime));
  opacity: 0;
  transition: opacity var(--nxt-transition);
}

.nxt-benefit-card:hover {
  border-color: var(--nxt-yellow-border);
  transform: translateY(-4px);
}

.nxt-benefit-card:hover::before { opacity: 1; }

.nxt-benefit-icon {
  margin-bottom: 1.2rem;
}

.nxt-benefit-icon i {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--nxt-radius-sm);
  background: var(--nxt-yellow-dim);
  color: var(--nxt-accent-text) !important;
  font-size: 1.4rem !important;
}

.nxt-benefit-card h3 {
  font-family: var(--nxt-font-display) !important;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.nxt-benefit-card p {
  font-size: 0.88rem;
  color: var(--nxt-text-secondary);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════ */
.nxt-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--nxt-surface-1) !important;
  border-top: 1px solid var(--nxt-border-subtle);
  border-bottom: 1px solid var(--nxt-border-subtle);
}

.nxt-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, var(--nxt-yellow-dim) 0%, transparent 70%);
  pointer-events: none;
}

.nxt-cta-section h2 {
  font-family: var(--nxt-font-display) !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

/* ─── COMPLIANCE ─── */
.nxt-compliance-banner {
  background: var(--nxt-surface-1) !important;
  border: 1px solid var(--nxt-border-subtle) !important;
  border-left: 3px solid var(--nxt-yellow) !important;
  border-radius: var(--nxt-radius-lg) !important;
}

/* ─── FORM FIELDS ─── */
.field.border { border-color: var(--nxt-border-mid) !important; border-radius: var(--nxt-radius-sm) !important; }
.field.border:focus-within { border-color: var(--nxt-accent-text) !important; }
.field.border label { color: var(--nxt-text-muted) !important; }
.field.border:focus-within label { color: var(--nxt-accent-text) !important; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
footer {
  margin-top: 0;
  padding: 5rem 2rem 2rem;
  background: var(--nxt-base) !important;
  border-top: 1px solid var(--nxt-border-subtle);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--nxt-yellow);
  border-radius: 2px;
}

.nxt-footer-logo { height: 26px; width: auto; margin-bottom: 1.5rem; }

footer h6 {
  font-family: var(--nxt-font-display) !important;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--nxt-text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

footer nav.vertical a {
  font-family: var(--nxt-font-body);
  font-size: 0.9rem;
  color: var(--nxt-text-secondary);
  padding: 0.4rem 0;
  transition: color var(--nxt-transition);
}

footer nav.vertical a:hover { color: var(--nxt-accent-text); }
footer .divider { border-color: var(--nxt-border-subtle); margin: 2.5rem 0; }

/* ─── BLOG ─── */
.nxt-blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--nxt-surface-1);
  border: 1px solid var(--nxt-border-subtle);
  border-radius: var(--nxt-radius-lg);
  overflow: hidden;
  transition: all var(--nxt-transition);
  height: 100%;
}

.nxt-blog-card:hover {
  border-color: var(--nxt-yellow-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.nxt-blog-card h3 {
  font-family: var(--nxt-font-display) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.button {
  font-family: var(--nxt-font-body) !important;
  text-transform: none;
  font-weight: 600;
  border-radius: 100px !important;
  padding: 0 2rem;
  letter-spacing: 0.01em;
  transition: all var(--nxt-transition);
  margin-bottom: 0 !important;
}

.button i { display: inline-block; }

.button.fill {
  background: var(--nxt-yellow) !important;
  color: #000 !important;
  border: none !important;
}

.button.fill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(222, 255, 63, 0.3);
  filter: brightness(1.08);
}

body:not(.dark) .button.fill:hover {
  background: #000 !important;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  filter: none;
}

.button.border {
  background: transparent !important;
  border: 1px solid var(--nxt-border-strong) !important;
  color: var(--nxt-text-primary) !important;
}

.button.border:hover {
  border-color: var(--nxt-accent-text) !important;
  transform: translateY(-3px);
}

/* ─── SURFACES ─── */
.surface-container {
  background: var(--nxt-surface-1) !important;
  border: 1px solid var(--nxt-border-subtle) !important;
  border-radius: var(--nxt-radius-lg) !important;
  overflow: hidden;
}

/* Fix button overflow inside form containers */
.surface-container .button {
  max-width: 100%;
  box-sizing: border-box;
}

.surface-container form .button[style*="width"] {
  margin-left: 0;
  margin-right: 0;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--nxt-font-display) !important;
  color: var(--nxt-text-primary) !important;
  letter-spacing: -0.02em;
}

.secondary-text { color: var(--nxt-text-secondary) !important; }

/* ─── CHIPS ─── */
.chip {
  font-family: var(--nxt-font-body) !important;
  border-radius: 100px !important;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--nxt-surface-2) !important;
  border: 1px solid var(--nxt-border-mid) !important;
  color: var(--nxt-text-primary) !important;
}

.chip.border { background: transparent !important; }
.chip:hover { border-color: var(--nxt-text-primary) !important; }

.chip.fill.nxt-accent,
.chip.small.nxt-accent {
  background: var(--nxt-yellow) !important;
  border-color: var(--nxt-yellow) !important;
  color: #000 !important;
}

body:not(.dark) .chip.fill.nxt-accent,
body:not(.dark) .chip.small.nxt-accent {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

/* ─── WHATSAPP ─── */
.nxt-whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: all var(--nxt-transition);
}

.nxt-whatsapp-fab:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.nxt-whatsapp-fab img { position: relative; z-index: 1; }

.nxt-whatsapp-btn {
  background: #25D366 !important;
  color: #fff !important;
  border: none !important;
}

.nxt-whatsapp-btn:hover {
  background: #1DB954 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
.nxt-fade-up {
  opacity: 1;
  transform: none;
}

.nxt-fade-up.visible {
  opacity: 1;
  transform: none;
}

.nxt-scale-in {
  opacity: 1;
  transform: none;
}

.nxt-scale-in.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.nxt-stagger > .nxt-fade-up:nth-child(1) { transition-delay: 0ms; }
.nxt-stagger > .nxt-fade-up:nth-child(2) { transition-delay: 80ms; }
.nxt-stagger > .nxt-fade-up:nth-child(3) { transition-delay: 160ms; }
.nxt-stagger > .nxt-fade-up:nth-child(4) { transition-delay: 240ms; }
.nxt-stagger > .nxt-fade-up:nth-child(5) { transition-delay: 320ms; }
.nxt-stagger > .nxt-fade-up:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .nxt-fade-up, .nxt-scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── PROSE (blog) ─── */
.nxt-prose {
  font-family: var(--nxt-font-body);
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--nxt-text-secondary);
}

.nxt-prose h2, .nxt-prose h3 { margin-top: 2rem; }
.nxt-prose p { margin-bottom: 1.5rem; }

/* ─── UTILITIES ─── */
.responsive { max-width: 1200px; margin: 0 auto; }
.divider { border-color: var(--nxt-border-subtle) !important; }
[x-cloak] { display: none !important; }

.nxt-benefit-icon i,
.nxt-compliance-banner i,
.nxt-article i,
.nxt-bento-feature i { display: inline-block; }

.extra {
  font-family: var(--nxt-font-display) !important;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* ─── GLASS EFFECTS ─── */
.nxt-benefit-card:hover,
.nxt-bento-feature:hover {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body.dark .nxt-product-hero {
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.dark .nxt-cta-section {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body.dark .chip.border {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.nxt-mobile-cta {
  background: var(--nxt-surface-glass) !important;
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--nxt-border-subtle);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤768px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nxt-bento-features { grid-template-columns: 1fr 1fr; }
  .nxt-product-hero { padding: 2rem; gap: 2rem; }
  .nxt-product-hero-img img { max-height: 240px; }
  footer { padding: 3.5rem 1.5rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤599px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 599px) {
  /* Hero */
  .nxt-hero { min-height: 90vh; padding: 5rem 1.2rem 7rem; }
  .nxt-hero-title { font-size: 2.2rem; }
  .nxt-hero-subtitle { font-size: 0.9rem; margin-bottom: 2rem; }
  .nxt-hero .row.gap { flex-direction: column; gap: 0.6rem; width: 100%; padding: 0 0.5rem; }
  .nxt-hero .button { width: 100%; justify-content: center; }
  .nxt-hero-symbol { width: 40px; height: 40px; margin-bottom: 1.5rem; }
  .nxt-hero::after { height: 60px; }

  /* Marquee */
  .nxt-marquee-item { font-size: 0.7rem; padding: 0 0.8rem; }
  .nxt-marquee-sep { margin: 0 0.8rem; }

  /* Stats */
  .nxt-stat { padding: 2rem 1rem; }
  .nxt-stat-number { font-size: 1.8rem; }
  .nxt-stat-label { font-size: 0.65rem; }

  /* Bento */
  .nxt-bento-image { min-height: 240px; }
  .nxt-bento-text { padding: 1.5rem; }
  .nxt-bento-features { grid-template-columns: 1fr; }
  .nxt-bento-feature { padding: 1rem; }

  /* Section titles */
  .nxt-section-title { font-size: 1.5rem; }

  /* Product hero */
  .nxt-product-hero { padding: 1.5rem; gap: 1.5rem; }
  .nxt-product-hero-img { padding: 1rem; }
  .nxt-product-hero-img img { max-height: 200px; }
  .nxt-product-hero-info h2 { font-size: 1.6rem; }

  /* Product cards */
  .nxt-product-card::before { width: 150px; height: 150px; }
  .nxt-product-img-wrap { padding: 0.8rem; }

  /* Gallery thumbnails */
  .nxt-gallery-thumb,
  .nxt-gallery-thumb.nxt-thumb-active {
    width: 60px !important; height: 60px !important;
    min-width: 60px !important; min-height: 60px !important;
    max-width: 60px !important; max-height: 60px !important;
  }
  .nxt-gallery-main { padding: 0.5rem; }

  /* Spec table — stack on mobile */
  table.stripes tr { display: flex; flex-wrap: wrap; padding: 0.8rem 0; }
  table.stripes td { display: block; width: 100% !important; padding: 0.3rem 1rem !important; text-align: left !important; }
  table.stripes td:last-child { font-size: 1rem; }

  /* Benefits */
  .nxt-benefit-card { padding: 1.5rem; }
  .nxt-benefit-card h3 { font-size: 0.95rem; }

  /* CTA */
  .nxt-cta-section h2 { font-size: 1.4rem; }

  /* Footer */
  footer { padding: 3rem 1rem 1.5rem; }
  footer::before { width: 36px; }

  /* Lojas map */
  [style*="aspect-ratio:16/9"] { aspect-ratio: 4/3 !important; }

  /* Form */
  .surface-container.padding { padding: 1.2rem !important; }

  /* Typography global */
  .extra { font-size: 1.8rem; }

  /* CTA button row */
  .nxt-cta-section .row.gap { flex-direction: column; }
  .nxt-cta-section .button { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤360px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .nxt-hero-title { font-size: 1.9rem; }
  .nxt-stat { padding: 1.5rem 0.6rem; }
  .nxt-stat-number { font-size: 1.5rem; }
  .nxt-marquee-item { font-size: 0.6rem; padding: 0 0.5rem; }
  .nxt-gallery-thumb,
  .nxt-gallery-thumb.nxt-thumb-active {
    width: 50px !important; height: 50px !important;
    min-width: 50px !important; min-height: 50px !important;
    max-width: 50px !important; max-height: 50px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   CAMADA 1 — PRIMEIRO IMPACTO (experiencia cinematica)
   ═══════════════════════════════════════════════════════════════════ */

/* ─── PRELOADER ─── */
.nxt-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--nxt-void);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--nxt-ease), visibility 0.6s;
}

.nxt-preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nxt-preloader svg path {
  stroke: var(--nxt-yellow);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: nxt-draw-logo 1.4s var(--nxt-ease) forwards;
}

.nxt-preloader svg path:nth-child(2) { animation-delay: 0.15s; }
.nxt-preloader svg path:nth-child(3) { animation-delay: 0.3s; }

@keyframes nxt-draw-logo {
  to { stroke-dashoffset: 0; }
}

/* ─── SHADER HERO BG (animated energy layer BEHIND the photo) ─── */
.nxt-hero-shader {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #050505 0%, #0a0a02 25%, #0f0f05 50%, #0a0a02 75%, #050505 100%);
  background-size: 400% 400%;
  animation: nxt-shader-breathe 12s ease infinite;
}

/* Photo sits ON TOP of the shader (z-index handled by .nxt-hero-bg existing styles) */

.nxt-hero-shader::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(222,255,63,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(222,255,63,0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(200,255,0,0.04) 0%, transparent 45%);
  animation: nxt-energy-pulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

body:not(.dark) .nxt-hero-shader {
  background: linear-gradient(135deg, #f0efe8 0%, #e8e7d8 25%, #e0dfcc 50%, #e8e7d8 75%, #f0efe8 100%);
  background-size: 400% 400%;
}

body:not(.dark) .nxt-hero-shader::after {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(180,200,0,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(180,200,0,0.03) 0%, transparent 40%);
}

@keyframes nxt-shader-breathe {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes nxt-energy-pulse {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* ─── CINEMATIC TEXT REVEAL ─── */
.nxt-hero-title .nxt-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.nxt-hero-title .nxt-word-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: nxt-word-up 0.7s var(--nxt-ease) forwards;
}

@keyframes nxt-word-up {
  to { transform: translateY(0); }
}

/* Hero subtitle + buttons fade in after text */
.nxt-hero .nxt-hero-subtitle {
  opacity: 0;
  animation: nxt-fade-in 0.8s var(--nxt-ease) 1.2s forwards;
}

.nxt-hero .nxt-hero-buttons {
  opacity: 0;
  animation: nxt-fade-in 0.6s var(--nxt-ease) 1.5s forwards;
}

@keyframes nxt-fade-in {
  to { opacity: 1; }
}

.nxt-greeting {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.3rem;
  display: block;
  opacity: 0;
  animation: nxt-fade-in 0.5s var(--nxt-ease) 0.3s forwards;
}

.nxt-welcome-back {
  display: block;
  font-size: 0.78rem;
  color: var(--nxt-yellow-mid);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: nxt-fade-in 0.5s var(--nxt-ease) 0.2s forwards;
}

/* ═══════════════════════════════════════════════════════════════════
   CAMADA 2 — O SITE REAGE A VOCE
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CURSOR SPOTLIGHT ─── */
.nxt-spotlight {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,255,63,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.4s;
}

body:not(.dark) .nxt-spotlight {
  background: radial-gradient(circle, rgba(0,0,0,0.035) 0%, transparent 70%);
  mix-blend-mode: multiply;
}

.nxt-spotlight.visible { opacity: 1; }

@media (pointer: coarse) {
  .nxt-spotlight { display: none !important; }
}

/* ─── TILT 3D (preserve-3d for VanillaTilt) ─── */
.nxt-product-card[data-tilt] {
  transform-style: preserve-3d;
}

.nxt-product-card[data-tilt] .js-tilt-glare {
  border-radius: var(--nxt-radius-lg);
}

/* ─── GYROSCOPE TILT (mobile) ─── */
.nxt-gyro-tilt {
  transition: transform 0.15s ease-out;
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════════
   CAMADA 3 — PRODUTO COMO EXPERIENCIA
   ═══════════════════════════════════════════════════════════════════ */

/* ─── FULLSCREEN PRODUCT ROOMS ─── */
.nxt-products-immersive {
  position: relative;
}

.nxt-product-room {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
  overflow: hidden;
}

.nxt-product-room:nth-child(even) {
  background: var(--nxt-surface-1);
}

.nxt-product-room-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.nxt-product-room:nth-child(even) .nxt-product-room-inner {
  direction: rtl;
}

.nxt-product-room:nth-child(even) .nxt-product-room-inner > * {
  direction: ltr;
}

.nxt-product-room-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nxt-product-room-img img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.2));
  transition: transform 0.15s ease-out;
}

.nxt-product-room-info h2 {
  font-family: var(--nxt-font-display) !important;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.nxt-room-linha {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nxt-accent-text);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.nxt-room-desc {
  font-size: 1rem;
  color: var(--nxt-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
}

.nxt-product-room-specs {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.nxt-room-spec-value {
  font-family: var(--nxt-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--nxt-text-primary);
  letter-spacing: -0.03em;
}

.nxt-room-spec-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nxt-text-muted);
  margin-top: 0.25rem;
}

.nxt-room-colors {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.nxt-room-color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--nxt-border-mid);
  transition: transform 0.2s, border-color 0.2s;
}

.nxt-room-color-dot:hover {
  transform: scale(1.2);
  border-color: var(--nxt-text-primary);
}

/* Side navigation dots */
.nxt-room-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.nxt-room-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nxt-border-mid);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--nxt-ease);
}

.nxt-room-nav-dot.active {
  background: var(--nxt-yellow);
  height: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .nxt-product-room {
    padding: 5rem 1.5rem 3rem;
    min-height: auto;
  }

  .nxt-product-room-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .nxt-product-room:nth-child(even) .nxt-product-room-inner {
    direction: ltr;
  }

  .nxt-product-room-img img { max-width: 300px; }
  .nxt-room-desc { max-width: none; }
  .nxt-product-room-specs { justify-content: center; }
  .nxt-room-colors { justify-content: center; }
  .nxt-room-nav { display: none; }
}

/* ─── DRAG-TO-ROTATE GALLERY ─── */
.nxt-drag-gallery {
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  overflow: hidden;
  border-radius: var(--nxt-radius-lg);
  background: #fff;
  border: 1px solid var(--nxt-border-subtle);
}

body.dark .nxt-drag-gallery { background: #f5f5f5; }

.nxt-drag-gallery:active { cursor: grabbing; }

.nxt-drag-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  padding: 2rem;
  display: block;
  pointer-events: none;
}

.nxt-drag-hint {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--nxt-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  background: var(--nxt-surface-glass);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  transition: opacity 0.5s;
  pointer-events: none;
}

.nxt-drag-hint.hidden { opacity: 0; }

.nxt-drag-hint i {
  font-size: 1rem;
  animation: nxt-swipe-hint 2s ease-in-out infinite;
}

@keyframes nxt-swipe-hint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.nxt-drag-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem;
  background: var(--nxt-surface-1);
  border: 1px solid var(--nxt-border-subtle);
  border-top: none;
  border-radius: 0 0 var(--nxt-radius-lg) var(--nxt-radius-lg);
}

.nxt-drag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nxt-border-mid);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.nxt-drag-dot.active {
  background: var(--nxt-yellow);
  transform: scale(1.3);
}

/* ─── CLIP-PATH PRODUCT REVEAL ─── */
.nxt-clip-reveal {
  clip-path: circle(0% at 50% 40%);
  animation: nxt-circle-expand 0.9s var(--nxt-ease) forwards;
}

@keyframes nxt-circle-expand {
  to { clip-path: circle(100% at 50% 40%); }
}

/* ─── REACTIVE BACKGROUND GLOW ─── */
.nxt-reactive-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 30%, var(--nxt-product-color, transparent) 0%, transparent 60%);
  opacity: 0;
  transition: all 0.8s var(--nxt-ease);
}

.nxt-reactive-glow.active { opacity: 0.08; }
body:not(.dark) .nxt-reactive-glow.active { opacity: 0.05; }

/* ─── SCROLL SPECS (cinematic, not table) ─── */
.nxt-spec-scroll h3 {
  margin-bottom: 1rem;
}

.nxt-spec-item {
  padding: 3rem 0;
  border-bottom: 1px solid var(--nxt-border-subtle);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.nxt-spec-item:last-child { border-bottom: none; }

.nxt-spec-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nxt-accent-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nxt-spec-label i { font-size: 0.9rem; }

.nxt-spec-big {
  font-family: var(--nxt-font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--nxt-text-primary);
}

.nxt-spec-unit {
  font-size: 0.35em;
  color: var(--nxt-accent-text);
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0.05em;
}

.nxt-spec-bar {
  height: 4px;
  background: var(--nxt-border-subtle);
  border-radius: 2px;
  margin-top: 1rem;
  overflow: hidden;
}

.nxt-spec-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--nxt-yellow), var(--nxt-lime));
  border-radius: 2px;
  width: 0%;
  transition: width 1.2s var(--nxt-ease);
}

.nxt-spec-item.visible .nxt-spec-bar-fill {
  width: var(--fill, 70%);
}

.nxt-spec-context p {
  font-size: 0.95rem;
  color: var(--nxt-text-secondary);
  line-height: 1.6;
}

.nxt-spec-remaining {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.nxt-spec-remaining p:first-child {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--nxt-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.nxt-spec-remaining p:last-child {
  font-family: var(--nxt-font-display);
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 599px) {
  .nxt-spec-item {
    grid-template-columns: 1fr;
    padding: 2rem 0;
    gap: 0.8rem;
  }
  .nxt-spec-big { font-size: 2.2rem; }
}

/* ─── TIME-OF-DAY ─── */
html[data-period="night"] .nxt-hero-shader {
  background: linear-gradient(135deg, #020208 0%, #05050f 25%, #080818 50%, #05050f 75%, #020208 100%);
  background-size: 400% 400%;
}

html[data-period="evening"] .nxt-hero-shader {
  background: linear-gradient(135deg, #080502 0%, #0f0a05 25%, #12100a 50%, #0f0a05 75%, #080502 100%);
  background-size: 400% 400%;
}

/* ─── iOS GYRO PERMISSION ─── */
.nxt-gyro-btn {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--nxt-yellow);
  color: #000;
  font-family: var(--nxt-font-body);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.7rem 1.3rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(222,255,63,0.3);
}

/* ─── VIEW TRANSITIONS (HTMX cross-fade between pages) ─── */
@view-transition { navigation: auto; }

::view-transition-old(root) {
  animation: nxt-vt-fade-out 0.25s var(--nxt-ease) both;
}
::view-transition-new(root) {
  animation: nxt-vt-fade-in 0.35s var(--nxt-ease) both;
}

@keyframes nxt-vt-fade-out {
  to { opacity: 0; transform: scale(0.98); }
}
@keyframes nxt-vt-fade-in {
  from { opacity: 0; transform: scale(1.02); }
}

/* ─── SCROLL-DRIVEN ANIMATIONS ─── */

/* Progress bar — fills as user scrolls */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--nxt-yellow);
  transform-origin: left;
  z-index: 9999;
  animation: nxt-scroll-progress linear both;
  animation-timeline: scroll();
}

@keyframes nxt-scroll-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Parallax on hero background */
.nxt-hero-bg {
  animation: nxt-hero-parallax linear both;
  animation-timeline: scroll();
  animation-range: 0vh 100vh;
}

@keyframes nxt-hero-parallax {
  from { transform: translateY(0); }
  to   { transform: translateY(25%); }
}

/* Scroll-driven fade-in for sections (progressive enhancement) */
@supports (animation-timeline: view()) {
  .nxt-scroll-reveal {
    animation: nxt-scroll-fade-in linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }

  @keyframes nxt-scroll-fade-in {
    from { opacity: 0; transform: translateY(2rem); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ─── TEXT-WRAP: BALANCE + PRETTY ─── */
.nxt-section-title,
.nxt-hero-title,
.extra,
h1, h2, h3 {
  text-wrap: balance;
}
p, li, dd {
  text-wrap: pretty;
}

/* ─── CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--nxt-void);
}
::-webkit-scrollbar-thumb {
  background: var(--nxt-yellow);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--nxt-lime);
}
/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--nxt-yellow) var(--nxt-void);
}

/* ─── FOCUS RING ACESSIBILIDADE ─── */
*:focus-visible {
  outline: 2px solid var(--nxt-yellow);
  outline-offset: 2px;
}
*:focus:not(:focus-visible) {
  outline: none;
}

/* ─── COLOR-MIX PALETA DINAMICA ─── */
:root {
  --nxt-yellow-dim: color-mix(in oklch, var(--nxt-yellow), transparent 94%);
  --nxt-yellow-glow: color-mix(in oklch, var(--nxt-yellow), transparent 85%);
  --nxt-yellow-border: color-mix(in oklch, var(--nxt-yellow), transparent 75%);
  --nxt-yellow-mid: color-mix(in oklch, var(--nxt-yellow), transparent 50%);
}
body:not(.dark) {
  --nxt-yellow-dim: color-mix(in oklch, var(--nxt-yellow), transparent 88%);
  --nxt-yellow-glow: color-mix(in oklch, var(--nxt-yellow), transparent 80%);
}

/* ─── RELATED PRODUCTS ─── */
.nxt-related {
  border-top: 1px solid var(--nxt-border-subtle);
  padding-top: 3rem;
}

.nxt-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.nxt-related-card {
  background: var(--nxt-surface-1);
  border: 1px solid var(--nxt-border-subtle);
  border-radius: var(--nxt-radius-lg);
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--nxt-transition), transform var(--nxt-transition);
  display: block;
}
.nxt-related-card:hover {
  border-color: var(--nxt-yellow-border);
  transform: translateY(-4px);
}
.nxt-related-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}
.nxt-related-card h4 {
  font-family: var(--nxt-font-display);
  font-weight: 700;
  margin: 0.8rem 0 0.3rem;
}
.nxt-related-card .nxt-related-specs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--nxt-text-secondary);
}

/* ─── FAQ ACCORDION ─── */
.nxt-faq {
  padding: 5rem 0;
}

.nxt-faq-item {
  border-bottom: 1px solid var(--nxt-border-subtle);
}

.nxt-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--nxt-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nxt-text-primary);
  text-align: left;
  gap: 1rem;
}
.nxt-faq-question:hover {
  color: var(--nxt-accent-text);
}
.nxt-faq-question i {
  transition: transform var(--nxt-transition);
  flex-shrink: 0;
  color: var(--nxt-text-muted);
}

.nxt-faq-answer {
  overflow: hidden;
  padding: 0 0 1.3rem;
  color: var(--nxt-text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════════
   STORE LOCATOR (/lojas)
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Interactive map ─── */
.nxt-map-wrap {
  position: relative;
  border-radius: var(--nxt-radius-lg);
  overflow: hidden;
  border: 1px solid var(--nxt-border-subtle);
  margin-bottom: 3rem;
}
.nxt-map-interactive {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}
.nxt-map-interactive .gm-style { border-radius: var(--nxt-radius-lg); }

/* ─── Map badge (glass overlay) ─── */
.nxt-map-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: var(--nxt-surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  border: 1px solid var(--nxt-border-subtle);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--nxt-text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  pointer-events: none;
}
.nxt-map-badge i { font-size: 0.9rem; color: var(--nxt-accent-text); }

/* ─── Search field ─── */
.nxt-store-search {
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

/* ─── Filter chips ─── */
.nxt-store-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.nxt-store-filters .chip {
  cursor: pointer;
  transition: all var(--nxt-transition);
  user-select: none;
}
.nxt-store-filters .chip.active {
  background: var(--nxt-yellow) !important;
  color: #000 !important;
  border-color: var(--nxt-yellow) !important;
  font-weight: 700;
}

/* ─── Store grid (replaces BeerCSS grid to fix layout overlap bug) ─── */
.nxt-store-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.nxt-store-grid-item {
  flex: 0 0 calc(33.333% - 0.667rem);
  min-width: 0;
}
@media (max-width: 900px) {
  .nxt-store-grid-item { flex: 0 0 calc(50% - 0.5rem); }
}
@media (max-width: 600px) {
  .nxt-store-grid-item { flex: 0 0 100%; }
}

/* ─── Store card ─── */
.nxt-store-card {
  background: var(--nxt-surface-1);
  border: 1px solid var(--nxt-border-subtle);
  border-radius: var(--nxt-radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--nxt-transition);
  overflow: hidden;
}
.nxt-store-card:hover {
  border-color: var(--nxt-yellow-border);
  transform: translateY(-4px);
  background: linear-gradient(90deg, var(--nxt-yellow), var(--nxt-lime)) top / 100% 3px no-repeat,
              var(--nxt-surface-1);
}

.nxt-store-card-name {
  font-family: var(--nxt-font-display) !important;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.nxt-store-card-city {
  font-size: 0.82rem;
  color: var(--nxt-text-muted);
  margin-top: 2px;
}
.nxt-store-card-address {
  font-size: 0.82rem;
  color: var(--nxt-text-secondary);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.nxt-store-card-hours {
  font-size: 0.78rem;
  color: var(--nxt-text-secondary);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nxt-store-card-hours i { font-size: 0.85rem; color: var(--nxt-accent-text); }

/* CTAs — always pinned to bottom */
.nxt-store-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
}
.nxt-store-card-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--nxt-border-mid);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--nxt-text-secondary);
  text-decoration: none;
  transition: all var(--nxt-transition);
  white-space: nowrap;
}
.nxt-store-card-actions a:hover {
  background: var(--nxt-yellow);
  color: #000;
  border-color: var(--nxt-yellow);
}
.nxt-store-card-actions a i { font-size: 0.85rem; }

/* "Em breve" dashed card */
.nxt-store-card--soon {
  opacity: 0.55;
  border-style: dashed;
}
.nxt-store-card--soon:hover {
  transform: none;
  border-color: var(--nxt-border-subtle);
}
.nxt-store-card--soon::before { display: none; }

/* ─── Store search field ─── */
.field.border > i + input[type="search"] { padding-left: 2.5rem; }

/* ─── Geolocation button ─── */
.nxt-geo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 1px solid var(--nxt-border-mid);
  border-radius: 100px;
  color: var(--nxt-text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--nxt-transition);
  white-space: nowrap;
}
.nxt-geo-btn:hover {
  background: var(--nxt-yellow);
  color: #000;
  border-color: var(--nxt-yellow);
}
.nxt-geo-btn i { font-size: 1rem; }
.nxt-geo-btn.locating {
  pointer-events: none;
  opacity: 0.6;
}

/* ─── Distance badge ─── */
.nxt-distance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.6rem;
  background: var(--nxt-yellow-dim);
  border: 1px solid var(--nxt-yellow-border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--nxt-accent-text);
  margin-top: 0.5rem;
}
.nxt-distance-badge i { font-size: 0.75rem; }

/* ─── Nearest store highlight ─── */
.nxt-nearest-card {
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* ─── Store card link ─── */
.nxt-store-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ═════ Store Detail Page (/lojas/:slug) ═════ */

.nxt-store-detail { max-width: 1000px; margin: 0 auto; }

.nxt-store-detail-header { margin-bottom: 2rem; }
.nxt-store-detail-header h1 {
  font-family: var(--nxt-font-display) !important;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}
.nxt-store-detail-header .nxt-store-detail-subtitle {
  font-size: 1rem;
  color: var(--nxt-text-secondary);
  margin-top: 0.3rem;
}
.nxt-store-detail-header .nxt-store-detail-desc {
  font-size: 0.92rem;
  color: var(--nxt-text-secondary);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 600px;
}

.nxt-store-detail-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  margin-bottom: 3rem;
}

.nxt-store-detail-map {
  width: 100%;
  aspect-ratio: 2/1;
  border-radius: var(--nxt-radius-lg);
  overflow: hidden;
  border: 1px solid var(--nxt-border-subtle);
  min-height: 300px;
}

.nxt-store-detail-info {
  background: var(--nxt-surface-1);
  border: 1px solid var(--nxt-border-subtle);
  border-radius: var(--nxt-radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nxt-store-detail-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--nxt-text-secondary);
  line-height: 1.5;
}
.nxt-store-detail-info-row i {
  font-size: 1.1rem;
  color: var(--nxt-accent-text);
  flex-shrink: 0;
  margin-top: 2px;
}
.nxt-store-detail-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}
.nxt-store-detail-ctas a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--nxt-border-mid);
  border-radius: var(--nxt-radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--nxt-text-secondary);
  text-decoration: none;
  transition: all var(--nxt-transition);
}
.nxt-store-detail-ctas a:hover {
  background: var(--nxt-yellow);
  color: #000;
  border-color: var(--nxt-yellow);
}
.nxt-store-detail-ctas a i { font-size: 1rem; }
.nxt-store-detail-ctas a.primary {
  background: var(--nxt-yellow);
  color: #000;
  border-color: var(--nxt-yellow);
  font-weight: 700;
}
.nxt-store-detail-ctas a.primary:hover {
  background: var(--nxt-lime);
  border-color: var(--nxt-lime);
}

.nxt-store-detail-placeholder {
  background: var(--nxt-surface-1);
  border: 1px dashed var(--nxt-border-mid);
  border-radius: var(--nxt-radius-lg);
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--nxt-text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}
.nxt-store-detail-placeholder i {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.nxt-store-detail-nearby h2 {
  font-family: var(--nxt-font-display) !important;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .nxt-store-detail-content {
    grid-template-columns: 1fr;
  }
  .nxt-store-detail-header h1 { font-size: 1.6rem; }
  .nxt-store-detail-map { aspect-ratio: 4/3; }
}

/* No results message */
.nxt-store-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--nxt-text-muted);
}
.nxt-store-empty i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.8rem;
  color: var(--nxt-yellow-mid);
}

/* ─── Store locator mobile ─── */
@media (max-width: 599px) {
  .nxt-map-interactive { aspect-ratio: 4/3; }
  .nxt-store-card-actions { flex-direction: column; }
  .nxt-store-card-actions a { justify-content: center; }
}

/* ─── REDUCED MOTION — disable ALL new animations ─── */
@media (prefers-reduced-motion: reduce) {
  .nxt-hero-title .nxt-word-inner {
    transform: none !important;
    animation: none !important;
  }
  .nxt-hero .nxt-hero-subtitle,
  .nxt-hero .nxt-hero-buttons,
  .nxt-greeting, .nxt-welcome-back {
    opacity: 1 !important;
    animation: none !important;
  }
  .nxt-hero-shader, .nxt-hero-shader::after {
    animation: none !important;
  }
  .nxt-preloader { display: none !important; }
  .nxt-clip-reveal {
    clip-path: none !important;
    animation: none !important;
  }
  .nxt-drag-hint i { animation: none !important; }
  .nxt-spec-bar-fill { transition: none !important; width: var(--fill, 70%) !important; }
  body::before { animation: none !important; display: none !important; }
  .nxt-hero-bg { animation: none !important; }
  .nxt-scroll-reveal { animation: none !important; opacity: 1 !important; transform: none !important; }
  .nxt-store-card:hover { transform: none !important; }
  ::view-transition-old(root),
  ::view-transition-new(root) { animation-duration: 0s !important; }
}
