/* Glow trail cursor — desktop only */
body.npt-cursor-active {
  cursor: none;
}

body.npt-cursor-active a,
body.npt-cursor-active button,
body.npt-cursor-active .btn,
body.npt-cursor-active .product-card,
body.npt-cursor-active .nav-toggle,
body.npt-cursor-active .hero-dots button {
  cursor: none;
}

.npt-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.npt-cursor.is-visible {
  opacity: 1;
}

.npt-cursor-dot,
.npt-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

.npt-cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--navy-dark, #0b1a2f);
  z-index: 10002;
}

.npt-cursor-glow {
  width: 28px;
  height: 28px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(37, 99, 235, 0.08) 55%, transparent 70%);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.25), 0 0 40px rgba(37, 99, 235, 0.12);
  z-index: 10001;
  transition: width 0.2s ease, height 0.2s ease, box-shadow 0.2s ease;
}

.npt-cursor.is-hover .npt-cursor-glow {
  width: 40px;
  height: 40px;
  box-shadow: 0 0 28px rgba(37, 99, 235, 0.35), 0 0 56px rgba(37, 99, 235, 0.15);
}

@media (max-width: 1023px), (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .npt-cursor {
    display: none !important;
  }

  body.npt-cursor-active {
    cursor: auto;
  }

  body.npt-cursor-active a,
  body.npt-cursor-active button,
  body.npt-cursor-active .btn,
  body.npt-cursor-active .product-card,
  body.npt-cursor-active .nav-toggle,
  body.npt-cursor-active .hero-dots button {
    cursor: auto;
  }
}
