/* Zoom Styles */
.image-zoom {
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

.zoom-lens {
  position: absolute;
  border: 2px solid rgba(255,255,255,0.8);
  background-color: rgba(255,255,255,0.3);
  display: none;
  pointer-events: none;
  z-index: 10;
}

.zoomed-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  display: none;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 20;
  background-color: white;
}

