.store_product_outer_image_area {
    max-width: 100%;
    max-height: 320px;
    width: 100%;
    height: 320px; /* Maintain the aspect ratio */
    margin: auto;
    position: relative;
    overflow: hidden;
  }
  
  .store_product_outer_image_area img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    object-fit: cover;
  }