.swiper-slide {
  position: relative;
}

.gallery-item {
  display: block;
  position: relative;
  text-decoration: none;
}

.zoom-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.gallery-item:hover .zoom-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.zoom-icon {
  width: 24px;
  height: 24px;
}

/* Style pour l'image au survol */
.gallery-item:hover img {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Personnalisation GLightbox */
.glightbox-clean .gslide-description {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
}