/* thumbnails strip for slideshow */
.slideshow-thumbs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  box-sizing: border-box;
}
.slideshow-thumbs .thumb {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  outline: none;
}
.slideshow-thumbs .thumb img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}
.slideshow-thumbs .thumb:hover img {
  opacity: 1;
  transform: scale(1.08);
}
.slideshow-thumbs .thumb.active img {
  opacity: 1;
  box-shadow: 0 0 0 2px #fff;
  transform: scale(1.06);
}
/* Reserve space for the thumbs so they don't overlap the counter */
.slideshow-container { padding-bottom: 72px; }
