body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
  }
  .product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .product-card {
    width: 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .product-card:hover {
    transform: translateY(-5px);
  }
  .product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .product-details {
    padding: 15px;
  }
  .product-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
  }
  .product-price {
    color: #28a745;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .product-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
  }
  .buy-now {
    display: inline-block;
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
  }
  .buy-now:hover {
    background-color: #0056b3;
  }
  .cart {
    background-color: #fd9c6b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
}

.cart:hover {
    background-color: #e67e22;
}