:root{
  --bg:#07080b;
  --panel:#111216;
  --panel2:#15161b;
  --border:rgba(255,255,255,.08);
  --text:#e8e9ee;
  --muted:#a7a9b3;
  --accent:#d6b36a;
  --accent2:#9b7b3f;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --r:20px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;color-scheme:dark;background:radial-gradient(1200px 600px at 10% 0%, rgba(214,179,106,.10), transparent 55%),
radial-gradient(1000px 700px at 90% 10%, rgba(214,179,106,.08), transparent 60%),
var(--bg);color:var(--text);font-family:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{width:min(1180px, 92vw);margin:0 auto}
.spacer{height:28px}

.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(10,10,14,.86), rgba(10,10,14,.55));
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:14px 0;
}
.brand{
  display:flex;align-items:center;gap:12px;min-width:240px;
}
.logo{
  width:40px;height:40px;border-radius:14px;
  background: radial-gradient(circle at 30% 30%, rgba(214,179,106,.95), rgba(155,123,63,.55) 55%, rgba(255,255,255,.04) 70%);
  box-shadow: 0 10px 30px rgba(214,179,106,.18);
  border:1px solid rgba(214,179,106,.35);
}
.brand h1{font-size:14px;line-height:1.15;margin:0;font-weight:700;letter-spacing:.2px}
.brand p{margin:2px 0 0 0;font-size:12px;color:var(--muted)}
.nav{
  display:flex;align-items:center;gap:14px;
}
.nav a{
  font-size:13px;color:var(--muted);
  padding:10px 12px;border-radius:12px;
  border:1px solid transparent;
}
.nav a:hover{color:var(--text);border-color:var(--border);background:rgba(255,255,255,.03)}
.nav a.active{color:var(--text);border-color:rgba(214,179,106,.25);background:rgba(214,179,106,.08)}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;border-radius:999px;
  background: rgba(214,179,106,.10);
  border:1px solid rgba(214,179,106,.28);
  color:var(--text);font-size:13px;font-weight:600;
}

.hero{
  padding:26px 0 10px 0;
}
.hero h2{margin:0;font-size:30px;letter-spacing:.2px}
.hero p{margin:10px 0 0 0;color:var(--muted);max-width:70ch;line-height:1.5}
.grid{
  display:grid;grid-template-columns: 1.1fr .9fr;gap:18px;
}
@media (max-width: 960px){
  .grid{grid-template-columns:1fr}
  .brand{min-width:unset}
}

.card{
  background: linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.card-inner{padding:18px}
.card h3{margin:0 0 10px 0;font-size:16px}
.card .sub{margin:0;color:var(--muted);font-size:13px;line-height:1.45}

.form{
  display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px
}
.form .full{grid-column:1 / -1}
label{display:block;font-size:12px;color:var(--muted);margin:0 0 8px 2px}
input, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
  outline:none;
}
input::placeholder{color:rgba(231,233,238,.42)}
input:focus, select:focus{border-color: rgba(214,179,106,.38); box-shadow: 0 0 0 3px rgba(214,179,106,.10)}
select option{background:#0f1015;color:var(--text)}
.actions{
  display:flex;gap:10px;flex-wrap:wrap;margin-top:14px
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 14px;border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;font-size:13px;
}
.btn:hover{border-color: rgba(214,179,106,.25); background: rgba(214,179,106,.08)}
.btn.primary{
  background: linear-gradient(135deg, rgba(214,179,106,.22), rgba(155,123,63,.10));
  border-color: rgba(214,179,106,.32);
}
.btn.whatsapp{
  background: rgba(37,211,102,.08);
  border-color: rgba(37,211,102,.25);
}
.btn.whatsapp:hover{background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.35)}
.badge-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  font-size:12px;color:var(--muted);
}

.map{
  width:100%;height:320px;border:0;border-radius: 18px;
  filter: saturate(1.1) contrast(1.05) brightness(.92);
}
.footer{
  padding:28px 0;color:rgba(167,169,179,.85);font-size:12px
}

/* MENU PAGE */
.menu-topbar{
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
  margin-top:12px;
}
.switch{
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--muted);font-size:13px;
}
.switch input{width:42px;height:22px;appearance:none;position:relative;border-radius:999px;border:1px solid rgba(255,255,255,.12);background:rgba(0,0,0,.35);cursor:pointer}
.switch input:checked{background:rgba(214,179,106,.25);border-color:rgba(214,179,106,.35)}
.switch input::after{
  content:"";position:absolute;top:2px;left:2px;width:18px;height:18px;border-radius:50%;
  background:rgba(255,255,255,.85);transition:all .18s ease;
}
.switch input:checked::after{left:20px;background:rgba(255,255,255,.95)}
.catbar{
  position:sticky;top:74px;z-index:40;
  padding:10px 0;
  background: linear-gradient(to bottom, rgba(7,8,11,.92), rgba(7,8,11,.75));
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
}
.catbar-inner{
  display:flex;gap:10px;flex-wrap:wrap
}
.catbar a{
  font-size:13px;color:var(--muted);
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.catbar a:hover{color:var(--text);border-color:rgba(214,179,106,.25);background:rgba(214,179,106,.06)}
.catbar a.active{color:var(--text);border-color:rgba(214,179,106,.35);background:rgba(214,179,106,.10)}

.section{padding:18px 0}
.section h3{
  margin:0 0 12px 0;
  font-size:18px;
  letter-spacing:.2px
}
.muted{color:var(--muted)}
.menu-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
@media (max-width: 980px){ .menu-grid{grid-template-columns: repeat(2, minmax(0, 1fr));}}
@media (max-width: 640px){ .menu-grid{grid-template-columns: 1fr;}}

.dish{
  overflow:hidden;
}
.dish-img{
  height:168px;
  border-bottom:1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.dish-img img{
  width:100%;height:100%;
  object-fit:cover;
  transform: scale(1.02);
}
.dish-body{padding:14px}
.dish-head{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.dish-title{margin:0;font-size:15px;font-weight:800}
.price{font-weight:800;color:var(--accent);white-space:nowrap}
.dish-desc{margin:8px 0 0 0;color:var(--muted);font-size:13px;line-height:1.45}
.chips{display:flex;flex-wrap:wrap;gap:7px;margin-top:12px}
.chip{
  font-size:12px;color:rgba(231,233,238,.78);
  padding:6px 9px;border-radius:999px;
  background: rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.09);
}

.featured-wrap{
  display:grid;grid-template-columns: repeat(3, minmax(0, 1fr));gap:14px;margin-top:14px
}
@media (max-width: 980px){ .featured-wrap{grid-template-columns: 1fr}}
.featured .dish-body{padding:16px}
.featured .dish-img{height:210px}
.featured-tag{
  display:inline-flex;align-items:center;gap:8px;
  position:absolute;top:12px;left:12px;
  padding:8px 10px;border-radius:999px;
  background: rgba(0,0,0,.45);
  border:1px solid rgba(214,179,106,.25);
  color:var(--text);
  font-weight:800;font-size:12px;
  backdrop-filter: blur(8px);
}
.featured .dish-img{position:relative}

/* Floating nav */
.floatnav{
  position:fixed;right:16px;top:50%;transform:translateY(-50%);
  z-index:60;
  display:flex;flex-direction:column;gap:10px;
}
.floatnav a{
  display:flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,10,14,.70);
  color:rgba(231,233,238,.72);
  backdrop-filter: blur(10px);
}
.floatnav a:hover{border-color: rgba(214,179,106,.28); background: rgba(214,179,106,.08); color:rgba(231,233,238,.92)}
.floatnav a.active{border-color: rgba(214,179,106,.40); background: rgba(214,179,106,.12); color:rgba(231,233,238,.98)}
@media (max-width: 980px){ .floatnav{display:none}}

/* Price toggle */
.hide-prices .price{display:none}
