
/* ========================================
   🔴 暗红 + 纯白 · 极简高对比度主题 v19
   设计语言：极深暗红底 + 纯白文字 + 鲜红点缀
   ======================================== */

/* ===== CSS 变量 ===== */
:root {
  --bg-primary: #1a0000;
  --bg-secondary: #110000;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --accent-gold: #c9a84c;
  --accent-gold-light: #e8c97a;
  --accent-red: #e53935;
  --accent-red-deep: #b71c1c;
  --accent-silver: rgba(255,255,255,0.80);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.70);
  --text-muted: rgba(255,255,255,0.40);
  --border-subtle: rgba(255,255,255,0.10);
  --border-red: rgba(229,57,53,0.35);
  --border-gold: rgba(201,168,76,0.30);
  --glow-red: rgba(229,57,53,0.15);
  --glow-gold: rgba(201,168,76,0.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.60);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.80);
  --radius-card: 16px;
  --radius-btn: 10px;
  --blur-glass: blur(20px) saturate(180%);
}

/* ===== 全局背景 ===== */
body {
  background: #f5ede3 !important;
  background-attachment: scroll !important;
  min-height: 100vh;
  color: #333 !important;
}
body::before { display: none; }

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg,#cc0000,#e60000,#ff1a1a) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  border-radius: 0 !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25) !important;
  transition: background 0.35s, box-shadow 0.35s, top 0.3s !important;
}
header:not(.scrolled), .mobile-header:not(.scrolled) {
  background: linear-gradient(135deg,#cc0000,#e60000,#ff1a1a) !important;
  color: #fff !important;
  border-radius: 0 !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25) !important;
}
.header-top {
  background: rgba(26,0,0,0.70) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(229,57,53,0.15) !important;
}
.mobile-header {
  background: linear-gradient(135deg,#cc0000,#e60000,#ff1a1a) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  border-radius: 0 !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25) !important;
  transition: background 0.35s, box-shadow 0.35s, top 0.3s !important;
}

/* ===== 导航下拉 ===== */
.dropdown {
  background: rgba(20,0,0,0.97) !important;
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
  border: 1px solid var(--border-subtle) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px var(--border-gold) !important;
  border-radius: 14px !important;
}
.dropdown a { color: var(--text-secondary) !important; }
.dropdown a:hover {
  background: rgba(201,168,76,0.08) !important;
  color: var(--accent-gold-light) !important;
}
.dropdown-all { color: var(--text-primary) !important; }

/* ===== SECTION 背景 ===== */
.section {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

/* ===== 公告栏 ===== */
.promo-bar {
  background: linear-gradient(135deg,#cc0000,#e60000,#ff1a1a) !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  border-radius: 12px !important;
  margin: 6px 12px !important;
  box-shadow: 0 2px 10px rgba(150,0,0,0.25) !important;
  color: #fff !important;
}
.marquee-wrap {
  position: fixed !important;
  top: 8px !important;
  left: 12px !important;
  right: 12px !important;
  z-index: 1001 !important;
  background: linear-gradient(135deg,#cc0000,#e60000,#ff1a1a) !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 10px rgba(150,0,0,0.25) !important;
  transition: opacity 0.3s, height 0.3s, transform 0.3s !important;
}
.notice-bar {
  background: linear-gradient(135deg,#cc0000,#e60000,#ff1a1a) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(231,76,60,0.20) !important;
}
.notice-item { color: #fff !important; text-shadow: 0 1px 4px rgba(0,0,0,0.3) !important; }

/* ===== 热卖商品卡片 ===== */
.hot-grid {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  gap: 16px !important;
  padding-bottom: 12px !important;
  scrollbar-width: none !important;
}
.hot-grid::-webkit-scrollbar { display: none !important; }
.hot-card {
  min-width: 260px !important;
  flex-shrink: 0 !important;
  scroll-snap-align: start !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: var(--radius-card) !important;
  transition: none !important;
  position: relative;
  overflow: hidden;
}
.hot-card::before { display: none; }
.hot-card:hover {
  transform: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.hot-name { color: #1a1a1a !important; font-weight: 700 !important; }
.hot-cat { color: var(--text-muted) !important; }
.hot-body {
  background: transparent !important;
  color: var(--text-primary) !important;
}

/* ===== 广告轮播 ===== */
.ad-showcase { position: relative; z-index: 1; }
.ad-card {
  border-radius: 20px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5) !important;
  border: 1px solid var(--border-subtle) !important;
}
.ad-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.20) 50%, transparent 100%) !important;
}
.ad-cart-btn {
  background: rgba(201,168,76,0.15) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid var(--border-gold) !important;
  color: var(--accent-gold-light) !important;
  box-shadow: 0 0 20px var(--glow-gold) !important;
}
.ad-slider-arrow {
  background: rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid var(--border-subtle) !important;
  box-shadow: none !important;
}

/* ===== 限时抢购 ===== */
.flash-section { position: relative; z-index: 1; }
.flash-header {
  background: linear-gradient(135deg,#cc0000,#e60000,#ff1a1a) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255,100,100,0.30) !important;
  box-shadow: 0 2px 20px rgba(200,0,0,0.40) !important;
}
.flash-products {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--border-subtle) !important;
  border-top: none !important;
  border-radius: 0 0 16px 16px !important;
}
.flash-item {
  background: transparent !important;
  border-right: none !important;
  transition: none !important;
}
.flash-item:hover { background: transparent !important; }
.flash-name { color: var(--text-primary) !important; }
.flash-cd-block {
  background: rgba(183,28,28,0.30) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(229,57,53,0.40) !important;
  color: #ff8a80 !important;
}

/* ===== 全部商品卡片 ===== */
.products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
}
.product-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: var(--radius-card) !important;
  transition: none !important;
  position: relative;
  overflow: hidden;
}
.product-card::before { display: none; }
.product-card:hover {
  transform: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.product-name { color: #1a1a1a !important; font-weight: 700 !important; }
.product-cat { color: var(--text-muted) !important; }
.product-body {
  background: transparent !important;
  color: var(--text-primary) !important;
}

/* ===== 分类横幅 ===== */
.cat-tag {
  background: rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid var(--border-subtle) !important;
  color: var(--text-secondary) !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s !important;
}
.cat-tag:hover, .cat-tag.active {
  background: rgba(201,168,76,0.10) !important;
  border-color: var(--border-gold) !important;
  color: var(--accent-gold-light) !important;
}

/* ===== 标题区域 ===== */
.section-title h2 {
  color: #f5e6e6 !important;
  letter-spacing: 0.02em;
}
.section-title .title-line {
  background: linear-gradient(90deg, var(--accent-gold), transparent) !important;
  box-shadow: none !important;
}
.view-all {
  color: var(--text-secondary) !important;
  border: 1px solid var(--border-subtle) !important;
  background: transparent !important;
  backdrop-filter: blur(8px) !important;
  transition: border-color 0.2s, color 0.2s !important;
}
.view-all:hover {
  background: rgba(201,168,76,0.08) !important;
  border-color: var(--border-gold) !important;
  color: var(--accent-gold-light) !important;
}

/* ===== 底部导航栏 ===== */
.mobile-bottom-nav {
  background: rgba(255,255,255,0.88) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-top: 1px solid rgba(0,0,0,0.06) !important;
  box-shadow: 0 -1px 12px rgba(0,0,0,0.08) !important;
}
@media(max-width:768px){
  .mobile-bottom-nav { display: flex !important; }
}
@media(min-width:769px){
  .mobile-bottom-nav { display: none !important; }
}
.mobile-bottom-nav-inner {
  display: flex !important;
  width: 100% !important;
  height: 54px !important;
  align-items: center !important;
}

/* ===== FOOTER ===== */
footer {
  background: #f5f5f7 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-top: 1px solid rgba(0,0,0,0.08) !important;
  position: relative;
  z-index: 1;
}
.footer-col h4 { color: #ffffff !important; }
.footer-col a { color: rgba(255,255,255,0.65) !important; }
.footer-col a:hover { color: #c9a84c !important; }

/* ===== 按钮 ===== */
.add-cart-btn {
  background: linear-gradient(135deg, #c0392b, #e05252) !important;
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 5px 10px !important;
  font-size: 11px !important;
  border-radius: 16px !important;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s !important;
}
.add-cart-btn:hover {
  background: #e8c97a !important;
  box-shadow: none !important;
  transform: translateY(-1px) !important;
}
.flash-buy-btn {
  background: linear-gradient(90deg, #e74c3c, #c0392b) !important;
  backdrop-filter: none !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 0 0 0 rgba(231,76,60,0) !important;
  animation: btnFlash 0.8s ease-in-out infinite !important;
}
.cart-btn {
  background: linear-gradient(135deg, #c0392b, #e05252) !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  color: #fff !important;
  font-weight: 600 !important;
  border: none !important;
}

/* ===== 搜索框 ===== */
.search-box {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--border-subtle) !important;
  color: var(--text-primary) !important;
}
.search-box:focus-within {
  border-color: var(--border-gold) !important;
  box-shadow: 0 0 0 3px var(--glow-gold) !important;
}
.mobile-search-bar {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--border-subtle) !important;
}

/* ===== 分页 ===== */
.page-btn {
  background: transparent !important;
  backdrop-filter: none !important;
  border: 1px solid var(--border-subtle) !important;
  color: var(--text-secondary) !important;
  border-radius: 8px !important;
  transition: border-color 0.2s, color 0.2s !important;
}
.page-btn.active {
  background: rgba(201,168,76,0.15) !important;
  border-color: var(--border-gold) !important;
  color: var(--accent-gold-light) !important;
  box-shadow: 0 0 12px var(--glow-gold) !important;
}
.page-btn:hover {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: var(--text-primary) !important;
}

/* ===== 移动端分类抽屉 ===== */
.mobile-cat-panel {
  background: rgba(18,0,0,0.97) !important;
  backdrop-filter: var(--blur-glass) !important;
  -webkit-backdrop-filter: var(--blur-glass) !important;
  border-right: 1px solid var(--border-subtle) !important;
  box-shadow: 4px 0 32px rgba(0,0,0,0.6) !important;
}
.mobile-cat-header {
  background: linear-gradient(135deg,#cc0000,#e60000,#ff1a1a) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255,100,100,0.30) !important;
  box-shadow: 0 2px 20px rgba(200,0,0,0.40) !important;
}
.mobile-cat-list a {
  color: var(--text-secondary) !important;
  border-bottom: 1px solid var(--border-subtle) !important;
}
.mobile-cat-list a:hover, .mobile-cat-list a.active {
  background: rgba(201,168,76,0.08) !important;
  color: var(--accent-gold-light) !important;
}

/* ===== 价格文字 ===== */
.price, .hot-price, .product-price, .flash-price {
  color: var(--accent-gold-light) !important;
  font-weight: 600 !important;
}
.original-price, .old-price {
  color: var(--text-muted) !important;
  text-decoration: line-through !important;
}

/* ===== 徽章/标签 ===== */
.badge, .tag-hot, .tag-new {
  background: rgba(201,168,76,0.15) !important;
  border: 1px solid var(--border-gold) !important;
  color: var(--accent-gold-light) !important;
  backdrop-filter: blur(6px) !important;
}

/* ===== 卡片入场动画已移除 ===== */

/* ===== 移动端响应式 ===== */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .hot-grid {
    grid-template-columns: unset !important;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* ===== 底部支付方式区块 ===== */
.footer-pay {
  background: transparent !important;
  backdrop-filter: none !important;
  border-top: none !important;
  border-radius: 12px !important;
  padding: 6px 0 !important;
}

.footer-pay h4 { color: #ffffff !important; }
.footer-pay-col {
  background: transparent !important;
}
.pay-badge {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: rgba(255,255,255,0.65) !important;
  margin-bottom: 4px !important;
  transition: none !important;
}
.pay-badge:hover {
  background: rgba(255,255,255,0.85) !important;
  border-color: rgba(201,168,76,0.40) !important;
}
.pay-icon { color: #ffffff !important; }
.pay-badge span, .pay-badge .pay-name { color: rgba(255,255,255,0.65) !important; }
.pay-badge span, .pay-badge .pay-name, .pay-badge {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: rgba(255,255,255,0.65) !important;
  margin-bottom: 4px !important;
  transition: none !important;
}

/* ===== 版权栏 ===== */
.footer-copy, .footer-bottom, footer .copyright {
  background: #ebebed !important;
  color: #2d1a00 !important;
  border-top: 1px solid rgba(0,0,0,0.08) !important;
}

/* ===== 备案/版权文字黑色 ===== */
footer p, footer small,
footer .footer-bottom, footer .footer-copy,
footer [class*="copy"] {
  color: #2d1a00 !important;
}
footer .icp, footer .beian,
footer [class*="icp"], footer [class*="beian"],
.footer-bottom, .footer-bottom p, .footer-bottom span,
footer .copyright, footer .record {
  color: #c9a84c !important;
}

/* 备案链接金色（精准覆盖） */
footer .beian a, footer .icp a,
footer [class*="beian"] a, footer [class*="icp"] a,
.footer-bottom a {
  color: #c9a84c !important;
}

/* ===== Header 文字/图标适配毛玻璃 ===== */
header, header a, header .header-nav a,
header .header-logo, header .logo-text {
  color: #ffffff !important;
}
header a:hover { color: var(--accent-gold) !important; }
.header-top { color: rgba(255,255,255,0.60) !important; }


/* ===== 备案编号金色兜底 ===== */
footer a[href*="beian"], footer a[href*="miit"],
footer a[href*="icp"], footer .beian-link {
  color: #c9a84c !important;
  text-decoration: none !important;
}
footer a[href*="beian"]:hover, footer a[href*="miit"]:hover {
  color: var(--accent-gold-light) !important;
}

/* ===== Header 文字全黑 ===== */
header, header a, header .nav-link,
header .logo-text, header .logo-text span,
header .lang-btn, header .cart-btn,
header .dropdown-all, header .dropdown a {
  color: #f0dede !important;
}
header .nav-link:hover,
header .cart-btn:hover { color: var(--accent-gold) !important; }
header .arrow { color: #ffffff !important; }

/* ===== 搜索框常驻显示 ===== */
.search-box {
  display: flex !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: auto !important;
  max-width: 260px !important;
  background: rgba(100,0,0,0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(224,82,82,0.25) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.search-box input {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  outline: none !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  width: 180px !important;
  display: block !important;
}
.search-box input::placeholder {
  color: rgba(255,255,255,0.35) !important;
}
.search-box button {
  background: rgba(201,168,76,0.18) !important;
  border: none !important;
  border-left: 1px solid rgba(26,26,46,0.08) !important;
  color: #ffffff !important;
  padding: 8px 14px !important;
  cursor: pointer !important;
  font-size: 15px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s !important;
  flex-shrink: 0 !important;
}
.search-box button:hover {
  background: rgba(201,168,76,0.35) !important;
}
.search-box:focus-within {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 3px var(--glow-gold) !important;
}

/* ===== logo文字黑色 ===== */
.logo-text span { color: #ffffff !important; }
.logo-text span:last-child { color: rgba(255,255,255,0.50) !important; }

/* ===== lang-btn 黑色 ===== */
.lang-btn {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
}
.lang-btn:hover {
  background: rgba(201,168,76,0.15) !important;
  border-color: var(--border-gold) !important;
  color: var(--accent-gold) !important;
}


/* ===== 移动端内联搜索框 ===== */
.mobile-inline-search {
  display: flex !important;
  align-items: center !important;
  background: rgba(100,0,0,0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(224,82,82,0.25) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  flex-shrink: 1 !important;
  min-width: 0 !important;
}

.mobile-inline-search:focus-within {
  border-color: #c9a84c !important;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.20) !important;
}

.mobile-inline-search input {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  outline: none !important;
  padding: 7px 10px !important;
  font-size: 13px !important;
  width: 120px !important;
  min-width: 0 !important;
  display: block !important;
}

.mobile-inline-search input::placeholder {
  color: rgba(255,255,255,0.35) !important;
}

.mobile-inline-search button {
  background: rgba(201,168,76,0.18) !important;
  border: none !important;
  border-left: 1px solid rgba(26,26,46,0.08) !important;
  color: #ffffff !important;
  padding: 7px 10px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: background 0.2s !important;
}

.mobile-inline-search button:hover {
  background: rgba(201,168,76,0.35) !important;
}

/* 隐藏原来的点击展开搜索栏（已被内联搜索框取代） */
.mobile-search-bar {
  display: none !important;
}

/* 隐藏原来的搜索图标按钮 */
.mobile-search-btn {
  display: none !important;
}

/* ===== v19 兜底：footer 文字适配浅灰背景 ===== */
footer h4,
footer .footer-col h4,
footer .footer-pay-col h4,
footer .footer-pay h4 {
  color: #2d1a00 !important;
}

footer a,
footer .footer-col a,
footer .footer-col-links a {
  color: rgba(45,26,0,0.65) !important;
}

footer .pay-badge,
footer .pay-badge span,
footer .pay-badge .pay-name {
  color: rgba(45,26,0,0.65) !important;
}

/* ===== v19 兜底：全局文字白色 ===== */
body, body * {
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.70);
  --text-muted: rgba(255,255,255,0.40);
}

/* ===== 蛋黄主题：商品卡片空白修复 ===== */
.product-body,
.hot-body {
  background: transparent !important;
  color: var(--text-primary) !important;
}
.product-name,
.hot-name {
  color: #1a1a1a !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}
.product-cat,
.hot-cat,
.product-price-old,
.hot-price-old {
  color: var(--text-muted) !important;
}
.product-price,
.hot-price {
  color: var(--accent-red) !important;
}
/* 占位图背景跟随主题 */
.product-img-placeholder,
.hot-img-placeholder {
  background: transparent !important;
}
/* 商品卡片整体透明，无多余背景 */
.product-card,
.hot-card {
  background: transparent !important;
}
/* 分类标签 */
.product-tag,
.hot-tag {
  background: rgba(229,57,53,0.12) !important;
  color: var(--accent-red) !important;
}

/* ===== 底部导航按钮文字：毛玻璃亮色背景适配 ===== */
.mobile-bottom-nav .mobile-nav-item,
.mobile-bottom-nav .mobile-nav-item .nav-label {
  color: #b0b0b0 !important;
}
.mobile-bottom-nav .mobile-nav-item.active,
.mobile-bottom-nav .mobile-nav-item.active .nav-label {
  color: #8B1A1A !important;
}
.mobile-bottom-nav .mobile-nav-item .nav-icon {
  background: transparent !important;
  border-radius: 10px !important;
  width: 32px !important; height: 32px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  font-size: 0 !important;
}
.mobile-bottom-nav .mobile-nav-item .nav-icon svg {
  width: 20px !important; height: 20px !important;
  display: block !important;
}
.mobile-bottom-nav .mobile-nav-item.active .nav-icon {
  background: rgba(139,26,26,0.08) !important;
  box-shadow: none !important;
}

/* ===== 商品图片区域全透明（覆盖内联样式）===== */
.hot-img-placeholder,
.product-img-placeholder {
  background: transparent !important;
  background-color: transparent !important;
}
.hot-card .hot-img-placeholder,
.product-card .product-img-placeholder {
  background: transparent !important;
}


/* ===== v20 终极透明修复：卡片全透明 + 文字黑色 ===== */
.hot-card,
.product-card,
.hot-body,
.product-body,
.hot-img-placeholder,
.product-img-placeholder {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.hot-name,
.product-name,
.flash-name {
  color: #111111 !important;
  font-weight: 700 !important;
}
.hot-cat,
.product-cat {
  color: #666666 !important;
}
.hot-price-val,
.product-price,
.flash-price {
  color: #c0392b !important;
}
.flash-orig {
  color: #888888 !important;
}

.marquee-wrap { position:relative !important; top:auto !important; left:auto !important; right:auto !important; z-index:1 !important; margin:0 !important; }
