.pro-cro-product-gallery {
  display: flex;
  align-items: flex-start;
  gap: 20px;
	flex-direction: row-reverse;
}

.pro-cro-main-image {
  flex: 1;
  max-width: 85%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.pro-cro-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.pro-cro-thumbs {
  width: 15%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.pro-cro-thumbs::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

.pro-cro-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.pro-cro-thumbs img:hover {
  opacity: 0.75;
}


.pro-cro-main-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.pro-cro-zoom {
  position: absolute;
  pointer-events: none;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid white;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 650%; /* Ajusta si quieres más o menos zoom */
  display: none;
  z-index: 10;
}