.menu-page {
  min-height: 100vh;
  padding: 64px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-header {
  text-align: center;
  padding: 0 16px;
}

.menu-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
}

.menu-subtitle {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 600;
      margin: 8px 0 8px 0;
  color: #111827;
}

.menu-card {
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 16px 16px calc(16px + var(--nav-height) + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
}

.menu-user {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: #f7f9fb;
  border: none;
  text-align: left;
  cursor: pointer;
}

.menu-user--loading {
  pointer-events: none;
}

.menu-user--loading .menu-user__avatar,
.menu-user--loading .menu-user__name,
.menu-user--loading .menu-user__desc {
  background: linear-gradient(90deg, #e5eaf1 25%, #f3f6fb 50%, #e5eaf1 75%);
  background-size: 200% 100%;
  animation: menu-skeleton 1.2s ease-in-out infinite;
}

.menu-user--loading .menu-user__avatar {
  border-radius: 50%;
}

.menu-user--loading .menu-user__avatar-img,
.menu-user--loading .menu-user__avatar-letter {
  visibility: hidden;
}

.menu-user--loading .menu-user__name,
.menu-user--loading .menu-user__desc {
  color: transparent;
  border-radius: 6px;
  display: inline-block;
}

.menu-user--loading .menu-user__name {
  width: 140px;
  height: 14px;
}

.menu-user--loading .menu-user__desc {
  width: 200px;
  height: 12px;
}

@keyframes menu-skeleton {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.menu-user__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e5e7eb;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.menu-user__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.menu-user__avatar-letter {
  font-weight: 700;
  color: #111827;
}

.menu-user__text {
  display: grid;
  gap: 2px;
}

.menu-user__name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.menu-user__desc {
  font-size: 12px;
  color: #6b7280;
}

.menu-list {
  display: grid;
  gap: 12px;
}

.menu-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: #f7f9fb;
  border: none;
  text-align: left;
  cursor: pointer;
}

.menu-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.menu-item__icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.menu-item__text {
  display: grid;
  gap: 2px;
}

.menu-item__title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.menu-item__desc {
  font-size: 12px;
  color: #6b7280;
}
