body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #fceabb, #f8b500);
    color: #333;
  }
  
  .cart-container {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .cart-items {
    margin-bottom: 20px;
  }
  
  .cart-item {
    display: flex;
    justify-content: space-between;
    background: #f9f9f9;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 12px;
    transition: 0.3s ease;
  }
  
  .cart-item:hover {
    background-color: #f1f1f1;
  }
  
  .cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .place-order-btn {
    background: #ff6347;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .place-order-btn:hover {
    background: #e5533f;
  }
  
  .back-home {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #444;
    text-decoration: none;
    font-weight: bold;
  }

  