/* Approved custom CSS (landing-page motion only). Loaded after Tabler.
   Subtle scroll-reveal + card hover-lift. Fully disabled under reduced-motion. */
/* Scroll-reveal removed site-wide — .reveal elements are always visible (no fade-up on scroll).
   The .reveal class + landing.js observer are now no-ops. */
.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.hover-lift {
  transition: transform .2s ease, box-shadow .2s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .hover-lift,
  .hover-lift:hover {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Screenshot lightbox (click any product screenshot to view it larger). */
.js-theme-shot { cursor: zoom-in; }
.nx-lightbox {
  position: fixed; inset: 0; z-index: 1080;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, .82);
  cursor: zoom-out;
}
.nx-lightbox-img {
  max-width: 95vw; max-height: 92vh; width: auto; height: auto;
  border-radius: .5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
  cursor: default;
}
.nx-lightbox-close {
  position: absolute; top: 1rem; right: 1.25rem;
  border: 0; background: transparent; color: #fff;
  font-size: 2.5rem; line-height: 1; cursor: pointer;
}
body.nx-lightbox-open { overflow: hidden; }
.nx-lightbox-prev,
.nx-lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  border: 0; background: rgba(255, 255, 255, .12); color: #fff;
  width: 3rem; height: 3rem; border-radius: 50%;
  font-size: 2rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .15s ease;
}
.nx-lightbox-prev:hover,
.nx-lightbox-next:hover { background: rgba(255, 255, 255, .25); }
.nx-lightbox-prev { left: 1.25rem; }
.nx-lightbox-next { right: 1.25rem; }
@media (max-width: 575.98px) {
  .nx-lightbox-prev { left: .4rem; }
  .nx-lightbox-next { right: .4rem; }
}
