body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f2f2f2;
  }
  
  h1 {
    text-align: center;
  }
  
  .product {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .product-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
  }
  
  .product-details {
    flex: 1;
    padding: 20px;
  }
  
  .product-name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
  }
  
  .product-price {
    font-size: 16px;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
  }