/* Fix product card height for 1024px and 1080px devices */
@media (min-width: 1024px) {
  .product-card, .product-card1 {
    height: 350px;
    display: flex;
    flex-direction: column;
  }
  
  .product-card .product-image, .product-card1 .product-image {
    flex: 1;
    object-fit: contain;
  }
  
  .product-footer {
    margin-top: auto;
  }
}