:root{
  --bg:#0e0f11;
  --card:#17181d;
  --text:#f1f1f1;
  --muted:#b6b6b6;
  --accent:#d8b35a;
  --border:rgba(255,255,255,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(216,179,90,.10), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(255,255,255,.06), transparent 55%),
    var(--bg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial,
               "Noto Sans", "Noto Sans CJK SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.container{max-width:980px; margin:0 auto; padding:18px}

header{
  position:sticky; top:0; z-index:10;
  background:rgba(14,15,17,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:14px 18px;
}
.brand{display:flex; flex-direction:column; gap:2px}
.brand .name{font-weight:750; letter-spacing:.2px}
.brand .tag{font-size:.92rem; color:var(--muted)}

.nav{display:flex; gap:14px; flex-wrap:wrap; align-items:center;}
.nav a{color:var(--muted)}
.nav a.active{color:var(--text)}

.langs a{
  display:inline-block; padding:6px 10px; border:1px solid var(--border);
  border-radius:999px; margin-left:8px; color:var(--muted);
}
.langs a.active{border-color:rgba(216,179,90,.45); color:var(--text)}

.hero{
  margin-top:16px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero h1{margin:0 0 6px; font-size:1.55rem}
.hero p{margin:0; color:var(--muted)}

.section-title{
  margin:24px 0 10px;
  font-size:1.2rem;
  display:flex; align-items:center; gap:10px;
}
.section-title:before{
  content:"";
  width:10px; height:10px; border-radius:3px;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(216,179,90,.12);
}

.categories{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 18px;}
.catlink{
  padding:7px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.02);
}
.catlink:hover{color:var(--text)}

.dishes{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
.dish{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:var(--radius);
  padding:14px 14px 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.dish-top{display:flex; align-items:baseline; justify-content:space-between; gap:12px}
.dish-name{font-weight:700}
.price{font-variant-numeric: tabular-nums; color:var(--accent); font-weight:750}
.meta{margin-top:6px; color:var(--muted); font-size:.95rem}

.subnames{margin-top:6px; color:var(--muted); font-size:.90rem}
.badges{display:flex; gap:8px; margin-top:10px; flex-wrap:wrap}
.badge{
  font-size:.82rem;
  padding:4px 9px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.02);
}
.footer{margin:26px 0 40px; color:var(--muted); font-size:.92rem}


/* Accordéon (catégories repliables) */
.acc{
  border:1px solid var(--border);
  background:var(--panel);
  border-radius:var(--radius);
  margin:12px 0;
  box-shadow: var(--shadow);
  overflow:hidden;
  scroll-margin-top:90px;
}
.acc summary{
  position:relative;
  cursor:pointer;
  padding:14px 46px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:4px;
  list-style:none;
}
.acc summary::-webkit-details-marker{display:none}
.acc summary::after{
  content:"▾";
  position:absolute;
  right:16px;
  top:16px;
  color:var(--muted);
  font-size:1.05rem;
}
.acc[open] summary::after{
  content:"▴";
  color:var(--accent);
}
.acc[open] summary{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-bottom:1px solid var(--border);
}
.acc-title{font-weight:750}
.acc-sub{
  color:var(--muted);
  font-size:.92rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.acc-body{padding:14px 16px 16px}


/* --- Menu toolbar (search + actions) --- */
.toolbar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  margin:12px 0 14px;
}
.toolbar-left{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  flex:1 1 420px;
}
.search{
  flex:1 1 260px;
  min-width:220px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
  color:var(--text);
  outline:none;
}
.search::placeholder{color:rgba(255,255,255,.45)}
.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  flex:0 0 auto;
}
.btn{
  appearance:none;
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
  color:var(--muted);
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
}
.btn:hover{color:var(--text)}
.toggle{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.02);
  user-select:none;
}
.toggle input{accent-color: var(--accent);}
.hint{
  color:var(--muted);
  font-size:.92rem;
  margin:8px 0 0;
}
.hidden{display:none !important}

