/*
  메뉴 페이지 전용 스타일
  - 페이지 내 이동 버튼을 카드 형태로 제공
*/

.menu-hero{
  background:linear-gradient(135deg, rgba(61, 141, 255, 0.12), rgba(0,0,0,0));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px 18px 16px;
  box-shadow:var(--shadow-sm);
}
.menu-hero__title{
  font-size:22px;
  font-weight:900;
  letter-spacing:-.4px;
}
.menu-hero__desc{
  margin-top:6px;
  color:var(--muted);
}

.menu-section{
  margin-top:18px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.menu-section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
  padding:14px 16px 12px;
  border-bottom:1px solid var(--border);
}
.menu-section__title{
  font-weight:900;
  letter-spacing:-.2px;
}
.menu-section__sub{
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
  padding:14px 16px 16px;
}

.menu-item{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px 12px;
  text-decoration:none;
  color:var(--text);
  box-shadow:var(--shadow-sm);
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
}
.menu-item:hover{
  transform:translateY(-2px);
  background:#f7fbff;
  border-color:#cfe6ff;
}

.menu-item__icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f2f7ff;
  border:1px solid #d6eaff;
  flex:0 0 auto;
}
.menu-item__icon i{font-size:18px;opacity:.9;}

.menu-item__body{display:flex;flex-direction:column;gap:3px;min-width:0;}
.menu-item__label{font-weight:900;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.menu-item__desc{font-size:12px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}

@media (max-width: 1100px){
  .menu-grid{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width: 520px){
  .menu-grid{grid-template-columns:1fr}
  .menu-section__head{flex-direction:column;align-items:flex-start}
}
