/* ─── Gallery Slideshow ─── */
.gallery-slideshow {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-track {
  position: relative;
  width: 100%;
}

.gallery-slide {
  display: none;
}

.gallery-slide.active {
  display: block;
}

.gallery-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Arrows */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s ease;
  z-index: 10;
}

.gallery-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

/* Counter */
.gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 16px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-slide img {
    height: 260px;
  }

  .gallery-btn {
    padding: 8px 12px;
    font-size: 1rem;
  }
}
