.zoom-container {
  position: relative;
  display: inline-block;
}

#zoom-img {
  width: 100%; /* Ou tamanho fixo, se preferir */
  height: fit-content;
  display: block;
}

.zoom-lens {
  position: absolute;
  border: 1px solid #000;
  width: 50%;
  height: 50%;
  opacity: 0.3;
  background-color: #fff;
  cursor: crosshair;
  display: none;
  pointer-events: none; /* <-- Importante para evitar conflito de eventos */
}

.zoom-result {
  position: absolute;
  left: 101%;
  top: 0;
  width: 65%;
  height: 65%;
  border: 1px solid #ccc;
  background-repeat: no-repeat;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: none;
  z-index: 10;
  pointer-events: none;
}


@media (max-width: 768px) {
  .zoom-lens,
  .zoom-result {
    display: none !important;
  }
}
