:root{
  --bg:#0b1220;
  --card:#0f1a30;
  --muted:#9fb0d0;
  --text:#eaf0ff;
  --line:rgba(255,255,255,.09);
  --accent:#5eead4;
  --danger:#fb7185;
  --ok:#34d399;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 15% 10%, rgba(94,234,212,.15), transparent 55%),
              radial-gradient(900px 600px at 80% 20%, rgba(251,113,133,.12), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 16px 40px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.logo{
  width:36px;height:36px;border-radius:12px;
  background: linear-gradient(135deg, rgba(94,234,212,.9), rgba(59,130,246,.65));
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.brand h1{
  font-size: 18px;
  margin:0;
  letter-spacing:.2px;
}
.badge{
  font-size:12px;
  padding:4px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color: var(--muted);
}

.card{
  background: rgba(15, 26, 48, .78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.card + .card{margin-top:14px}

.h2{
  font-size: 18px;
  margin: 0 0 10px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 760px){
  .grid{grid-template-columns: 1fr}
}

label{display:block; color:var(--muted); font-size: 13px; margin-bottom:6px}
input, select{
  width:100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input::placeholder{color: rgba(234,240,255,.35)}
input:focus, select:focus{border-color: rgba(94,234,212,.45); box-shadow: 0 0 0 4px rgba(94,234,212,.12)}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
}
.btn:hover{background: rgba(255,255,255,.1)}
.btn-primary{
  background: rgba(94,234,212,.16);
  border-color: rgba(94,234,212,.35);
}
.btn-danger{
  background: rgba(251,113,133,.14);
  border-color: rgba(251,113,133,.35);
}
.btn-ghost{
  background: transparent;
}

.flash{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  margin-bottom: 12px;
  color: var(--muted);
}
.flash.ok{border-color: rgba(52,211,153,.35); color: rgba(52,211,153,.95)}
.flash.err{border-color: rgba(251,113,133,.35); color: rgba(251,113,133,.95)}

.kpi{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.kpi .pill{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.menu-header h1{margin:0; font-size: 22px}
.menu-header .sub{color: var(--muted); margin-top:6px}
.menu-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  margin: 10px 0;
}
.menu-item .name{font-weight: 700}
.menu-item .desc{color: var(--muted); font-size: 13px; margin-top: 5px}
.menu-item .price{font-weight: 800}
.small{color:var(--muted); font-size: 13px}
.hr{height:1px;background:var(--line);margin:12px 0}
