.box {

}

/* zoomBox css starts */
.zoomBox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.zoomBox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.zoomBox--listener {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99;
  z-index: 999999;
}

.zoomBox .zoomBox--lens {
  display: block;
  position: absolute;
  top: calc(var(--lens-y, 0px));
  left: calc(var(--lens-x, 0px));
  width: calc(var(--lens-width, 0px));
  height: calc(var(--lens-height, 0px));
  background: rgba(0, 0, 0, 0.4);

}

.zoomBox .zoomBox--lens::after {
  content: attr(data-text);
  position: absolute;
  bottom: 10%;
  width: 100%;
  left: 0;
  display: block;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  animation: delayVisible 0.3s both 0.5s;
}

@keyframes delayVisible {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.zoomBox--popover {
  display: block;
  visibility: hidden;
  position: fixed;
	z-index: 999999;
  inset: 0;
  /*   margin-top: var(--mainHeader-height); */
  padding: 0;
}

.zoomBox--mirror {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 50rem;
  max-height: 100rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

}

.zoomBox--mirror img {
  position: absolute;
  width: calc(100% * var(--zoom-factor));
  max-width: unset;
  display: block;

}
.product_splide .zoomBox{
	height: 700px;
}
.box-media{
	height: 100%;
}
/* zoomBox css ends */

@media screen and (min-width: 768px) {
  .box {
    grid-template-columns: repeat(12, 1fr);
  }
  .box-media {
    grid-column: span 5;
  }
  .box-content {
    grid-column: span 7;
  }
}