    .product-img-container {
      height: 250px;        /* Set desired height */
      overflow: hidden;
    }
  
    .product-img-container img {
        max-height: 250px;       /* Prevent image from being too tall */
        width: 100%;             /* Full width of card */
        object-fit: contain;     /* Keep full image visible, no crop */
        background-color: #f8f9fa; /* optional: add background to fill gaps */
    }


    