/* Apple-smooth, donker, glassmorphic */
:root{
  --bg:#0b0f12; --panel:rgba(255,255,255,0.06); --stroke:rgba(255,255,255,0.08);
  --text:#e9eef5; --muted:#9aa4b2; --accent:#d9b26b; --danger:#ff5a52; --ok:#34c759;
  --radius:20px; --shadow:0 10px 30px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font:16px/1.6 -apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI",Inter,Roboto,system-ui,Arial,sans-serif;
  background:radial-gradient(1200px 800px at 70% -10%, rgba(217,178,107,.15), transparent 60%), var(--bg);
  color:var(--text);
}
.topbar{
  position:sticky; top:0; z-index:20; display:flex; justify-content:space-between; align-items:center;
  padding:16px 20px; backdrop-filter:blur(16px); background:linear-gradient(180deg, rgba(15,20,25,.8), rgba(15,20,25,.35));
  border-bottom:1px solid var(--stroke);
}
.brand{display:flex; align-items:center; gap:10px; letter-spacing:.2px}
.logo{font-size:22px}
.name{font-weight:600; font-size:18px}
.table-tag{font-size:14px; color:var(--muted); padding:6px 10px; border:1px solid var(--stroke); border-radius:999px}
.container{max-width:1080px; margin:0 auto; padding:24px}
.specials{
  border-radius:var(--radius); padding:18px; margin:6px 0 18px; background:linear-gradient(135deg, rgba(217,178,107,.18), rgba(217,178,107,.06));
  border:1px solid rgba(217,178,107,.35); box-shadow:var(--shadow);
}
.hidden{display:none}
.controls{display:grid; gap:14px; grid-template-columns:1fr; margin-bottom:10px}
.tabs{display:flex; gap:10px; flex-wrap:wrap}
.tab{appearance:none; border:none; cursor:pointer; padding:10px 14px; border-radius:999px; color:var(--text); background:var(--panel); border:1px solid var(--stroke); transition:transform .2s ease, background .2s}
.tab[aria-selected="true"], .tab:hover{background:rgba(217,178,107,.18); transform:translateY(-1px)}
.filters{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.search{flex:1; min-width:220px; padding:12px 14px; border-radius:12px; background:var(--panel); border:1px solid var(--stroke); color:var(--text); outline:none}
.toggle{display:flex; align-items:center; gap:8px; color:var(--muted)}
.grid{display:grid; grid-template-columns:repeat(1,minmax(0,1fr)); gap:14px}
@media (min-width:640px){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (min-width:960px){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border:1px solid var(--stroke);
  border-radius:var(--radius); padding:16px; box-shadow:var(--shadow); transition:transform .18s ease, box-shadow .18s ease
}
.card:hover{transform:translateY(-2px)}
.row{display:flex; justify-content:space-between; align-items:flex-start; gap:12px}
.title{font-weight:600; letter-spacing:.2px}
.price{font-weight:600; color:var(--accent)}
.desc{color:var(--muted); font-size:14px}
.tags{display:flex; gap:8px; flex-wrap:wrap; margin-top:8px}
.tag{font-size:12px; padding:4px 8px; border:1px solid var(--stroke); border-radius:999px; color:var(--muted)}
.badge{font-size:12px; padding:4px 8px; border-radius:999px; background:rgba(255,90,82,.1); color:#ffb4b0; border:1px solid rgba(255,90,82,.2)}
.badge.ok{background:rgba(52,199,89,.12); color:#c9f0d9; border-color:rgba(52,199,89,.3)}
.footer{opacity:.9; margin-top:26px; padding-top:16px; border-top:1px solid var(--stroke); color:var(--muted); font-size:13px}

/* Smooth focus */
:focus-visible{outline:2px solid rgba(217,178,107,.55); outline-offset:2px; border-radius:12px}

/* Subtle motion */
@media (prefers-reduced-motion:no-preference){
  .card, .tab{transition:transform .2s ease, background .2s ease, box-shadow .2s ease}
}
