/* =========================================================
   BUD24 Spotlight gallery v11
   Swipe/scroll between all auction images inside Spotlight.
========================================================= */
body.page-home-market .spotlight24-gallery {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

body.page-home-market .spotlight24-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y pinch-zoom;
}

body.page-home-market .spotlight24-gallery-track::-webkit-scrollbar {
  display: none;
}

body.page-home-market .spotlight24-gallery-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

body.page-home-market .spotlight24-img .spotlight24-gallery-slide img,
body.page-home-market .spotlight24-img img.spotlight24-gallery-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

body.page-home-market .spotlight24-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(3, 15, 28, .58);
  transform: translateX(-50%);
  pointer-events: none;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

body.page-home-market .spotlight24-gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.46);
  transition: width .18s ease, background .18s ease;
}

body.page-home-market .spotlight24-gallery-dot.is-active {
  width: 17px;
  border-radius: 999px;
  background: #fff;
}

body.page-home-market .spotlight24-gallery-count {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 7;
  display: none;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(3, 15, 28, .72);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  pointer-events: none;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

/* Existing overlay controls stay above the swipe track. */
body.page-home-market .spotlight24-img > .da-watch-btn,
body.page-home-market .spotlight24-img > .auction-watch-btn,
body.page-home-market .spotlight24-img > .spotlight24-badge {
  z-index: 9 !important;
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  body.page-home-market .spotlight24-gallery-dots {
    bottom: 15px;
    max-width: 42%;
  }

  body.page-home-market .spotlight24-gallery-count {
    display: block;
  }
}
