:root{
  --bg: #0b0f19;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --accent: #22c55e; /* emerald */
  --accent2: #06b6d4; /* cyan */
  --radius: 18px;
}

/* Base */
.app-body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 500px at 15% 5%, rgba(34,197,94,.18), transparent 55%),
    radial-gradient(900px 500px at 90% 20%, rgba(6,182,212,.16), transparent 60%),
    var(--bg);
  color: var(--text);
}

/* Navbar */
.app-nav{
  background: rgba(9, 14, 25, .72) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand-dot{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.brand-title{
  font-weight: 700;
  letter-spacing: -.2px;
}
.brand-subtitle{
  font-size: .86rem;
  color: var(--muted);
}

.navbar .nav-link{
  color: rgba(255,255,255,.82) !important;
}
.navbar .nav-link:hover{
  color: rgba(255,255,255,.98) !important;
}

.cart-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  margin-left: .35rem;
  font-size: .85rem;
  font-weight: 700;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

/* Hero */
.hero{
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

/* Chips */
.chip{
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-weight: 600;
}
.chip:hover{ transform: translateY(-1px); }
.chip.active{
  background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(6,182,212,.18));
  border-color: rgba(34,197,94,.35);
}

/* Cards */
.menu-card{
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card), var(--card2));
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease;
}
.menu-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
}
.menu-img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.muted{ color: var(--muted); }
.price{
  font-weight: 800;
  letter-spacing: -.2px;
}

/* Inputs */
.form-control, .form-select{
  background-color: rgba(255,255,255,.06) !important;
  border: 1px solid var(--line) !important;
  color: rgba(255,255,255,.92) !important;
}
.form-control::placeholder{ color: rgba(255,255,255,.45); }
.form-control:focus, .form-select:focus{
  box-shadow: 0 0 0 .25rem rgba(34,197,94,.15) !important;
  border-color: rgba(34,197,94,.35) !important;
}

/* Buttons */
.btn-accent{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  color: #081018;
  font-weight: 700;
  border-radius: 16px;
}
.btn-accent:hover{ filter: brightness(1.02); }
.btn-soft{
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  color: rgba(255,255,255,.88);
  border-radius: 16px;
}
.btn-soft:hover{ background: rgba(255,255,255,.10); }

/* Floating cart */
.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1050;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

/* Tables -> look cleaner */
.table{
  --bs-table-bg: transparent;
}
.table thead th{
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.12);
}
.table tbody td{
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.10);
}

/* Small helpers */
.rounded-xxl{ border-radius: calc(var(--radius) + 10px) !important; }

@media (max-width: 576px){
  .menu-img{ height: 150px; }
}