.productLayout {
  display: flex;
  position: relative;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.mainImageContainer {
  position: relative;
  width: 100%;
  max-width: 100%;
  cursor: crosshair;
  flex: 1 1 300px;
}

.mainImage {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  max-width: 100%;
}

.lens {
  position: absolute;
  border: 1px solid rgba(0, 100, 255, 0.4);
  background-color: rgba(0, 150, 255, 0.2);
  pointer-events: none; 
  border-radius: 2px;
}

.zoomResultPane {
  position: absolute;
  left: 100%;
  top: 0;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover; 
  z-index: 50;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-left: 24px;
}
