﻿/* ===== Zoom Container ===== */
.zoom-container {
  position: relative;
  overflow: hidden;
}

.zoom-image {
  width: 100%;
  display: block;
}

/* ===== Circular Magnifier ===== */
.zoom-lens {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  background-repeat: no-repeat;
  background-size: 200%;
  pointer-events: none;
  display: none;
  transition: opacity 0.2s ease;
}