/* 公开铺子：铺满真实手机屏，无手机壳/无店主 Tab。复用 components.css 的卡片视觉。 */
html, body { background: var(--c-bg); }
.wrap { position: relative; max-width: 480px; min-height: 100vh; margin: 0 auto;
  background: var(--c-bg); padding: 0 14px 40px; }

/* 顶部品牌条 */
.vbar { position: sticky; top: 0; z-index: 10; background: var(--c-bg);
  padding: 12px 2px 8px; display: flex; align-items: center; gap: 10px; }
.vbar .vb-back { border: 0; background: var(--c-fill); color: var(--c-text); width: 34px; height: 34px;
  border-radius: var(--radius-pill); font-size: 20px; line-height: 1; cursor: pointer; flex: none; }
.vbar .vb-title { font-size: var(--fs-lg); font-weight: var(--fw-semibold); flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vbar .vb-me { font-size: var(--fs-xs); color: var(--c-text-mute); flex: none; }

/* 商品列表用 .g-img 占位（无图时） */
.g-img.ph, .thumb.ph { display: flex; align-items: center; justify-content: center;
  color: var(--c-text-mute); font-size: var(--fs-xs); }

/* 详情页大图 */
.vd-hero { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius);
  background: var(--c-fill); display: block; margin: 8px 0 0; }
.vd-hero.ph { display: flex; align-items: center; justify-content: center; color: var(--c-text-mute); }

/* 昵称门 */
.gate { position: fixed; inset: 0; z-index: 50; background: rgba(15,23,42,.45);
  display: flex; align-items: flex-end; justify-content: center; }
.gate-card { width: 100%; max-width: 480px; background: var(--c-surface);
  border-radius: 18px 18px 0 0; padding: 22px 18px calc(22px + env(safe-area-inset-bottom));
  animation: gateUp .25s ease both; }
@keyframes gateUp { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
.gate-t { font-size: 20px; font-weight: var(--fw-semibold); }
.gate-s { color: var(--c-text-sub); font-size: var(--fs-sm); margin-top: 6px; line-height: 1.5; }
.nick-pool { display: flex; flex-wrap: wrap; gap: 9px; margin: 16px 0 4px; }
.nick { border: 1px solid var(--c-line); background: var(--c-surface); color: var(--c-text);
  border-radius: var(--radius-pill); padding: 9px 16px; font-size: var(--fs-md); cursor: pointer; }
.nick.on { border-color: var(--c-primary); background: var(--c-primary-soft); color: var(--c-primary);
  font-weight: var(--fw-medium); }
.gate-custom { display: flex; gap: 8px; margin-top: 12px; }
.gate-custom input { flex: 1; border: 1px solid var(--c-line); border-radius: var(--radius-pill);
  padding: 10px 14px; font-size: var(--fs-md); outline: none; }
.gate-custom input:focus { border-color: var(--c-primary); }
.gate .btn { margin-top: 16px; }
.gate-empty { color: var(--c-text-mute); font-size: var(--fs-sm); margin: 14px 0 4px; }

/* 状态/加载/空 */
.vstate { text-align: center; color: var(--c-text-mute); padding: 60px 20px; font-size: var(--fs-sm); }

.toast { bottom: 36px; }
