.cart-container {
  max-width: 900px;
  margin: auto;
  padding: 16px;
}

.cart-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.cart-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cart-item {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-total {
  background: #f7f7f7;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  text-align: right;
}
