@media (min-width: 1025px) {
  .woocommerce-product-gallery figure.ct-media-container {
    position: relative;
    overflow: hidden;
    cursor: none;
  }

  .woocommerce-product-gallery figure.ct-media-container img {
    display: block;
    width: 100%;
    height: auto;
  }

  .nv-zoom-lens {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 20;

    background-repeat: no-repeat;
    background-color: #fff;

    border: 2px solid rgba(255,255,255,0.95);
    box-shadow:
      0 10px 30px rgba(0,0,0,0.18),
      0 0 0 1px rgba(15,24,81,0.10);
  }

  .nv-zoom-lens.is-visible {
    opacity: 1;
    transform: scale(1);
  }
}