* {
    box-sizing: border-box;
  }
  
  .img-zoom-container {
    position: relative;
  }
  
  .img-zoom-lens {
    position: absolute;
    border: 1px solid #d4d4d4;
    /* Set the size of the lens */
    width: 40px;
    height: 40px;
  }
  
  .img-zoom-result {
    border: 1px solid #d4d4d4;
    /* Set the size and position of the result div */
    width: 300px;
    height: 300px;
    position: absolute;
    top: 0;
    left: 100%; /* Position the result div to the right of the image */
    visibility: hidden; /* Hide the result div by default */
  }
  
  .imgblock:hover .img-zoom-result {
    visibility: visible;
  }