/* /assets/css/carousel.css */

.glide { max-width: 800px; margin: auto; position: relative; }

.glide__slide {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glide__slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}
.glide__arrow {
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 10px 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.glide__arrow--left { left: 15px; }
.glide__arrow--right { right: 15px; }

#lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85); display: none;
  align-items: center; justify-content: center; z-index: 9999;
}
#lightbox img {
  max-width: 90%; max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

