/* ===== 任务008 A项整改（20260831 牛牛）：底部菜单全部取消，功能收进折叠菜单(汉堡抽屉) =====
 * 老板实测核验 A 项（方向性整改）：任何页面/跳转（含个人中心返回）都不显示底部菜单；
 * 原 4-Tab（首页/消息/工具/我的）入口收进 #assistDrawer 折叠菜单导航区。
 * 独立成文件：host.css 已 >500 行，按老板单文件 ≤500 行铁律，新样式另立 task008.css
 * （同 task007.css 先例），在 host.css 之后引入覆盖同名规则。
 * 本文件 = 新增量，不动既有骨架样式。 */

/* 1) 底部 tabbar 永久隐藏：任何页面/任何跳转都不显示底部菜单。
      ID 选择器 + !important 盖过 mobile.css 的 .tabbar{display:flex} 与 body.no-tab 规则。
      #app 的 tabbar 让位 padding 一并清掉（assist/wcd 输入条自带 safe-area，不留死区）。 */
#tabbar{display:none !important}
#app{padding-bottom:0}

/* 2) 非 assist 屏顶部「折叠菜单」☰ 入口 —— 首页 topbar 左侧圆浮标（观感对齐 assist 顶栏 .assist-menu-float）。
      绝对定位贴左上：overview 的 .topbar 是 justify-content:center（品牌名居中），
      若参与流式布局会把品牌名顶偏；abs 定位从流中抽出，品牌名/右组保持原居中排布不变。 */
.topbar-menu-btn{
  position:absolute;left:10px;top:env(safe-area-inset-top,0px);z-index:2;
  width:44px;height:44px;border-radius:50%;border:1px solid var(--border);
  background:var(--card);color:var(--text);display:flex;align-items:center;justify-content:center;
  cursor:pointer;box-shadow:0 2px 8px rgba(0,0,0,.08);padding:0;
}
.topbar-menu-btn:active{background:var(--bar-bg)}

/* 3) subbar 屏（消息/工具）右上角 ☰：与返回键镜像 absolute 定位，不挤标题居中 */
.subbar-menu-btn{
  position:absolute;right:6px;top:env(safe-area-inset-top,0px);z-index:1;
  height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;
  padding:0 8px;background:transparent;color:var(--accent);border:none;border-radius:10px;cursor:pointer;
}
.subbar-menu-btn:active{background:var(--accent-bg-light)}

/* 4) 个人中心（我的）右上角 ☰：固定贴顶，与左上返回键镜像（z61 盖过账号帽） */
#screen-profile .profile-menu-btn{
  position:fixed;top:env(safe-area-inset-top,0px);right:6px;z-index:61;
  height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;
  padding:0 8px;background:transparent;color:var(--accent);border:none;border-radius:10px;cursor:pointer;
}
#screen-profile .profile-menu-btn:active{background:var(--accent-bg-light)}
