.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  .product {
    display: inline-flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 300px;
    justify-content: space-evenly;

  }
  
  .product_img img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

  
  .product-title {
    background-color: #f5f5f5;
    padding: 10px;
    text-align: center;
    
  }
  
  .product-desc {
    padding: 10px;
  }
  
  .product-price {
    background-color: #f5f5f5;
    display: block;
    color: #333;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    
  }
  
  .heading {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
    text-shadow: 2px 2px #f5f5f5;
  }
  