* {
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  background: #042453; /* Requested background */
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-container {
  background: #ffffff;
  width: 360px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

h2, h3 {
  text-align: center;
  margin-bottom: 15px;
}

.products .product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

button {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  background: #4f46e5;
  color: white;
  cursor: pointer;
  font-size: 13px;
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f3f4f6;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 14px;
}

.remove {
  background: #ef4444;
  padding: 4px 8px;
  font-size: 12px;
}

.total {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
}
