/* ===================================================
   猜趣商城 V5 — 品鉴风（独立商城页专属样式）
   从 ui/index.html 商城段落提取，仅包含商城相关 CSS
   =================================================== */

/* body 商城状态 */
body.tab-mall {
  background: #F5EFE6;
}
body.tab-mall .tab-bar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top-color: rgba(0,0,0,0.06);
  transition: background 0.5s ease, border-color 0.5s ease;
}
body.tab-mall .tab-bar .tab-item { color: #999; }
body.tab-mall .tab-bar .tab-item.active { color: #FF6B00; }

/* 商城页面根节点 */
#pageMall { background: #F5EFE6; }

/* --- 顶部导航(48px 固定) --- */
.m-nav {
  display: flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 16px;
  background: #FFFFFF;
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--max-width, 480px); z-index: 200;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.m-logo {
  font-size: 26px; font-weight: 900; color: #E8511A;
  flex-shrink: 0; letter-spacing: -1px;
  font-family: 'PingFang SC', -apple-system, sans-serif;
  background: linear-gradient(135deg, #FF6B35, #E8511A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.m-search {
  flex: 1; display: flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 14px;
  background: #F5F5F5; border-radius: 18px;
  cursor: pointer; transition: background 0.15s;
}
.m-search:active { background: #EFEFEF; }
.m-search i { font-size: 13px; color: #B0B0B0; }
.m-search span { font-size: 13px; color: #B0B0B0; }
.m-icons { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.m-ico {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  color: #333; font-size: 19px; cursor: pointer; position: relative;
  border-radius: 50%; transition: background 0.15s;
}
.m-ico:active { background: #F0F0F0; }
.m-ico-badge {
  position: absolute; top: 1px; right: -1px;
  min-width: 16px; height: 16px; border-radius: 8px;
  background: #FF3B30; color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 1.5px solid #fff;
}

/* --- Tab栏(44px 固定) --- */
.m-tabs {
  display: flex; align-items: center;
  height: 44px; padding: 0 8px;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: fixed; top: 48px; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--max-width, 480px); z-index: 199;
  gap: 0;
}
.m-tab {
  flex: 1; display: flex; align-items: center; justify-content: center;
  height: 44px; font-size: 15px; font-weight: 500; color: #999;
  cursor: pointer; position: relative;
  transition: color 0.25s, font-weight 0.25s;
}
.m-tab.on { color: #E8511A; font-weight: 800; }
#mCatTab { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.m-tab.on::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 22px; height: 3px; border-radius: 1.5px;
  background: linear-gradient(90deg, #FF6B35, #E8511A);
}

/* --- Tab角标 --- */
.m-tab-badge {
  display: inline-block; font-size: 9px; font-weight: 700; padding: 1px 5px;
  border-radius: 8px; margin-left: 3px; vertical-align: middle;
  animation: mtbBadgePulse 2s infinite;
}
.m-tab-badge.badge-seckill { background: #FF3D00; color: #fff; }
.m-tab-badge.badge-new { background: #00C853; color: #fff; }
.m-tab-badge.badge-special { background: #FF6D00; color: #fff; }
@keyframes mtbBadgePulse { 0%,100% { opacity:1; } 50% { opacity:0.7; } }

/* --- 分类下拉面板 --- */
.m-cat-dropdown {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 198;
  display: none;
}
.m-cat-dropdown.open { display: block; }
.m-cat-mask { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.m-cat-panel {
  position: absolute; top: 92px; left: 0; right: 0;
  background: #fff; padding: 14px 16px 16px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-10px); opacity: 0;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.m-cat-dropdown.open .m-cat-panel { transform: translateY(0); opacity: 1; }
.m-cat-title { font-size: 13px; font-weight: 700; color: #333; margin-bottom: 10px; }
.m-cat-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.m-cat-item {
  padding: 6px 14px; border-radius: 18px; font-size: 12px; font-weight: 500;
  background: #F5F5F8; color: #666; cursor: pointer; transition: all 0.2s;
  border: 1.5px solid transparent; white-space: nowrap;
}
.m-cat-item:active { transform: scale(0.95); }
.m-cat-item.on { background: rgba(232,81,26,0.08); color: #E8511A; border-color: rgba(232,81,26,0.2); font-weight: 700; }
.m-cat-item .mci-count { font-size: 10px; color: #bbb; margin-left: 2px; }
.m-cat-item.on .mci-count { color: rgba(232,81,26,0.5); }
.m-cat-sort {
  display: flex; align-items: center; gap: 6px; padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.m-cat-sort-label { font-size: 12px; color: #999; flex-shrink: 0; }
.m-cat-sort-btn {
  padding: 4px 10px; border-radius: 14px; font-size: 11px; font-weight: 500;
  background: #F5F5F8; color: #888; cursor: pointer; transition: all 0.15s;
}
.m-cat-sort-btn:active { transform: scale(0.95); }
.m-cat-sort-btn.on { background: #E8511A; color: #fff; font-weight: 700; }

/* --- 热门分类 --- */
.m-cat-hot {
  display: flex; gap: 8px; margin-bottom: 10px; padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0; overflow-x: auto;
}
.m-cat-hot::-webkit-scrollbar { display: none; }
.m-cat-hot-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: 56px; cursor: pointer; transition: transform 0.15s;
}
.m-cat-hot-item:active { transform: scale(0.92); }
.m-cat-hot-item .mchi-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: #F5F5F8; transition: all 0.2s;
}
.m-cat-hot-item.on .mchi-icon { background: rgba(232,81,26,0.1); box-shadow: 0 2px 8px rgba(232,81,26,0.15); }
.m-cat-hot-item .mchi-name { font-size: 10px; color: #666; font-weight: 500; }
.m-cat-hot-item.on .mchi-name { color: #E8511A; font-weight: 700; }

/* --- Tab结果横幅 --- */
.m-tab-banner {
  margin: 10px 16px 0; padding: 10px 14px;
  border-radius: 10px; color: #fff;
  display: flex; align-items: center; gap: 8px;
  animation: mtb-slideIn 0.3s ease;
}
@keyframes mtb-slideIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.m-tab-banner .mtb-icon { font-size: 18px; }
.m-tab-banner .mtb-text { font-size: 13px; font-weight: 600; flex: 1; }
.m-tab-banner .mtb-tag {
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  background: rgba(255,255,255,0.2); border-radius: 10px;
}
.m-tab-banner .mtb-countdown {
  display: inline-flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 700;
}
.m-tab-banner .mtb-countdown span {
  display: inline-block; min-width: 20px; text-align: center;
  padding: 1px 3px; background: rgba(0,0,0,0.25); border-radius: 4px;
  font-size: 11px; font-family: 'SF Mono', monospace;
}

/* --- 内容区偏移（顶：固定导航48+Tab44；底：tab-bar 60px）--- */
#pageMall {
  padding-top: 92px;
  padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
}

/* --- Feed动画 --- */
.m-feed-animate .m-card { animation: mFeedIn 0.35s ease both; }
@keyframes mFeedIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

/* --- 英雄大卡片(品鉴风 V6) --- */
.m-hero {
  margin: 12px 16px 0; border-radius: 14px;
  background: #FFFFFF; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.15s; cursor: pointer;
}
.m-hero:active { transform: scale(0.99); }

.m-hero-header { padding: 10px 16px 8px; background: #fff; }
.m-hero-collab {
  display: flex; align-items: center; justify-content: center;
  gap: 0; line-height: 1;
  font-family: 'Helvetica Neue', 'Inter', Arial, sans-serif;
}
.m-hero-collab .collab-left {
  font-size: 13px; font-weight: 400; color: #1A1A1A;
  letter-spacing: 5px; padding-right: 16px;
}
.m-hero-collab .collab-divider {
  width: 1px; height: 18px;
  background: linear-gradient(to bottom, transparent, #C8A97E, transparent);
  margin: 0 14px; flex-shrink: 0;
}
.m-hero-collab .collab-right {
  font-size: 22px; font-weight: 900; color: #1A1A1A;
  letter-spacing: 5px; padding-left: 2px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.m-hero-collab .collab-sub {
  display: block; text-align: center;
  font-size: 8px; font-weight: 600; color: #C8A97E;
  letter-spacing: 3px; text-transform: uppercase; margin-top: 4px;
}
.m-hero-poster-wrap { padding: 0 10px 0; }
.m-hero-img {
  position: relative; width: 100%; height: 200px;
  background: #1A1A1A; overflow: hidden; border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 16px rgba(0,0,0,0.13), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.m-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 20%; }
.m-hero-img-logo { position: absolute; top: 8px; left: 10px; z-index: 3; }
.m-hero-img-logo-text {
  font-size: 16px; font-weight: 900; color: #fff; letter-spacing: 3px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6); font-family: 'Helvetica Neue', Arial, sans-serif;
}
.m-hero-img-badge {
  position: absolute; top: 8px; right: 10px;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 16px;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px; z-index: 3;
}
.m-hero-img-badge i { font-size: 8px; color: #FFD54F; }
.m-hero-img-overlay {
  position: absolute; bottom: 0; left: 0; width: 55%;
  padding: 0 12px 10px;
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
  border-radius: 0 0 0 12px; z-index: 3;
}
.m-hero-promo-l1 {
  color: #fff; font-size: 13px; font-weight: 800; line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5); white-space: nowrap;
}
.m-hero-promo-l1 .p-yen { font-size: 12px; font-weight: 700; }
.m-hero-promo-l1 .p-big { font-size: 22px; font-weight: 900; color: #FFD54F; letter-spacing: -0.5px; }
.m-hero-promo-l2 {
  color: #fff; font-size: 13px; font-weight: 700; line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5); white-space: nowrap; margin-top: 4px;
}
.m-hero-promo-l2 .p-tag { color: #FFD54F; font-weight: 900; }
.m-hero-promo-l2 .p-yen { font-size: 10px; font-weight: 700; color: #FFD54F; }
.m-hero-promo-l2 .p-val { font-size: 16px; font-weight: 900; color: #FFD54F; }
.m-hero-promo-cta {
  position: absolute; bottom: 10px; right: 12px;
  display: inline-flex; align-items: center; gap: 3px;
  padding: 6px 16px; border-radius: 14px; border: none;
  background: linear-gradient(135deg, #FF6B35, #E8511A);
  color: #fff; font-size: 10px; font-weight: 700; cursor: pointer;
  box-shadow: 0 2px 10px rgba(232,81,26,0.5); transition: all 0.15s; z-index: 4;
}
.m-hero-promo-cta:active { filter: brightness(0.9); transform: scale(0.96); }
.m-hero-info { padding: 8px 12px 10px; }
.m-hero-brand-row { display: flex; align-items: center; gap: 8px; }
.m-hero-brand-av {
  width: 26px; height: 26px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; border: 2px solid #F0F0F0;
}
.m-hero-brand-text { flex: 1; }
.m-hero-brand-name { font-size: 12px; font-weight: 800; color: #1A1A1A; }
.m-hero-brand-sub { font-size: 10px; color: #333; margin-top: 1px; font-weight: 500; }
.m-hero-details { margin-top: 6px; font-size: 10px; color: #666; line-height: 1.6; }
.m-hero-details div { display: flex; align-items: center; gap: 2px; }
.m-hero-details .dicon { font-size: 11px; margin-right: 2px; flex-shrink: 0; }
.m-hero-progress {
  margin-top: 6px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; color: #999;
}
.m-hero-bar {
  flex: 1; height: 5px; border-radius: 2.5px;
  background: #EEEEEE; overflow: hidden; margin: 0 8px;
}
.m-hero-bar-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, #FFAB76, #E8511A); transition: width 0.6s ease;
}
.m-hero-people {
  display: flex; align-items: center; gap: 6px;
  margin-top: 6px; padding-top: 6px; border-top: 1px solid #F5F5F5;
}
.m-hero-avatars { display: flex; }
.m-hero-avatars img {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid #fff; margin-left: -4px; object-fit: cover;
}
.m-hero-avatars img:first-child { margin-left: 0; }
.m-hero-people-text { font-size: 10px; color: #BBB; }

/* --- 双列瀑布流商品网格 --- */
.m-grid { column-count: 2; column-gap: 10px; padding: 12px 16px 0; }
.m-card {
  background: #FFFFFF; border-radius: 12px;
  overflow: hidden; display: inline-block; width: 100%;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none; margin-bottom: 10px; break-inside: avoid;
}
.m-card:active { transform: scale(0.97); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.m-card-img {
  position: relative; width: 100%;
  background: #FFFFFF; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.m-card-img img { max-width: 90%; max-height: 90%; object-fit: contain; transition: transform 0.3s; }
.m-card:active .m-card-img img { transform: scale(1.03); }
.m-card-tag {
  position: absolute; top: 8px; left: 8px;
  padding: 3px 8px; border-radius: 6px;
  font-size: 10px; font-weight: 700; color: #fff; z-index: 2;
}
.m-card-tag.tag-new { background: linear-gradient(135deg, #FF6B35, #E8511A); }
.m-card-tag.tag-hot { background: linear-gradient(135deg, #FF4757, #FF3B30); }
.m-card-tag.tag-sale { background: linear-gradient(135deg, #26D0A3, #00A66E); }
.m-card-tag.tag-guess { background: linear-gradient(135deg, #FF8534, #E8511A); }
.m-card-tag.tag-limit { background: linear-gradient(135deg, #A855F7, #7C3AED); }
.m-card-body { padding: 8px; }
.m-card-title {
  font-size: 12px; font-weight: 600; color: #1A1A1A; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 32px;
}
.m-card-shop {
  display: flex; align-items: center; gap: 4px;
  font-size: 10px; color: #999; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.m-card-shop-logo {
  width: 14px; height: 14px; border-radius: 3px;
  flex-shrink: 0; object-fit: cover;
}
.m-card-price-row { display: flex; align-items: baseline; gap: 4px; margin-top: 5px; }
.m-card-price { font-size: 15px; font-weight: 900; color: #E8511A; letter-spacing: -0.5px; }
.m-card-price small { font-size: 10px; font-weight: 700; }
.m-card-orig { font-size: 10px; color: #CCC; text-decoration: line-through; }
.m-card-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.m-card-tags { display: flex; gap: 4px; flex-wrap: wrap; flex: 1; min-width: 0; }
.m-card-actions { display: flex; align-items: center; gap: 2px; margin-left: auto; flex-shrink: 0; }
.m-card-action-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 11px; color: #BBB; cursor: pointer;
  transition: all 0.2s; background: none; border: none; padding: 0;
}
.m-card-action-icon:active { transform: scale(0.85); color: #999; }
.m-card-action-icon.liked,
.m-card-action-icon.favorited { color: #FF3B30 !important; }
.m-card-action-icon.favorited i { font-weight: 900; }
.m-card-mini-tag { font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.m-card-mini-tag.mt-hot { color: #E8511A; background: #FFF3EC; }
.m-card-mini-tag.mt-new { color: #E8511A; background: #FFF3EC; }
.m-card-mini-tag.mt-sale { color: #00875A; background: #E8F5E9; }
.m-card-mini-tag.mt-guess { color: #E8511A; background: #FFF3EC; border: 1px solid #FFE0CC; }
.m-card-mini-tag.mt-limit { color: #7C3AED; background: #F3E8FF; }
.m-card-buy {
  display: inline-flex; align-items: center; gap: 2px;
  font-size: 9px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #FF6B35, #E8511A);
  padding: 4px 8px; border-radius: 8px;
  cursor: pointer; white-space: nowrap;
  transition: all 0.15s; border: none; flex-shrink: 0;
}
.m-card-buy:active { filter: brightness(0.9); transform: scale(0.95); }

/* --- 穿插联名活动卡片 --- */
.m-collab-card {
  column-span: all; border-radius: 12px; overflow: hidden;
  cursor: pointer; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.15s; margin-bottom: 10px;
}
.m-collab-card:active { transform: scale(0.99); }
.m-collab-inner { display: flex; align-items: stretch; min-height: 130px; position: relative; }
.m-collab-avatar { width: 38%; flex-shrink: 0; position: relative; overflow: hidden; }
.m-collab-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.m-collab-avatar::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(to left, var(--collab-bg, #1A1A2E), transparent);
}
.m-collab-content {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 18px 20px 18px 0; position: relative; z-index: 2;
}
.m-collab-title {
  font-size: 20px; font-weight: 900; color: #fff; letter-spacing: 1.5px;
  text-transform: uppercase; line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.m-collab-title .collab-x { font-weight: 400; opacity: 0.6; margin: 0 4px; font-size: 16px; }
.m-collab-sub { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 6px; font-weight: 500; }
.m-collab-cta {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 12px; padding: 7px 18px;
  background: rgba(255,255,255,0.95); color: #1A1A1A;
  border-radius: 18px; border: none; font-size: 12px; font-weight: 700;
  cursor: pointer; align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: all 0.15s;
}
.m-collab-cta:active { transform: scale(0.96); background: #fff; }
.m-collab-badge {
  position: absolute; top: 10px; right: 12px;
  padding: 3px 10px; border-radius: 12px;
  font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12); letter-spacing: 0.5px; z-index: 3;
}
.m-collab-card.text-only .m-collab-content { padding: 22px 20px; text-align: center; align-items: center; }
.m-collab-card.text-only .m-collab-title { font-size: 22px; letter-spacing: 2px; }

/* --- 底部横幅 --- */
.m-banner {
  margin: 16px 16px 0; border-radius: 12px;
  background: #fff; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  cursor: pointer; position: relative;
}
.m-banner:active { transform: scale(0.99); }
.m-banner-img { width: 100%; height: 128px; object-fit: cover; background: linear-gradient(135deg, #F0EAE2, #E8DDD2); }
.m-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: center; padding: 20px 16px;
}
.m-banner-collab {
  font-size: 20px; font-weight: 900; color: #fff;
  text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.m-banner-sub { font-size: 14px; color: rgba(255,255,255,0.9); margin-top: 6px; }
.m-banner-cta {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 10px; padding: 7px 16px;
  background: rgba(255,255,255,0.9); color: #1A1A1A;
  border-radius: 16px; border: none; font-size: 12px; font-weight: 700;
  cursor: pointer; align-self: flex-start; backdrop-filter: blur(4px);
}
.m-banner-cta:active { background: #fff; }

/* --- 骨架屏 --- */
@keyframes m-sk-shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}
.m-skeleton [class^="m-sk-"] {
  background: #eee;
  background-image: linear-gradient(90deg, #eee 0px, #f5f5f5 40px, #eee 80px);
  background-size: 200px 100%;
  animation: m-sk-shimmer 1.2s linear infinite;
}
.m-sk-hero {
  margin: 12px 16px 0; border-radius: 14px;
  background: #fff; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.m-sk-hero-img {
  width: 100%; height: 200px; border-radius: 12px;
}
.m-sk-hero-info {
  padding: 12px 16px; display: flex; flex-direction: column; gap: 10px;
}
.m-sk-line {
  height: 12px; border-radius: 6px; background: #eee;
  background-image: linear-gradient(90deg, #eee 0px, #f5f5f5 40px, #eee 80px);
  background-size: 200px 100%; animation: m-sk-shimmer 1.2s linear infinite;
}
.m-sk-grid {
  column-count: 2; column-gap: 10px; padding: 12px 16px 0;
}
.m-sk-card {
  break-inside: avoid; margin-bottom: 10px;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.m-sk-card-img {
  width: 100%; height: 145px;
}
.m-sk-card-body {
  padding: 8px; display: flex; flex-direction: column; gap: 6px;
}
.m-sk-card-body .m-sk-line { height: 10px; }
.m-sk-card-body .m-sk-line:last-child { width: 50%; }

/* --- 加载更多 --- */
.m-load-more {
  display: block; width: 100%;
  text-align: center; padding: 24px 0 16px;
  font-size: 13px; color: #E8511A; font-weight: 600; cursor: pointer;
  background: none; border: none; font-family: inherit;
}
.m-load-more:active { opacity: 0.6; }

/* --- 卡片入场动画 --- */
.mfc-enter {
  opacity: 0; transform: translateY(20px);
  animation: mcSlideUp 0.4s ease-out forwards;
}
@keyframes mcSlideUp { to { opacity: 1; transform: translateY(0); } }

/* --- 空状态 --- */
.shop-empty {
  text-align: center; padding: 60px 20px;
}
.shop-empty-icon { font-size: 48px; margin-bottom: 12px; }
.shop-empty-text { font-size: 14px; color: #999; }
.shop-empty-sub { font-size: 12px; color: #bbb; margin-top: 6px; }
.shop-empty-link {
  display: inline-block; margin-top: 14px;
  padding: 8px 20px; border-radius: 20px;
  background: #E8511A; color: #fff; font-size: 13px; font-weight: 600;
  text-decoration: none;
}
