* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f2027;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #fff;
}

.container {
    max-width: 80%;
    overflow-x: hidden;
    /* width: 100%; */
  }
  
  h1 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    color: #f3f3f3;
    text-shadow: 0 0 10px #000;
  }

  #product-list {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 25px;
  }
  
  .cart-summary ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: left;
  }
  .cart-summary li {
    margin: 5px 0;
    font-weight: 500;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
  }
  
  
  .glass {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    margin-bottom: 30px;
    transition: all 0.3s ease;
  }
  
  .product-card {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .product-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .details {
    flex: 1;
  }
  
  .price {
    font-weight: bold;
    color: #ffd700;
    font-size: 18px;
  }
  
  .quantity-controls {
    margin-top: 10px;
  }
  
  .quantity-controls button {
    background: #00b4d8;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin: 0 10px;
  }
  
  .quantity-controls button:hover {
    background: #0077b6;
  }
  
  .quantity-controls span {
    font-size: 20px;
    font-weight: bold;
    width: 40px;
    display: inline-block;
    text-align: center;
  }
  
  .cart-summary {
    text-align: center;
    font-size: 18px;
  }
  
  .cart-summary p {
    margin: 10px 0;
  }
  