/* xZoom Plugin CSS */
.xzoom-container {
  position: relative;
  display: inline-block;
}

.xzoom-lens {
  border: 1px solid #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  cursor: none;
  display: none;
}

.xzoom-preview {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.xzoom-tint {
  background: rgba(255,255,255,0.2) !important;
  cursor: crosshair;
}

.xzoom-caption {
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 0 0 4px 4px;
}

/* Gallery styles */
.xzoom-gallery {
  margin-top: 10px;
}

.xzoom-gallery img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin: 0 5px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.xzoom-gallery img:hover,
.xzoom-gallery img.active {
  border-color: #007bff;
}
