body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7fafc;
    margin: 0;
    padding: 0;
  }
  
 
  .site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #009688;
    color: white;
    padding: 15px;
  }
  .logo img {
    width: 50px;
    margin-right: 10px;
    border-radius: 50%;
  }
  

  .cart-container {
    width: 80%;
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }
  .cart-item img {
    width: 80px;
    border-radius: 10px;
  }
  .quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .quantity-controls button {
    background-color: #009688;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
  }
  .total {
    text-align: right;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10%;
  }
  .checkout-btn {
    display: block;
    margin: 20px auto;
    background-color: #ff7043;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  .user-details {
    width: 80%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .user-details input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
  }
  

  .confirmation {
    width: 80%;
    margin: 20px auto;
    padding: 15px;
    text-align: center;
    background-color: #d4edda;
    color: #155724;
    border-radius: 8px;
    font-weight: bold;
    display: none;
  }
  .confirmation:not(.hidden) {
    display: block;
  }
  .hidden {
    display: none;
  }
  