.menu-header{
  text-align:center;
  max-width:720px;
  margin:0 auto 60px;
}

/* wrapper principal → look restaurant */
.menu-wrapper{
  max-width:820px;
  margin:0 auto;
  padding:48px 54px;
  display:flex;
  flex-direction:column;
  gap:42px;
}

/* groupe */
.menu-group{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* titre catégorie */
.menu-group-title{
  font-size:1.4rem;
  margin-bottom:10px;
  position:relative;
}

/* ligne fine élégante */
.menu-group-title::after{
  content:"";
  display:block;
  width:40px;
  height:1px;
  background:var(--line);
  margin-top:8px;
}

/* item */
.menu-item{
  padding-bottom:12px;
  border-bottom:1px dashed rgba(76,68,61,.12);
}

/* ligne nom / prix */
.menu-item-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:1.05rem;
}

/* description */
.menu-item p{
  margin:4px 0 0;
  font-size:.9rem;
  color:var(--muted);
}

/* highlight spécialités */
.menu-group-highlight{
  background:rgba(255,255,255,.35);
  padding:24px;
  border-radius:16px;
}

/* prix */
.price{
  white-space:nowrap;
  font-weight:600;
}
