.product-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .product-card {
      border: 1px solid #ccc;
      padding: 10px;
      text-align: center;
    }

    .product-image img {
      width: 100%;
      height: auto;
    }
  </style>

.product-image {
  width: 100%;
  height: 200px;
  background-size: contain;        /* Ensure full image is visible */
  background-repeat: no-repeat;
  background-position: center;     /* Center the image */
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.product-caption {
  padding: 15px;
  font-family: Arial, sans-serif;
  color: #333;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
}
