* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f2ebe3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .card {
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .product-image {
    width: 50%;
    object-fit: cover;
  }
  
  .card-content {
    padding: 24px;
    width: 50%;
  }
  
  .product-category {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: gray;
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .product-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .product-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .new-price {
    color: hsl(158, 36%, 37%);
    font-size: 24px;
    font-weight: bold;
  }
  
  .old-price {
    text-decoration: line-through;
    color: gray;
  }
  
  .add-to-cart {
    background-color: hsl(158, 36%, 37%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
  }