.theme-header .zpcontainer .theme-branding-info .theme-logo-parent a img {
    display: none !important;
}



    body {
      font-family: Arial, sans-serif;
      padding: 20px;
    }

    .product {
      display: flex;
      gap: 20px;
    }

    /* Left: Normal Image */
    .zoom-container {
      position: relative;
      width: 400px;
      height: 400px;
      border: 2px solid #ddd;
      overflow: hidden;
      cursor: crosshair;
    }

    .zoom-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Right: Zoomed Preview */
    .zoom-result {
      width: 400px;
      height: 400px;
      border: 2px solid #ddd;
      background-repeat: no-repeat;
      background-size: 800px 800px; /* must be larger than original */
      display: none; /* hidden until hover */
    }


