body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
  }
  
  .product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
  }
  
  .product {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .product img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .product .product-details {
    display: grid;
    grid-template-rows: auto auto; /* Align title and description consistently */
    gap: 10px;
    text-align: center;
  }
  
  .product h3 {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.5;
  }
  
  .product p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
  }
  
  .product button {
    margin-top: auto; /* Push the button to the bottom of the card */
    background-color: #2d55d7;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
  }
  
  .product button:hover {
    background-color: #1c3cae;
  }
  