/* ========== 本地商家联盟 设计系统 V4 ========== */
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.1.0/fonts/remixicon.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700;900&display=swap');

:root {
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --primary-light: #EEF2FF;
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary: #10B981;
  --accent: #F59E0B;
  --vip-gold: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  --bg: #F5F5F5;
  --bg-card: #FFFFFF;
  --text: #1E293B;
  --text-sub: #64748B;
  --text-hint: #94A3B8;
  --border: #E2E8F0;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
}

* { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ========== 顶部导航栏 ========== */
.page-top {
  background: var(--bg-card);
  color: var(--text);
  padding: 14px 20px;
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700;
  min-height: 52px;
  border-bottom: 1px solid var(--border);
}
.page-top .back {
  position: absolute; left: 8px; font-size: 22px; color: var(--text);
  text-decoration: none; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}
.page-top .back:active { background: var(--bg); }

/* ========== 首页顶部搜索栏 ========== */
.home-header {
  background: var(--primary-gradient);
  padding: 16px 16px 24px;
  position: relative;
}
.home-header::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -16px;
  height: 16px;
  background: var(--bg);
  border-radius: 16px 16px 0 0;
}
.search-bar {
  background: rgba(255,255,255,0.95);
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-hint);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.search-bar i { font-size: 18px; color: var(--primary); }

/* ========== 分类导航 ========== */
.cate-bar {
  background: var(--bg-card);
  padding: 14px 0 10px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.cate-bar::-webkit-scrollbar { display:none; }
.cate-bar a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 7px 20px;
  margin: 0 5px;
  font-size: 14px;
  color: var(--text-sub);
  border-radius: 22px;
  text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  font-weight: 500;
  background: var(--bg);
  letter-spacing: 0.3px;
}
.cate-bar a:first-child { margin-left: 14px; }
.cate-bar a:last-child { margin-right: 14px; }
.cate-bar a.active {
  background: var(--primary-gradient);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(99, 102, 241, 0.25);
  transform: scale(1.03);
}
.cate-bar a:not(.active):active { background: var(--primary-light); }

/* ========== 二级分类导航 ========== */
.subcate-bar {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-card) 100%);
  padding: 10px 0 12px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.subcate-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), var(--border), var(--primary-light), transparent);
}
.subcate-bar::-webkit-scrollbar { display:none; }
.subcate-bar a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 5px 15px;
  margin: 0 4px;
  font-size: 12px;
  color: var(--text-sub);
  border-radius: 16px;
  text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  font-weight: 500;
  background: rgba(255,255,255,0.8);
  border: 1.5px solid transparent;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.subcate-bar a:first-child { margin-left: 14px; }
.subcate-bar a:last-child { margin-right: 14px; }
.subcate-bar a.active {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}
.subcate-bar a:not(.active):hover {
  border-color: var(--border);
  background: #fff;
}
.subcate-bar a:not(.active):active {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

/* ========== VIP卡 ========== */
.vip-card {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #0f172a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
}
.vip-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.vip-card::after {
  content:'VIP';
  position: absolute; right: -8px; bottom: -16px;
  font-size: 80px; font-weight: 900; color: rgba(245, 158, 11, 0.06);
  pointer-events: none; letter-spacing: 4px;
}
.vip-card .vip-label {
  font-size: 11px;
  opacity: 0.5;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F59E0B;
}
.vip-card .vip-title {
  font-size: 20px;
  font-weight: 700;
  margin: 6px 0;
  display: flex; align-items: center; gap: 6px;
}
.vip-card .vip-title i { color: #F59E0B; }
.vip-card .vip-expire {
  font-size: 13px;
  opacity: 0.7;
  color: #94A3B8;
}
.vip-card .vip-price-big {
  font-size: 42px;
  font-weight: 900;
  margin: 4px 0;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vip-card .vip-price-unit {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.9;
  color: #F59E0B;
  -webkit-text-fill-color: #F59E0B;
}

/* ========== 商家卡片 ========== */
.shop-card {
  display: flex;
  background: var(--bg-card);
  border-radius: var(--radius);
  margin: 8px 14px;
  padding: 14px;
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  color: var(--text);
  transition: all .2s;
  overflow: hidden;
  align-items: center;
}
.shop-card:active { transform: scale(0.98); }
.shop-card .shop-logo {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  object-fit: cover;
  background: var(--bg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.shop-card .shop-logo img {
  width: 100%; height: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.shop-card .shop-logo i {
  font-size: 32px; color: var(--text-hint);
}
.shop-card .shop-info {
  flex: 1;
  margin-left: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.shop-card .shop-name {
  font-weight: 700;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop-card .shop-addr {
  font-size: 12px;
  color: var(--text-hint);
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex; align-items: center; gap: 3px;
}
.shop-card .shop-addr i { font-size: 14px; flex-shrink: 0; }
.shop-card .shop-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

/* ========== 折扣标签 ========== */
.discount-tag {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}

/* ========== VIP标签 ========== */
.vip-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--vip-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

/* ========== 卡片容器 ========== */
.card-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin: 10px 14px;
  padding: 18px;
  box-shadow: var(--shadow-xs);
}
.card-box-np {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin: 10px 14px;
  padding: 0;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

/* ========== 列表项 ========== */
.list-item {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: all .2s;
}
.list-item:last-child { border-bottom: none; }
.list-item:active { background: var(--bg); }
.list-item .item-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-right: 14px;
  flex-shrink: 0;
}
.list-item .item-text { flex: 1; font-size: 15px; font-weight: 600; }
.list-item .item-arrow { color: var(--text-hint); font-size: 18px; margin-left: 8px; }

/* ========== 底部导航 ========== */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  display: flex;
  z-index: 100;
  padding: 6px 0 2px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.bottom-nav a {
  flex: 1;
  text-align: center;
  padding: 2px 0;
  color: var(--text-hint);
  text-decoration: none;
  font-size: 11px;
  transition: all .2s;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.bottom-nav a.active { color: var(--primary); font-weight: 700; }
.bottom-nav a i {
  font-size: 22px;
  line-height: 1;
}

/* ========== 按钮 ========== */
.btn-primary-custom {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  font-family: inherit;
}
.btn-primary-custom:active {
  opacity: 0.9;
  transform: scale(0.97);
}

.btn-vip {
  background: var(--vip-gold);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
  transition: all .2s;
  font-family: inherit;
}
.btn-vip:active { transform: scale(0.97); }

.btn-outline {
  background: var(--bg-card);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
  font-family: inherit;
}
.btn-outline:active { background: var(--primary-light); }

/* ========== 核销码区域 ========== */
.qrcode-area {
  background: linear-gradient(135deg, #FEFCE8, #FEF3C7);
  border: 2px solid #F59E0B;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  margin: 10px 0;
  position: relative;
}
.qrcode-area::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--vip-gold);
  border-radius: 0 0 4px 4px;
}
.qrcode-area canvas, .qrcode-area img { margin: 0 auto; }
.qrcode-area .countdown {
  font-size: 18px;
  font-weight: 700;
  color: var(--error);
  margin-top: 10px;
  font-variant-numeric: tabular-nums;
}
.qrcode-area .countdown-label {
  font-size: 12px;
  color: #92400E;
  margin-top: 4px;
}

/* ========== 积分 ========== */
.points-plus { color: var(--success); font-weight: 700; }
.points-minus { color: var(--error); font-weight: 700; }

/* ========== 状态标签 ========== */
.status-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 600;
}
.status-pending { background: #FEF3C7; color: var(--accent); }
.status-success { background: #D1FAE5; color: var(--secondary); }
.status-reject { background: #FEE2E2; color: var(--error); }

/* ========== 空状态 ========== */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-hint);
}
.empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 10px;
  opacity: 0.5;
  color: var(--text-hint);
}
.empty-state .empty-text {
  font-size: 14px;
}

/* ========== 弹窗提示 ========== */
.toast-msg {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(30, 41, 59, 0.9);
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  z-index: 9999;
  font-size: 14px;
  font-weight: 500;
  animation: toastIn .25s ease;
  box-shadow: var(--shadow-lg);
}
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* ========== 用户中心头部 ========== */
.user-header {
  background: var(--primary-gradient);
  padding: 24px 20px 32px;
  color: #fff;
  position: relative;
}
.user-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -16px;
  height: 16px;
  background: var(--bg);
  border-radius: 16px 16px 0 0;
}
.user-header .user-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.4);
}
.user-header .user-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.user-header .user-info {
  margin-left: 14px;
  flex: 1;
}
.user-header .user-name {
  font-size: 18px;
  font-weight: 700;
}
.user-header .user-vip-row {
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.9;
  display: flex; align-items: center; gap: 4px;
}

/* ========== 统计卡片 ========== */
.stat-card-row {
  display: flex;
  background: var(--bg-card);
  border-radius: var(--radius);
  margin: -20px 14px 10px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
}
.stat-card-item {
  flex: 1;
  text-align: center;
  padding: 16px 10px;
}
.stat-card-item + .stat-card-item {
  border-left: 1px solid var(--border);
}
.stat-card-item .stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}
.stat-card-item .stat-label {
  font-size: 12px;
  color: var(--text-hint);
  margin-top: 2px;
  font-weight: 500;
}

/* ========== 菜单网格 ========== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  margin: 10px 14px;
  padding: 16px 0 12px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}
.menu-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  text-decoration: none;
  color: var(--text);
  transition: all .2s;
}
.menu-grid-item:active { opacity: 0.7; transform: scale(0.96); }
.menu-grid-item .menu-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 6px;
}
.menu-grid-item .menu-label {
  font-size: 12px;
  color: var(--text-sub);
  font-weight: 600;
}

/* ========== 推广中心 ========== */
.promo-stats {
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
}
.promo-stats .promo-value {
  font-size: 32px;
  font-weight: 900;
  margin-top: 4px;
}
.promo-stats .promo-label {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 500;
}

/* ========== 商家详情页封面 ========== */
.shop-banner {
  width: 100%;
  height: 220px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.shop-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.shop-banner .banner-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0,0,0,0.4));
}
.shop-banner i {
  font-size: 56px;
  color: var(--text-hint);
  opacity: 0.4;
}

/* ========== 商家核销入口 ========== */
.merchant-entry {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 8px 14px;
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  color: #92400E;
  transition: all .2s;
  border: 1px solid #FDE68A;
}
.merchant-entry:active { transform: scale(0.98); }
.merchant-entry .entry-icon {
  width: 44px; height: 44px;
  background: var(--vip-gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-right: 14px;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(245, 158, 11, 0.25);
}
.merchant-entry .entry-text { flex: 1; }
.merchant-entry .entry-title { font-weight: 700; font-size: 15px; }
.merchant-entry .entry-desc { font-size: 12px; color: var(--text-hint); margin-top: 2px; }
.merchant-entry .entry-arrow { color: var(--text-hint); font-size: 18px; }

/* ========== 表单 ========== */
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  outline: none;
  transition: all .2s;
  background: var(--bg);
  font-family: inherit;
}
.form-control:focus {
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px var(--primary-light);
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

/* ========== 分区标题 ========== */
.section-title {
  padding: 14px 14px 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

/* ========== 记录项 ========== */
.record-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.record-item:last-child { border-bottom: none; }
.record-item .record-left { flex: 1; min-width: 0; }
.record-item .record-title { font-size: 14px; font-weight: 600; color: var(--text); }
.record-item .record-sub { font-size: 12px; color: var(--text-hint); margin-top: 2px; }
.record-item .record-right { text-align: right; margin-left: 14px; }
.record-item .record-amount { font-size: 17px; font-weight: 800; }
.record-item .record-status { font-size: 12px; margin-top: 2px; }

/* ========== 规则项 ========== */
.rule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.rule-item:last-child { border-bottom: none; }
.rule-item .rule-value { font-weight: 800; color: var(--primary); }

/* ========== 商家详情操作栏 ========== */
.shop-actions {
  padding: 0 14px 20px;
}
.shop-actions .action-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.shop-actions .action-row > * { flex: 1; }

/* ========== 会员开通页 ========== */
.vip-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.vip-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.vip-benefit-item .benefit-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  color: var(--primary);
}
.vip-benefit-item .benefit-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}
.vip-benefit-item .benefit-text strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: 700;
}

/* ========== 辅助 ========== */
.text-center { text-align: center; }
.text-muted { color: var(--text-hint); }
.mb-3 { margin-bottom: 10px; }
.mt-3 { margin-top: 10px; }

/* ========== 商家端/管理端布局 ========== */
.top-bar {
  background: var(--bg-card);
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.stat-card .stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
}
.stat-card .stat-label {
  font-size: 13px;
  color: var(--text-hint);
  margin-top: 4px;
  font-weight: 500;
}

.data-table {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}

/* ========== 商家端扫码页 ========== */
.scan-area {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  margin: 20px auto;
  border: 3px dashed var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  font-size: 56px;
  color: var(--primary);
  box-shadow: var(--shadow-xs);
}

/* ========== 信息行（地址/电话） ========== */
.info-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-sub);
}
.info-row i { flex-shrink: 0; font-size: 15px; color: var(--text-hint); }

/* ========== 推广海报 ========== */
.poster-card {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #0f172a 100%);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.3);
}
.poster-card .poster-qr-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  display: inline-block;
  margin: 16px 0;
}
.poster-card .poster-qr-wrap img {
  width: 170px;
  height: 170px;
  display: block;
  border-radius: 8px;
}
