/* Reset and base font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #121212;
  color: white;
  padding: 30px 20px;
  min-height: 100vh;
}

.cart-container {
  max-width: 800px;
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #00bcd4;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #444;
  padding: 15px 0;
}

.cart-item:last-child {
  border-bottom: none;
}

.item-info h2 {
  font-size: 18px;
  color: #ff9800;
}

.item-info p {
  font-size: 14px;
  color: #ccc;
  margin-top: 5px;
}

.item-price {
  font-size: 16px;
  color: #4caf50;
  font-weight: bold;
  align-self: center;
}

.total {
  text-align: right;
  margin-top: 20px;
  font-size: 18px;
  color: #fff;
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background-color: #03a9f4;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  margin-top: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.checkout-btn:hover {
  background-color: #0288d1;
  transform: scale(1.02);
}
