body{
  font-family: Inter, sans-serif;
  background:#f4f6fb;
  padding:30px;
}

h1,h2{
  margin-bottom:10px;
}

#cartItems{
  background:white;
  padding:20px;
  border-radius:12px;
  margin-bottom:20px;
}

.cart-item{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
  font-weight:600;
}

input, textarea, select{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border-radius:10px;
  border:1px solid #ccc;
}

button{
  padding:14px;
  width:100%;
  border:none;
  border-radius:30px;
  background:#25d366;
  color:white;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}
.cart-item {
  display: flex;
  justify-content: space-between; /* Name left, controls center, price right */
  align-items: center;
  padding: 10px 0;
  gap: 10px;
}

.cart-item div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cart-item button {
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 6px;
  border: none;
  background-color: #28a745;
  color: white;
  font-weight: bold;
}
