/* Overlay */
.zoom-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 1000;
  cursor: zoom-out;
}
.zoom-overlay.active {
  display: block !important;
}

/* Zoomed image */
.zoomed {
  position: fixed !important;
  top: 52% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(2);
  width: 540px !important;
  max-width: 80vw !important;
  max-height: 45vh !important;
  z-index: 1001 !important;
  transition: transform 0.3s ease-in-out;
  cursor: zoom-out !important;
}

/* Mobile scaling */
@media (max-width: 768px) {
  .zoomed {
    transform: translate(-50%, -50%) scale(1);
  }
}
