#product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .product-card {
    border: 1px solid #ccc;
    padding: 15px;
    width: 200px;
    text-align: center;
  }
  
  .product-image {
    max-width: 100%;
    height: auto;
  }
  
  .product-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
  }
  
  .product-price {
    color: green;
    margin-top: 5px;
  }
  
  .product-description {
    font-size: 14px;
    margin-top: 5px;
  }
  