/* ===== 基础 ===== */
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; }
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.55;
}
body.bg-decor { background: radial-gradient(1200px 500px at 50% -180px, #2A2115 0%, var(--bg-deep) 60%); }

/* ===== 设计令牌 ===== */
:root {
  --bg: #14100B;
  --bg-deep: #0E0B08;
  --surface: #1C1610;
  --card: #251D14;
  --card-hi: #2E2418;
  --line: #3B2F20;
  --text: #F1E8D8;
  --text-2: #C6B79E;
  --text-3: #8F8170;
  --brand: #E0A458;
  --brand-bright: #F2C27E;
  --brand-dim: #7A5A2E;
  --danger: #C0553F;
  --ok: #7FA36B;
  --radius: 14px;
  --font-ui: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  --font-display: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
}

/* ===== 设备外壳 ===== */
.device {
  max-width: 440px;
  margin: 0 auto;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 560px) {
  body { padding: 18px 0; }
  .device { border: 1px solid #3A2E1D; border-radius: 36px; min-height: calc(100vh - 36px); box-shadow: 0 24px 70px rgba(0,0,0,.55); overflow: hidden; }
}
main { flex: 1; padding-bottom: 76px; }
[hidden] { display: none !important; }

/* ===== 通用 ===== */
.num { font-variant-numeric: tabular-nums; }
.btn { display: block; width: 100%; border: none; cursor: pointer; font-family: var(--font-ui); font-size: 16px; font-weight: 600; color: #241A0C; background: linear-gradient(180deg, var(--brand-bright), var(--brand)); border-radius: 999px; padding: 13px; transition: opacity .12s; }
.btn:active { opacity: .82; }
.btn.ghost { background: transparent; border: 1px solid var(--line); color: var(--text-2); font-weight: 500; }
.btn:disabled { opacity: .5; }
.field { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; height: 50px; margin-bottom: 12px; }
.field input { flex: 1; min-width: 0; background: transparent; border: none; outline: none; color: var(--text); font-size: 16px; font-family: var(--font-ui); }
.field input::placeholder { color: var(--text-3); }
.field .send-code { flex: none; border: none; background: none; color: var(--brand); font-size: 14px; cursor: pointer; padding: 6px 0 6px 12px; border-left: 1px solid var(--line); font-family: var(--font-ui); white-space: nowrap; }
.field .send-code:disabled { color: var(--text-3); }
.chip { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; padding: 2px 9px; border-radius: 999px; background: rgba(224,164,88,.12); color: var(--brand-bright); border: 0.5px solid rgba(224,164,88,.28); }
.section-title { display: flex; align-items: center; justify-content: space-between; margin: 18px 14px 10px; font-size: 15px; font-weight: 600; color: var(--text); }
.section-title .more { font-size: 12px; color: var(--text-3); font-weight: 400; }

/* ===== 今日消费折叠（2026-09-19） ===== */
.today-card { margin: 4px 14px 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.today-toggle { width: 100%; display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: none; border: none; color: var(--text); font-family: inherit; font-size: 14.5px; font-weight: 600; cursor: pointer; text-align: left; }
.today-toggle .today-sub { flex: 1; font-size: 11.5px; font-weight: 400; color: var(--text-3); text-align: right; }
.today-toggle .today-chev { color: var(--text-3); font-size: 12px; transition: transform .18s; }
.today-toggle.on .today-chev { transform: rotate(180deg); }
.today-body { border-top: 0.5px solid rgba(255,255,255,.06); padding: 2px 16px 8px; }
.today-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-top: 0.5px solid rgba(255,255,255,.04); }
.today-row:first-child { border-top: none; }
.today-row .tr-main { flex: 1; min-width: 0; }
.today-row .tr-nm { font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.today-row .tr-tm { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.today-row .tr-amt { font-size: 13px; color: var(--brand-bright); font-variant-numeric: tabular-nums; white-space: nowrap; }
.today-row .tr-st { font-size: 10.5px; color: var(--text-3); border: 0.5px solid rgba(255,255,255,.12); border-radius: 999px; padding: 1px 7px; white-space: nowrap; }
.today-empty { padding: 10px 0 8px; font-size: 12.5px; color: var(--text-3); text-align: center; }
.today-group { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 0 5px; font-size: 11.5px; color: var(--brand); letter-spacing: .5px; }
.today-group:first-child { padding-top: 6px; }
.today-group span::before { content: ''; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); margin-right: 6px; vertical-align: 1px; }
.today-group b { font-weight: 600; color: var(--brand-bright); font-variant-numeric: tabular-nums; }

/* 今日消费：左右两列分类（2026-09-19） */
.today-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 8px; }
.today-col { background: rgba(255,255,255,.025); border: 0.5px solid rgba(255,255,255,.06); border-radius: 10px; padding: 9px 11px; min-width: 0; }
.today-col-head { display: flex; align-items: center; justify-content: space-between; gap: 6px; font-size: 11.5px; color: var(--brand); margin-bottom: 5px; letter-spacing: .3px; }
.today-col-head span { display: inline-flex; align-items: center; }
.today-col-head span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); margin-right: 5px; }
.today-col-head b { font-weight: 600; color: var(--brand-bright); font-variant-numeric: tabular-nums; white-space: nowrap; }
.today-item { padding: 5px 0; border-top: 0.5px solid rgba(255,255,255,.05); }
.today-item:first-of-type { border-top: none; padding-top: 2px; }
.today-item-empty { color: var(--text-3); font-size: 11.5px; }
.today-item .ti-nm { font-size: 12.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.today-item .ti-sub { font-size: 10.5px; color: var(--text-3); margin-top: 2px; display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.today-item .ti-amt { color: var(--brand-bright); font-variant-numeric: tabular-nums; white-space: nowrap; }
@media (max-width: 340px) { .today-cols { grid-template-columns: 1fr; } }

/* ===== 登录 ===== */
#view-login { min-height: 100vh; display: flex; flex-direction: column; padding: 60px 28px 30px; }
.brand-head { text-align: center; margin-bottom: 44px; }
.brand-mark { width: 78px; height: 78px; margin: 0 auto 16px; border-radius: 24px; background: #4A3A24; border: 1px solid rgba(242,194,126,.45); color: #F2C27E; display: flex; align-items: center; justify-content: center; font-size: 40px; font-weight: 700; font-family: var(--font-display); box-shadow: inset 0 -6px 18px rgba(0,0,0,.25); }
.brand-head h1 { font-family: var(--font-display); font-size: 24px; letter-spacing: 2px; font-weight: 600; }
.brand-head .slogan { color: var(--text-2); font-size: 13px; margin-top: 6px; letter-spacing: 1px; }
.login-tip { text-align: center; color: var(--text-3); font-size: 12px; margin-top: 18px; line-height: 1.8; }

/* 隐私政策同意勾选（2026-09-19 审核整改：用户须主动勾选） */
.agree-row { display: flex; align-items: flex-start; gap: 8px; margin: 14px 2px 12px; font-size: 12.5px; line-height: 1.7; color: var(--text-3); }
.agree-row input[type="checkbox"] { flex: none; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--brand); cursor: pointer; }
.agree-text { flex: 1; min-width: 0; }
.agree-link { color: var(--brand); text-decoration: none; }

.login-bonus { text-align: center; margin-top: 14px; font-size: 12.5px; color: var(--brand-bright); background: rgba(224,164,88,.08); border: 0.5px dashed rgba(224,164,88,.35); border-radius: 10px; padding: 8px 12px; }

/* ===== 顶栏 + 底部导航 ===== */
.topbar { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: rgba(20,16,11,.88); backdrop-filter: blur(10px); border-bottom: 0.5px solid rgba(255,255,255,.04); }
.topbar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.topbar .shop { font-weight: 600; font-size: 15px; white-space: nowrap; flex-shrink: 0; }
.topbar .sp { flex: 1; }
.topbar .mini { font-size: 12px; color: var(--text-2); display: flex; align-items: center; gap: 5px; white-space: nowrap; flex-shrink: 0; }

#tabbar { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 440px; display: flex; background: rgba(22,17,12,.96); backdrop-filter: blur(12px); border-top: 0.5px solid var(--line); z-index: 40; padding: 6px 6px calc(8px + env(safe-area-inset-bottom)); }
@media (min-width: 560px) { #tabbar { border-radius: 0 0 36px 36px; } }
.tab { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 4px 0; color: var(--text-3); font-size: 11px; cursor: pointer; border: none; background: none; font-family: var(--font-ui); }
.tab svg { width: 22px; height: 22px; }
.tab.on { color: var(--brand-bright); }
.tab.on .tab-dot { background: var(--brand-bright); }

/* ===== 首页 hero ===== */
.hero { background: linear-gradient(165deg, #332613, var(--card) 70%); border: 1px solid var(--line); border-radius: var(--radius); margin: 12px 14px; padding: 16px 16px 0; overflow: hidden; }
.hero .store { display: flex; align-items: center; gap: 10px; }
.hero .store .info { flex: 1; min-width: 0; }
.hero .store .me-block { display: flex; align-items: center; gap: 7px; cursor: pointer; padding-left: 10px; border-left: 0.5px solid rgba(255,255,255,.1); flex: none; }
.hero .store .me-av { width: 32px; height: 32px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--bg), var(--bg-deep)); border: 1.2px solid #8B5A2B; color: #F2C27E; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; font-family: "Songti SC", STSong, serif; flex: none; position: relative; }
.hero .store .me-av img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.hero .store .me-info { display: flex; flex-direction: column; min-width: 0; }
.hero .store .me-nm { font-size: 13px; font-weight: 600; color: #F1E8D8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 96px; }
.hero .store .me-id { font-size: 10.5px; color: #8F8170; white-space: nowrap; font-variant-numeric: tabular-nums; }
.tb-qr-hero { flex: none; align-self: center; }
.hero .store .mark { width: 40px; height: 40px; border-radius: 12px; background: #4A3A24; border: 1px solid rgba(242,194,126,.45); color: #F2C27E; font-weight: 700; font-size: 20px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); }
.hero .store .name { font-size: 18px; font-weight: 700; font-family: var(--font-display); letter-spacing: 1px; }
.hero .store .sub { font-size: 11.5px; color: var(--text-2); }
.hero .tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }

.user-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px; align-items: center;
  margin-top: 16px;
  background: rgba(0,0,0,.22);
  border: 0.5px solid rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
}
.user-card .who { min-width: 0; overflow: hidden; }
.user-card .who .nm { display: flex; align-items: center; gap: 7px; min-width: 0; white-space: nowrap; overflow: hidden; font-weight: 600; }
.user-card .who .nm > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-card .who .nm .tier-pill { white-space: nowrap; flex-shrink: 0; }
.user-card .who .id { font-size: 11px; color: var(--text-3); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-card .assets { display: flex; gap: 0; text-align: center; white-space: nowrap; }
.assets .asset-cell, .hm-assets .asset-cell { flex: 1 1 0; min-width: 0; padding: 0 6px; }
.assets .asset-cell:first-child, .hm-assets .asset-cell:first-child { border-left: none; padding-left: 0; }

.avatar { width: 48px; height: 48px; flex: none; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #4A3A24, #201810); border: 1.5px solid var(--brand-dim); color: var(--brand-bright); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 600; font-family: var(--font-display); position: relative; }
.avatar img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.avatar.av-btn { cursor: pointer; }
.av-cam { position: absolute; right: -5px; bottom: -2px; width: 20px; height: 20px; border-radius: 50%; background: #2E2418; border: 1px solid var(--line); color: var(--brand-bright); display: flex; align-items: center; justify-content: center; pointer-events: none; }
.asset-cell { padding: 0 11px; border-left: 0.5px solid rgba(255,255,255,.07); }
.asset-cell:first-child { border-left: none; }
.asset-cell .v { font-size: 17px; font-weight: 700; color: var(--text); line-height: 1.2; font-variant-numeric: tabular-nums; }
.asset-cell .k { font-size: 10px; color: var(--text-3); }

/* ===== 公告 ===== */
.notice { display: flex; align-items: center; gap: 9px; margin: 11px 13px 0; padding: 9px 13px; background: rgba(224,164,88,.07); border: 0.5px solid rgba(224,164,88,.2); border-radius: 10px; font-size: 12.5px; color: var(--text-2); }
.notice .flame { color: var(--brand); flex: none; }
.notice .mq { display: block; width: 100%; overflow: hidden; white-space: nowrap; }
.mq-in { display: inline-block; white-space: nowrap; will-change: transform; transform: translateX(0); }

/* ===== 宫格 ===== */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 14px; }
.grid .item { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 13px 6px 11px; display: flex; flex-direction: column; align-items: center; gap: 7px; cursor: pointer; position: relative; }
.grid .item svg { width: 26px; height: 26px; color: var(--brand); }
.grid .item .lb { font-size: 12.5px; color: var(--text); }
.grid .item .badge-new { position: absolute; top: 6px; right: 6px; font-size: 9px; padding: 0 5px; border-radius: 4px; background: var(--danger); color: #FBE9E2; font-style: normal; }
.grid .item.dim { opacity: .45; }
.grid .item.dim svg { color: var(--text-3); }

/* ===== 榜单 ===== */
.rank-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); margin: 0 14px 12px; padding: 14px 16px; }
.rank-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.rank-head .t { font-weight: 600; font-size: 14.5px; display: flex; align-items: center; gap: 7px; }
.rank-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-top: 0.5px solid rgba(255,255,255,.05); }
.rank-row:first-of-type { border-top: none; }
.rank-no { width: 22px; text-align: center; font-size: 14px; color: var(--text-3); font-variant-numeric: tabular-nums; font-weight: 600; }
.rank-no.top { color: var(--brand-bright); }
.rank-av { width: 30px; height: 30px; border-radius: 50%; background: #312717; color: var(--brand-bright); display: flex; align-items: center; justify-content: center; font-size: 14px; flex: none; }
.rank-row .nm { flex: 1; min-width: 0; font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rank-row .pts { font-size: 13px; font-weight: 600; color: var(--brand-bright); font-variant-numeric: tabular-nums; }
.rank-empty { text-align: center; color: var(--text-3); font-size: 12.5px; padding: 16px 0 8px; }

/* ===== 占位页 ===== */
.placeholder-page { padding: 48px 34px 20px; text-align: center; }
.placeholder-page .ill { width: 92px; height: 92px; margin: 0 auto 18px; border-radius: 30px; background: var(--surface); border: 1px dashed var(--line); display: flex; align-items: center; justify-content: center; color: var(--brand-dim); }
.placeholder-page .ill svg { width: 42px; height: 42px; }
.placeholder-page h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: 1px; }
.placeholder-page p { color: var(--text-3); font-size: 13px; line-height: 1.9; }

/* ===== 我的页 ===== */
.profile-level { margin: 0 14px 12px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.profile-level .row1 { display: flex; align-items: center; gap: 10px; }
.profile-level .now { font-weight: 700; font-size: 17px; display: flex; align-items: center; gap: 8px; }
.profile-level .to { font-size: 12px; color: var(--text-3); margin-left: auto; }
.progress { height: 7px; border-radius: 999px; background: #171109; margin-top: 12px; overflow: hidden; }
.progress i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand-dim), var(--brand-bright)); }
.menu-list { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); margin: 0 14px 12px; padding: 4px 16px; }
.menu-item { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 0.5px solid rgba(255,255,255,.05); cursor: pointer; font-size: 14.5px; }
.menu-item:last-child { border-bottom: none; }
.menu-item svg { width: 20px; height: 20px; color: var(--brand); }
.menu-item .chev { margin-left: auto; color: var(--text-3); font-size: 14px; }
.menu-item.dim { color: var(--text-3); }
.menu-item .rv { font-size: 12px; color: var(--text-3); margin-left: auto; }

/* ===== 等级 pill ===== */
.tier-pill { display: inline-flex; align-items: center; gap: 4px; }
.tier-pill svg { width: 11px; height: 11px; flex: none; }

/* ===== 流水弹层 ===== */
.sheet-mask { position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,.6); display: flex; align-items: flex-end; justify-content: center; }
@media (min-width: 560px) { .sheet-mask { align-items: center; } }
.sheet { width: 100%; max-width: 440px; max-height: 78vh; overflow-y: auto; background: #1E1710; border-radius: 22px 22px 0 0; padding: 18px 18px calc(20px + env(safe-area-inset-bottom)); animation: rise .18s ease-out; }
@media (min-width: 560px) { .sheet { border-radius: 22px; } }
@keyframes rise { from { transform: translateY(24px); opacity: .6; } to { transform: none; opacity: 1; } }
.sheet .head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.sheet .head .t { font-size: 16px; font-weight: 700; }
.sheet .x { border: none; background: none; color: var(--text-3); font-size: 18px; cursor: pointer; padding: 4px; }

/* ===== 积分页切换 ===== */
.ledger-head { display: flex; gap: 8px; flex-wrap: wrap; padding: 0 14px; }
.ledger-type { border: 1px solid var(--line); background: var(--card); color: var(--text-2); border-radius: 999px; padding: 6px 14px; font-size: 13px; cursor: pointer; font-family: var(--font-ui); }
.ledger-type.on { background: rgba(224,164,88,.15); border-color: rgba(224,164,88,.4); color: var(--brand-bright); }

/* ===== 流水行 ===== */
.led-row { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 0.5px solid rgba(255,255,255,.04); }
.led-row:last-child { border: none; }
.led-row .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--brand); flex: none; }
.led-row .ic svg { width: 17px; height: 17px; }
.led-row .bd { flex: 1; min-width: 0; }
.led-row .bd .t1 { font-size: 13.5px; }
.led-row .bd .t2 { font-size: 11px; color: var(--text-3); }
.led-row .amt { font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums; }
.led-row .amt.plus { color: var(--ok); }
.led-row .amt.minus { color: var(--danger); }

/* ===== Toast ===== */
#toast { position: fixed; left: 50%; top: 14%; transform: translateX(-50%); z-index: 90; background: rgba(28,22,15,.96); border: 1px solid var(--line); color: var(--text); font-size: 13.5px; padding: 10px 18px; border-radius: 999px; box-shadow: 0 10px 30px rgba(0,0,0,.5); opacity: 0; pointer-events: none; transition: opacity .15s; max-width: 86vw; text-align: center; }
#toast.show { opacity: 1; }

/* ===== 头像编辑弹层 ===== */
.av-preview { width: 84px; height: 84px; border-radius: 50%; margin: 4px auto 14px; background: radial-gradient(circle at 35% 30%, #4A3A24, #201810); border: 1.5px solid var(--brand-dim); overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--brand-bright); font-size: 34px; }
.av-preview img { width: 100%; height: 100%; object-fit: cover; }

/* ===== 字号自动等比（基准 390px） =====
   整段 clamp(vw) 替换：360~450 范围内舒适，<360 收下限，>448 锁上限 */
body { font-size: clamp(13.5px, 3.85vw, 17px); }
.brand-mark { font-size: clamp(32px, 10.26vw, 44px); }
.brand-head h1 { font-size: clamp(20px, 6.15vw, 26px); }
.brand-head .slogan { font-size: clamp(11px, 3.33vw, 14px); }
.field input { font-size: clamp(14px, 4.1vw, 17px); }
.field .send-code { font-size: clamp(12px, 3.59vw, 15.5px); }
.btn { font-size: clamp(14px, 4.1vw, 17px); padding: clamp(11px, 3.85vw, 14px); }
.login-tip { font-size: clamp(10.5px, 3.08vw, 13.5px); }
.login-bonus { font-size: clamp(11px, 3.21vw, 14px); }
.chip { font-size: clamp(10.5px, 3.08vw, 13.5px); padding: 1px clamp(7px, 2vw, 10px); }
.section-title { font-size: clamp(13.5px, 3.85vw, 16px); }
.section-title .more { font-size: clamp(10.5px, 3.08vw, 13px); }
.topbar { font-size: clamp(12.5px, 3.59vw, 15.5px); padding: clamp(9px, 2.6vw, 12px) clamp(13px, 3.85vw, 17px); }
.topbar .shop { font-size: clamp(13.5px, 3.85vw, 16px); }
.topbar .mini { font-size: clamp(10.5px, 3.08vw, 13px); }
.tab { font-size: clamp(9.5px, 2.82vw, 12px); }
.hero { padding: clamp(12px, 3.59vw, 17px) clamp(12px, 3.59vw, 17px) 0; }
.hero .store .mark { font-size: clamp(16px, 5.13vw, 22px); }
.hero .store .name { font-size: clamp(15px, 4.62vw, 20px); }
.hero .store .sub { font-size: clamp(10px, 2.95vw, 13px); }
.user-card { padding: clamp(9px, 2.56vw, 12px); }
.user-card .who .nm { font-size: clamp(12.5px, 4.1vw, 18px); }
.user-card .who .id { font-size: clamp(9px, 2.82vw, 12.5px); }
.avatar { font-size: clamp(17px, 5.13vw, 23px); }
.asset-cell .v { font-size: clamp(12px, 4.36vw, 19px); }
.asset-cell .k { font-size: clamp(8.5px, 2.56vw, 11px); }
.notice { font-size: clamp(11px, 3.21vw, 13.5px); padding: clamp(7px, 2vw, 10px) clamp(10px, 2.82vw, 13px); }
.grid { gap: clamp(7px, 2vw, 11px); padding: clamp(9px, 2.82vw, 13px) clamp(12px, 3.59vw, 17px) 0; }
.grid .item { padding: clamp(9px, 2.82vw, 13px) clamp(4px, 1vw, 6px) clamp(7px, 2vw, 11px); border-radius: clamp(9px, 2.56vw, 13px); }
.grid .item svg { width: clamp(20px, 6.67vw, 28px); height: clamp(20px, 6.67vw, 28px); }
.grid .item .lb { font-size: clamp(10.5px, 3.08vw, 13.5px); }
.grid .item .badge-new { font-size: clamp(8px, 2.05vw, 10px); padding: 0 clamp(3px, 1vw, 5px); }
.rank-card { padding: clamp(11px, 3.08vw, 15px) clamp(12px, 3.59vw, 17px); }
.rank-head .t { font-size: clamp(12.5px, 3.85vw, 15.5px); }
.rank-no { font-size: clamp(11.5px, 3.59vw, 14.5px); }
.rank-av { width: clamp(22px, 7.18vw, 31px); height: clamp(22px, 7.18vw, 31px); font-size: clamp(11px, 3.33vw, 14.5px); }
.rank-row .nm { font-size: clamp(11.5px, 3.33vw, 14px); }
.rank-row .pts { font-size: clamp(11px, 3.33vw, 14px); }
.rank-empty { font-size: clamp(11px, 3.08vw, 13.5px); }
.placeholder-page { padding: clamp(28px, 8.21vw, 50px) clamp(20px, 6.15vw, 36px) clamp(12px, 3.59vw, 22px); }
.placeholder-page .ill { width: clamp(64px, 23.08vw, 96px); height: clamp(64px, 23.08vw, 96px); border-radius: clamp(20px, 6.15vw, 32px); margin-bottom: clamp(10px, 3.08vw, 19px); }
.placeholder-page .ill svg { width: clamp(30px, 10.77vw, 45px); height: clamp(30px, 10.77vw, 45px); }
.placeholder-page h3 { font-size: clamp(15px, 4.62vw, 19.5px); }
.placeholder-page p { font-size: clamp(11px, 3.33vw, 14px); }
.profile-level { padding: clamp(12px, 3.59vw, 17px); }
.profile-level .now { font-size: clamp(14px, 4.62vw, 19px); }
.profile-level .to { font-size: clamp(10px, 3.08vw, 13.5px); }
.menu-list { padding: 3px clamp(12px, 3.59vw, 17px); }
.menu-item { font-size: clamp(12.5px, 3.85vw, 15.5px); }
.menu-item svg { width: clamp(16px, 5.13vw, 22px); height: clamp(16px, 5.13vw, 22px); }
.menu-item .chev { font-size: clamp(11.5px, 3.33vw, 14.5px); }
.menu-item .rv { font-size: clamp(10px, 3.08vw, 13px); }
.tier-pill svg { width: clamp(9px, 2.82vw, 12px); height: clamp(9px, 2.82vw, 12px); }
.sheet { padding: clamp(13px, 3.85vw, 19px) clamp(13px, 3.85vw, 19px) calc(15px + env(safe-area-inset-bottom)); }
.sheet .head .t { font-size: clamp(13.5px, 4.1vw, 17.5px); }
.sheet .x { font-size: clamp(15px, 4.36vw, 19px); }
.ledger-type { font-size: clamp(11.5px, 3.33vw, 14.5px); padding: clamp(4px, 1.28vw, 7px) clamp(10px, 2.82vw, 14px); }
.led-row .ic { width: clamp(26px, 8.72vw, 36px); height: clamp(26px, 8.72vw, 36px); border-radius: clamp(7px, 2.31vw, 11px); }
.led-row .ic svg { width: clamp(13px, 4.36vw, 18px); height: clamp(13px, 4.36vw, 18px); }
.led-row .bd .t1 { font-size: clamp(11.5px, 3.59vw, 15px); }
.led-row .bd .t2 { font-size: clamp(9px, 2.82vw, 12px); }
.led-row .amt { font-size: clamp(12px, 3.59vw, 15.5px); }
#toast { font-size: clamp(11.5px, 3.59vw, 14.5px); padding: clamp(8px, 2.56vw, 11px) clamp(13px, 3.85vw, 19px); }
.av-preview { width: clamp(64px, 21.54vw, 92px); height: clamp(64px, 21.54vw, 92px); font-size: clamp(26px, 9.23vw, 38px); margin-bottom: clamp(10px, 3.33vw, 16px); }

/* 桌面壳内字号锁定上限（@560+） */
@media (min-width: 561px) {
  body { font-size: 17px; }
  .hero .store .mark { font-size: 22px; }
  .grid .item svg { width: 28px; height: 28px; }
  .tab svg { width: 24px; height: 24px; }
}


/* 会员身份码按钮与全屏 modal（2026-09-03） */
.tb-qr { flex: none; width: 32px; height: 32px; margin-left: 6px; border-radius: 9px; background: rgba(224,164,88,.1); border: 1px solid rgba(224,164,88,.3); color: var(--brand-bright); display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
.tb-qr:active { transform: scale(.94); }
.tb-qr svg { width: 17px; height: 17px; }
.qr-modal { position: fixed; inset: 0; z-index: 100; background: #0E0B08; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 40px 24px; animation: qrfade .18s ease-out; }
@keyframes qrfade { from { opacity: 0; } to { opacity: 1; } }
.qr-card { background: #F1E8D8; padding: clamp(18px, 5.5vw, 26px); border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.55); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.qr-card img { width: clamp(240px, 62vw, 340px); height: clamp(240px, 62vw, 340px); display: block; }
.qr-card .qn { font-weight: 700; font-size: clamp(15px, 4.4vw, 18px); color: #14100B; }
.qr-card .qt { font-size: clamp(11.5px, 3.4vw, 14px); color: #6B6158; }
.qr-tip { color: #C6B79E; font-size: clamp(11.5px, 3.4vw, 14px); margin-top: 22px; text-align: center; letter-spacing: 1px; }
.qr-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); color: #C6B79E; font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
.qr-loading { color: #C6B79E; font-size: 14px; }
/* 取酒/存酒二维码页：列表独立滚动，不挤走二维码（2026-09-19） */
.qr-modal { overflow-y: auto; }
.qr-extra { margin-top: 16px; width: 100%; max-width: 320px; max-height: 34vh; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-right: 2px; }
.qr-hint { margin-top: 18px; color: #8F8170; font-size: 12.5px; letter-spacing: 1px; }

/* 首页 assets 独立行（2026-09-03） */
.hm-assets { display: flex; justify-content: space-between; align-items: center; gap: 0; padding: clamp(8px, 2.5vw, 12px) clamp(12px, 3.5vw, 16px); margin: clamp(10px, 3vw, 14px) 0 clamp(2px, 1vw, 4px); border-top: 0.5px solid rgba(255,255,255,.06); border-bottom: 0.5px solid rgba(255,255,255,.06); }
.hm-assets .asset-cell { text-align: left; }

/* 返回首页按钮（2026-09-03） */
.back-btn { flex: none; width: 32px; height: 32px; margin-right: 6px; border-radius: 9px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #F1E8D8; display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
.back-btn-hide { display: none !important; }
.back-btn:active { transform: scale(.94); background: rgba(255,255,255,.1); }
.back-btn svg { width: 18px; height: 18px; }

/* sheet 头部返回按钮 + qr 返回首页按钮（2026-09-04） */
.sheet-back {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer;
  color: #C6B79E; font-size: 14px; padding: 4px 8px 4px 4px; margin-right: auto;
  font-family: inherit;
}
.sheet-back:active { opacity: .65; }
.sheet-back svg { width: 16px; height: 16px; }
.sheet .head { align-items: center; }

.qr-back {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  height: 38px; padding: 0 16px 0 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06);
  color: #F1E8D8; font-size: 13.5px; cursor: pointer;
  font-family: inherit; z-index: 2;
}
.qr-back:active { background: rgba(255,255,255,.12); }
.qr-back svg { width: 16px; height: 16px; }


/* 会员码可复制输入（2026-09-04 员工核销用） */
.qr-codebox { width: 100%; max-width: 340px; margin-top: 4px; }
.qr-code {
  width: 100%; background: rgba(20,16,11,.5); border: 1px solid #3B2F20; border-radius: 10px;
  color: #C6B79E; font-size: 11px; font-family: ui-monospace, Menlo, Consolas, monospace;
  padding: 9px 12px; outline: none;
}
.qr-card .qt2 { font-size: 11px; color: #6B6158; margin-top: 2px; }

/* ===== 2026-09-04 业务页：套餐入口 / 点单 / 游戏 ===== */
.pkg-entry {
  display: flex; align-items: center; gap: 10px;
  width: calc(100% - 28px); margin: 12px 14px 0;
  background: linear-gradient(135deg, rgba(224,164,88,.14), rgba(139,90,43,.08));
  border: 1px solid rgba(224,164,88,.32);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text); font-size: 14px; font-family: inherit; text-align: left;
  cursor: pointer;
}
.pkg-entry svg { width: 22px; height: 22px; color: var(--brand-bright); flex: none; }
.pkg-entry span:first-of-type { font-weight: 700; flex: 1; font-size: 15px; letter-spacing: .5px; }
.pkg-entry:active { opacity: .82; }
/* 购物车图标：醒目 + 色调统一（2026-09-19） */
.pkg-entry { position: relative; overflow: hidden; padding: 14px 16px; border: 1.5px solid rgba(224,164,88,.55); background: linear-gradient(135deg, rgba(224,164,88,.22), rgba(139,90,43,.14)); box-shadow: 0 3px 14px rgba(224,164,88,.13); }
.pkg-entry::before { content: ''; position: absolute; right: -22px; top: 50%; transform: translateY(-50%); width: 78px; height: 78px; border-radius: 50%; background: radial-gradient(circle, rgba(224,164,88,.20), transparent 68%); pointer-events: none; }
.pkg-entry .pkg-cart { width: 24px; height: 24px; color: var(--brand-bright); }
.pkg-entry span:last-of-type { color: var(--brand-bright); opacity: .78; }

/* 点单页 */
.order-top { display: flex; align-items: center; gap: 10px; padding: 12px 16px 6px; }
.order-top .order-balance { flex: 1; display: flex; align-items: baseline; gap: 8px; }
.order-top .order-balance b { font-size: 18px; font-weight: 700; font-variant-numeric: tabular-nums; }
.order-cat { font-size: 12px; color: var(--t3); padding: 14px 16px 6px; letter-spacing: .5px; }
.order-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; margin: 0 14px 10px;
}
.order-card .ic { width: 44px; height: 44px; flex: none; border-radius: 11px; background: linear-gradient(135deg, #3a2812, #1e140d); display: flex; align-items: center; justify-content: center; color: var(--brand-bright); font-size: 22px; }
.order-card .ic svg { width: 22px; height: 22px; }
.order-card .info { flex: 1; min-width: 0; }
.order-card .info .nm { font-size: 15px; font-weight: 600; }
.order-card .info .desc { font-size: 11.5px; color: var(--t3); margin-top: 2px; line-height: 1.4; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }
.order-card .right { flex: none; text-align: right; }
.order-card .right .pr { font-size: 15px; font-weight: 700; color: var(--brand-bright); font-variant-numeric: tabular-nums; }
.order-card .right .st { font-size: 10.5px; color: var(--t3); }
.order-card .btn { flex: none; padding: 7px 13px; font-size: 13px; border: none; border-radius: 999px; background: linear-gradient(180deg, var(--brand-bright), var(--brand)); color: #241A0C; font-weight: 600; cursor: pointer; font-family: inherit; }
.order-card .btn:disabled { opacity: .5; }
.order-card .btn.ghost { background: transparent; border: 1px solid var(--line); color: var(--t2); }

/* 游戏列表 */
.game-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px; margin: 0 14px 10px;
}
.game-card .hd { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.game-card .hd-titles { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.game-card .hd-titles .cat { display: inline-block; align-self: flex-start; font-size: 10.5px; padding: 2px 8px; border-radius: 4px; background: rgba(139,90,43,.22); color: #E0C9A8; letter-spacing: 1px; font-weight: 500; line-height: 1.5; }
.game-card .hd-titles .nm { font-weight: 700; font-size: 16px; line-height: 1.3; word-break: break-all; color: var(--text); }
.game-card .hd-titles .sub { font-size: 11.5px; color: var(--t3); line-height: 1.4; font-weight: 400; }
.game-card .hd .tier { font-size: 10.5px; padding: 3px 9px; border-radius: 999px; background: rgba(224,164,88,.16); color: var(--brand-bright); border: 0.5px solid rgba(224,164,88,.35); flex-shrink: 0; align-self: flex-start; white-space: nowrap; }
.game-card .hd .tier.vip { background: rgba(139,90,43,.22); color: #E0C9A8; }
.game-card .desc { font-size: 12.5px; color: var(--t2); line-height: 1.6; margin-bottom: 10px; }
.game-card .req { font-size: 12px; color: var(--t3); display: flex; gap: 12px; flex-wrap: wrap; }
.game-card .req b { color: var(--brand-bright); font-weight: 600; }
.game-card .tip { font-size: 11px; color: var(--t3); margin-top: 10px; line-height: 1.6; }

/* 套餐弹层 */
.pkg-list-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 4px; border-bottom: 0.5px solid rgba(255,255,255,.05);
  cursor: pointer;
}
.pkg-list-row:last-child { border: none; }
.pkg-list-row .nm { flex: 1; min-width: 0; }
.pkg-list-row .nm .t { font-size: 14.5px; font-weight: 600; }
.pkg-list-row .nm .sub { font-size: 11.5px; color: var(--t3); margin-top: 2px; }
.pkg-list-row .pr { font-size: 16px; font-weight: 700; color: var(--brand-bright); font-variant-numeric: tabular-nums; }


/* ===== 2026-09-04 存酒卡 ===== */
.storage-card {
  display: flex; align-items: center; gap: 10px;
  width: calc(100% - 28px); margin: 12px 14px 0;
  background: rgba(74,107,74,.08);
  border: 1px solid rgba(122,163,107,.28);
  border-radius: 12px;
  padding: 10px 14px;
}
.storage-card .row1 { display: flex; align-items: center; gap: 6px; }
.storage-card .row1 svg { width: 16px; height: 16px; color: #7FA36B; flex: none; }
.storage-card .nm { font-weight: 600; font-size: 13.5px; }
.storage-card .ct { font-size: 12.5px; color: var(--t2); margin-top: 2px; }
.storage-card .tip { font-size: 11px; color: var(--t3); margin-top: 3px; }

.gift-card {
  background: rgba(224,164,88,.07);
  border-color: rgba(224,164,88,.3);
  cursor: pointer;
}
.gift-card .row1 svg { color: var(--brand); }

/* 四资产格微调（2026-09-04） */
.hm-assets .asset-cell { padding: 0 clamp(3px, 1.2vw, 7px); }
.hm-assets .asset-cell .k { white-space: nowrap; font-size: 10px; }


/* ===== 2026-09-04 批注优化 ===== */
.hm-assets .asset-cell { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.hm-assets .asset-cell .v { line-height: 1.2; }
.chip { line-height: 1.55; vertical-align: middle; }
#page-profile .hero { padding-top: 8px; }
#page-profile .user-card { margin-top: 2px; }
#page-profile .storage-card, #page-profile .gift-card { margin-top: 8px; }
.mood-pill { display: inline-flex; align-items: center; max-width: 100%; margin-top: 6px; padding: 3px 11px; border-radius: 999px; background: rgba(224,164,88,.1); border: 0.5px dashed rgba(224,164,88,.42); color: var(--brand-bright); font-size: 11px; font-family: inherit; cursor: pointer; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mood-pill:active { opacity: .8; }
#page-profile .storage-card, #page-profile .gift-card { display: flex; flex-direction: column; align-items: stretch; gap: 2px; }
#page-profile .storage-card .row1, #page-profile .gift-card .row1 { display: flex; align-items: center; gap: 6px; width: 100%; }
#page-profile .storage-card .row1 .nm, #page-profile .gift-card .row1 .nm { font-weight: 600; font-size: 13.5px; white-space: nowrap; }
#page-profile .storage-card .ct, #page-profile .gift-card .ct { margin-left: auto; font-size: 12.5px; color: var(--t2); white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; }
#page-profile .storage-card .ex { font-size: 11px; color: var(--t3); margin-top: 1px; white-space: nowrap; }
#page-profile .storage-card .tip, #page-profile .gift-card .tip { font-size: 11px; color: var(--t3); margin-top: 3px; line-height: 1.6; }
.profile-level .row1 .chip { display: inline-flex; align-items: center; justify-content: center; }

/* ===== 2026-09-04 第二轮批注优化 ===== */
.tags { justify-content: space-evenly; gap: 8px 10px; max-height: 60px; overflow: hidden; }
.order-card { min-width: 0; }
.order-card .info { flex: 1 1 auto; min-width: 0; }
.order-card .info .nm { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-card .info .desc { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-card .right { flex: 0 0 auto; max-width: 46%; min-width: 0; }
.order-card .right .pr { white-space: nowrap; }
.order-card .btn { flex: 0 0 auto; white-space: nowrap; }
.notice .mq { white-space: normal; overflow: hidden; }
.mq-in { white-space: normal; line-height: 1.6; display: block; }
.hm-nt-count { flex: none; margin-left: auto; font-size: 11px; color: var(--text-3); background: rgba(255,255,255,.06); border-radius: 999px; padding: 1px 7px; font-variant-numeric: tabular-nums; }
.storage-notice { margin: 8px 0 2px; padding: 8px 10px; background: rgba(224,164,88,.07); border: 0.5px dashed rgba(224,164,88,.32); border-radius: 8px; font-size: 11.5px; color: var(--text-2); line-height: 1.6; }

/* ===== 2026-09-05 第三轮批注优化 ===== */
.notice .mq { white-space: nowrap; overflow: hidden; }
.mq-in { display: inline-block; white-space: nowrap; line-height: 1.5; will-change: transform; transform: translateX(0); }
.sheet .head .t { flex: 1; text-align: center; }
.pkg-list-row { min-width: 0; }
.pkg-list-row .nm { min-width: 0; }
.pkg-list-row .nm .t { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pkg-list-row .pr { white-space: nowrap; flex: none; }
.pkg-list-row .btn.pkg-buy { flex: none; white-space: nowrap; padding: 5px 10px; font-size: 12px; }
.profile-level .row1 { flex-wrap: wrap; align-items: center; gap: 6px 10px; }
.profile-level .now { white-space: nowrap; font-size: clamp(13px, 3.8vw, 17px); }
.profile-level .chip { white-space: nowrap; }
.profile-level .to { white-space: nowrap; margin-left: auto; }
.order-top { padding: 12px clamp(13px, 3.85vw, 17px) 6px; }
.order-balance b { font-size: clamp(16px, 4.4vw, 20px); font-variant-numeric: tabular-nums; }
#page-order { display: flex; flex-direction: column; min-height: calc(100vh - 200px); }
#order-list { flex: 1; }

/* ===== 2026-09-05 第四轮：order/points 页面比例与防误触 ===== */
.order-top { align-items: center; padding: 10px clamp(13px, 3.85vw, 17px) 6px; min-height: 0; }
.order-balance { display: flex; align-items: baseline; gap: 7px; min-width: 0; }
.order-balance .muted { font-size: 12px; white-space: nowrap; }
.order-balance b { font-size: 17px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.order-top .btn.ghost.sm { flex: none; margin-left: auto; }
#page-order { display: flex; flex-direction: column; min-height: calc(100vh - 148px); }
#order-list { flex: 1; }
#page-points { display: flex; flex-direction: column; min-height: calc(100vh - 148px); }
#page-points > div:last-child { flex: 1; }
.order-top .order-balance b { font-size: 17px; }
.order-top .btn.ghost.sm { padding: 6px 13px; font-size: 12.5px; line-height: 1.2; border-radius: 999px; }
.order-card .btn { display: inline-flex !important; width: auto !important; flex: 0 0 auto; padding: 6px 14px; font-size: 13px; white-space: nowrap; }

/* ===== 2026-09-05 皇冠与余额 ===== */
.tier-pill svg { width: clamp(12px, 3.3vw, 15px); height: clamp(12px, 3.3vw, 15px); }
.user-card .who .nm .tier-pill svg { width: 13px; height: 13px; }
.order-top { padding: 10px clamp(13px, 3.85vw, 17px) 8px; }
.order-balance { display: inline-flex; align-items: center; gap: 6px; background: rgba(224,164,88,.09); border: 1px solid rgba(224,164,88,.26); border-radius: 999px; padding: 5px 13px; min-width: 0; }
.order-balance svg { width: 15px; height: 15px; color: var(--brand-bright); flex: none; }
.order-balance .muted { font-size: 11.5px; white-space: nowrap; }
.order-balance b { font-size: 15px; line-height: 1.2; color: var(--brand-bright); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pkg-list-row { flex-wrap: nowrap; }
.pkg-list-row .btn.pkg-buy { display: inline-flex !important; width: auto !important; flex: 0 0 auto; padding: 5px 12px; font-size: 12.5px; white-space: nowrap; }
.pkg-list-row .pr { flex: none; margin: 0 4px 0 auto; }
.pkg-list-row .nm .sub { line-height: 1.55; word-break: normal; overflow-wrap: break-word; }
.m-thumb { flex: none; width: 40px; height: 40px; border-radius: 9px; overflow: hidden; background: rgba(255,255,255,.05); }
.m-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.order-card .ic img.gi { width: 100%; height: 100%; object-fit: cover; border-radius: 11px; }
.pkg-list-row .m-thumb { margin: 2px 0; }

.seat-pill { display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; padding: 4px 12px; border-radius: 999px; background: rgba(224,164,88,.14); border: 0.5px solid rgba(224,164,88,.5); color: #E0A458; font-size: 11.5px; font-weight: 600; cursor: pointer; font-family: inherit; max-width: 100%; }
.order-top .seat-pill { margin-top: 0; padding: 4px 10px; font-size: 12px; }
