body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0f172a;
  color: white;
}

header {
  text-align: center;
  padding: 20px;
  background: linear-gradient(90deg, #1e293b, #0f172a);
}

.menu-container {
  padding: 20px;
}

.category {
  margin-bottom: 40px;
}

.subcategory {
  margin-top: 20px;
}

.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e293b;
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
  cursor: pointer;
}

.item:hover {
  background: #334155;
}

.item img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  margin-right: 10px;
  object-fit: cover;
}

.item-info {
  display: flex;
  align-items: center;
}

.price {
  color: #22c55e;
  font-weight: bold;
}

.cart {
  background: #020617;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
}

.cart ul {
  list-style: none;
  padding: 0;
}