/* ============================================
   原扩商城 - 全站样式
   "赛博霓虹 + 电竞潮玩" 设计系统 V7
   深空墨蓝 + 电浆紫 + 霓虹青 + 霓虹粉
   ============================================ */

/* ============= 设计变量 ============= */
:root {
  --color-primary: #0A0E27;
  --color-primary-dark: #050818;
  --color-primary-soft: #131836;
  --color-primary-light: #06B6D4;
  --color-accent: #A855F7;
  --color-accent-dark: #9333EA;
  --color-gold: #A855F7;
  --color-hot: #EC4899;
  --color-text: #E2E8F0;
  --color-text-light: #94A3B8;
  --color-text-muted: #64748B;
  --color-bg: #0A0E27;
  --color-bg-soft: #131836;
  --color-bg-section: #0F1430;
  --color-bg-deep: #050818;
  --color-card: #1E2756;
  --color-border: rgba(168,85,247,0.25);
  --color-border-soft: rgba(168,85,247,0.10);
  --color-success: #10B981;
  --color-danger: #EF4444;
  --color-warning: #F59E0B;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.30);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.40);
  --shadow: 0 4px 12px rgba(0,0,0,0.45);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.50);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.60);
  --shadow-xl: 0 24px 56px rgba(0,0,0,0.70);
  --glow-purple: 0 0 20px rgba(168,85,247,0.45);
  --glow-cyan: 0 0 20px rgba(6,182,212,0.45);
  --glow-pink: 0 0 20px rgba(236,72,153,0.45);
  --gradient-warm: linear-gradient(135deg, #A855F7 0%, #06B6D4 100%);
  --gradient-soft: linear-gradient(180deg, #0A0E27 0%, #131836 100%);
  --gradient-dark: linear-gradient(135deg, #050818 0%, #0A0E27 100%);
  --gradient-gold: linear-gradient(135deg, #A855F7, #06B6D4);
  --gradient-accent: linear-gradient(135deg, #A855F7, #EC4899);
  --gradient-neon: linear-gradient(135deg, #A855F7, #06B6D4);
  --gradient-pink: linear-gradient(135deg, #EC4899, #A855F7);
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --max-width: 1200px;
  --max-width-wide: 1400px;
  --font-sans: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Source Han Sans CN", -apple-system, sans-serif;
  --font-serif: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Source Han Sans CN", -apple-system, sans-serif;
}

/* ============= 全局重置 ============= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(circle at 10% 0%, rgba(168,85,247,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(6,182,212,0.06) 0%, transparent 40%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: var(--color-text); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-accent); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-primary-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  color: var(--color-text);
}
input::placeholder, textarea::placeholder { color: var(--color-text-muted); }
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.18), var(--glow-purple);
}
textarea { resize: vertical; min-height: 100px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  text-shadow: 0 0 24px rgba(168,85,247,0.20);
}
h1 { font-size: 38px; }
h2 { font-size: 30px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; width: 100%; }
.container-wide { max-width: var(--max-width-wide); margin: 0 auto; padding: 0 20px; width: 100%; }
main { flex: 1; padding-bottom: 40px; }

/* ============================================
   顶条 V2 - 深色顶条 + 霓虹分隔线
   ============================================ */
.topbar {
  background: var(--color-primary-dark);
  color: rgba(226,232,240,0.80);
  font-size: 12.5px;
  padding: 9px 0;
  position: relative;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(168,85,247,0.30);
  box-shadow: 0 1px 12px rgba(168,85,247,0.10);
}
.topbar::after { display: none; }
.topbar a { color: rgba(226,232,240,0.80); }
.topbar a:hover { color: var(--color-accent); text-shadow: 0 0 12px rgba(168,85,247,0.60); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-info { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 4px; }
.topbar-links { display: flex; gap: 16px; }
.topbar-back-site { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border: 1px solid rgba(6,182,212,0.55); border-radius: 999px; color: #06B6D4 !important; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; transition: all 0.2s ease; }
.topbar-back-site:hover { background: linear-gradient(135deg,#06B6D4 0%,#A855F7 100%); color: #ffffff !important; border-color: transparent; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(6,182,212,0.45); }
.topbar-back-site svg { width: 12px; height: 12px; }
.topbar-right { display: flex; align-items: center; gap: 14px; }

/* ============================================
   主导航 V2 - 深色导航 + 霓虹激活态
   ============================================ */
.navbar {
  background: rgba(10,14,39,0.92);
  backdrop-filter: saturate(200%) blur(16px);
  -webkit-backdrop-filter: saturate(200%) blur(16px);
  box-shadow: 0 1px 0 var(--color-border-soft), 0 4px 24px rgba(0,0,0,0.40);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}
.navbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--color-text);
}
.brand:hover { color: var(--color-text); }
.brand img { height: 44px; width: auto; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text .name {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(168,85,247,0.50);
}
.brand-text .slogan {
  font-size: 10px;
  color: var(--color-primary-light);
  letter-spacing: 0.16em;
  margin-top: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============ 导航下拉分类 ============ */
.nav-list .has-dropdown {
  position: relative;
}
.nav-list .has-dropdown > a {
  cursor: pointer;
}
.nav-list .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), var(--glow-purple);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  list-style: none;
}
.nav-list .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-list .dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--color-text);
  white-space: nowrap;
  transition: all 0.15s;
}
.nav-list .dropdown-menu li a:hover {
  background: rgba(168,85,247,0.12);
  color: var(--color-accent);
}
.nav-list .dropdown-menu li a .cat-emoji {
  font-size: 15px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient-neon);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  border: 1px solid rgba(168,85,247,0.50);
  box-shadow: var(--glow-purple);
}
.brand-mark-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gradient-neon);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  border: 1px solid rgba(168,85,247,0.50);
  box-shadow: var(--glow-purple);
}

.navbar-center {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.nav-list {
  display: flex;
  gap: 2px;
  list-style: none;
  flex-shrink: 0;
}
.nav-list a {
  position: relative;
  display: block;
  padding: 10px 18px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.nav-list a:hover { background: rgba(168,85,247,0.12); color: var(--color-accent); }
.nav-list a.active {
  color: #ffffff;
  background: var(--gradient-neon);
  box-shadow: var(--glow-purple);
}
.nav-list a.hot::after {
  content: "HOT";
  position: absolute;
  top: 0;
  right: 2px;
  font-size: 9px;
  font-weight: 700;
  color: #ffffff;
  background: var(--color-hot);
  padding: 1px 5px;
  border-radius: var(--radius-xs) var(--radius-xs) var(--radius-xs) 0;
  letter-spacing: 0.5px;
  box-shadow: 0 0 8px rgba(236,72,153,0.60);
}

.nav-search {
  flex: 1;
  max-width: 360px;
  position: relative;
}
.nav-search input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  font-size: 13.5px;
  color: var(--color-text);
}
.nav-search input:focus {
  background: var(--color-primary-dark);
  border-color: var(--color-accent);
}
.nav-search::before {
  content: "🔍";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}
.nav-search .search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-neon);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--glow-purple);
}

.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-actions a, .nav-actions button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  position: relative;
  border: 1px solid transparent;
}
.nav-actions a:hover, .nav-actions button:hover {
  background: rgba(168,85,247,0.12);
  color: var(--color-accent);
  border-color: var(--color-border);
}
.cart-icon { position: relative; }
.cart-icon .cart-emoji { font-size: 18px; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-hot);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 0px;
  min-width: 16px;
  text-align: center;
  display: none;
  line-height: 1.4;
  box-shadow: 0 0 10px rgba(236,72,153,0.70);
}
.cart-count.active { display: block; }
.nav-user {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: rgba(168,85,247,0.10);
  border: 1px solid var(--color-border);
  font-weight: 500;
}
.nav-user:hover { background: rgba(168,85,247,0.18); color: var(--color-accent); }
.mobile-menu-btn { display: none; font-size: 22px; color: var(--color-text); padding: 6px 10px; }

/* 分类胶囊子导航 */
.category-strip {
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  overflow-x: auto;
}
.category-strip-inner {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  background: var(--color-card);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.5px;
  border: 1px solid var(--color-border);
}
.cat-pill:hover { background: rgba(168,85,247,0.12); color: var(--color-accent); border-color: rgba(168,85,247,0.50); }
.cat-pill.active {
  background: var(--gradient-neon);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--glow-purple);
}
.cat-pill .emoji { font-size: 15px; }

/* ============================================
   首页 Hero V2 - 深色英雄区 + 霓虹光晕背景
   ============================================ */
.hero {
  position: relative;
  background: var(--gradient-soft);
  padding: 56px 0 48px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(168,85,247,0.20) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: rgba(168,85,247,0.14);
  border: 1px solid rgba(168,85,247,0.40);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.hero-content h1 {
  font-size: 46px;
  line-height: 1.18;
  color: var(--color-text);
  margin-bottom: 18px;
  text-shadow: 0 0 32px rgba(168,85,247,0.40);
}
.hero-content h1 .accent {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content .lead {
  font-size: 17px;
  color: var(--color-text-light);
  margin-bottom: 28px;
  line-height: 1.75;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.hero-stats .stat .num {
  display: block;
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-stats .stat .label {
  display: block;
  font-size: 12.5px;
  color: var(--color-text-light);
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  height: 440px;
}
.hero-img-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--gradient-dark);
  box-shadow: var(--shadow-xl), var(--glow-purple);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 180px;
  color: #ffffff;
  border: 1px solid var(--color-border);
}
.hero-img-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(168,85,247,0.30), transparent 50%);
}
.hero-float-card {
  position: absolute;
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 16px rgba(168,85,247,0.20);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  border: 1px solid var(--color-border);
}
.hero-float-card .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-float-card .text .t1 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}
.hero-float-card .text .t2 {
  font-size: 11.5px;
  color: var(--color-text-light);
  margin-top: 2px;
}
.hero-float-card.fc-1 {
  top: 24px;
  left: -28px;
  animation: floatY 4s ease-in-out infinite;
}
.hero-float-card.fc-1 .icon { background: rgba(16,185,129,0.18); color: var(--color-success); }
.hero-float-card.fc-2 {
  bottom: 60px;
  right: -32px;
  animation: floatY 4.5s ease-in-out 0.5s infinite;
}
.hero-float-card.fc-2 .icon { background: rgba(168,85,247,0.20); color: var(--color-accent); }
.hero-float-card.fc-3 {
  bottom: 24px;
  left: 28px;
  animation: floatY 5s ease-in-out 1s infinite;
}
.hero-float-card.fc-3 .icon { background: rgba(6,182,212,0.18); color: var(--color-primary-light); }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   首页 Hero V3 - 全屏沉浸式
   ============================================ */
.hero-v3 {
  position: relative;
  min-height: 540px;
  background: var(--gradient-dark);
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-v3-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #050818 0%, #0A0E27 35%, #131836 65%, #1E2756 100%);
}
.hero-v3-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(168,85,247,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(6,182,212,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(236,72,153,0.14) 0%, transparent 40%);
}
.hero-v3-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 20px 56px;
}
.hero-v3-text .hero-v3-tag {
  display: inline-block;
  padding: 7px 20px;
  border-radius: var(--radius-sm);
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.45);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  box-shadow: 0 0 16px rgba(168,85,247,0.20);
}
.hero-v3-text h1 {
  font-size: 50px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 0 36px rgba(168,85,247,0.50);
}
.hero-v3-text h1 .hero-v3-accent {
  background: linear-gradient(135deg, #A855F7, #06B6D4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-v3-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(226,232,240,0.78);
  margin-bottom: 28px;
}
.hero-v3-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  background: var(--gradient-neon);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(168,85,247,0.45), var(--glow-purple);
  letter-spacing: 1px;
}
.btn-hero-primary:hover { background: linear-gradient(135deg, #9333EA, #0891B2); color: #ffffff; transform: translateY(-2px); box-shadow: 0 6px 32px rgba(168,85,247,0.65), var(--glow-purple); }
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1.5px solid rgba(6,182,212,0.55);
  color: var(--color-primary-light);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 1px;
}
.btn-hero-outline:hover { border-color: var(--color-primary-light); color: var(--color-primary-light); background: rgba(6,182,212,0.10); box-shadow: var(--glow-cyan); }
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: rgba(226,232,240,0.70);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-hero-ghost:hover { color: var(--color-accent); }

/* Hero V3 右侧展示卡 */
.hero-v3-showcase {
  position: relative;
  height: 360px;
}
.hero-v3-card {
  position: absolute;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 0 24px rgba(168,85,247,0.18);
  overflow: hidden;
  transition: transform 0.3s;
  border: 1px solid var(--color-border);
}
.hero-v3-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.60), var(--glow-purple); }
.hero-v3-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-v3-card .hero-emoji {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: var(--gradient-dark);
}
.hero-v3-card .hc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(5,8,24,0.88));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-v3-card .hc-name {
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
}
.hero-v3-card .hc-price {
  font-size: 16px;
  color: var(--color-hot);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(236,72,153,0.60);
}
.hero-v3-card.hc-1 {
  width: 200px;
  height: 260px;
  top: 0;
  left: 20px;
  z-index: 3;
  animation: floatY 4s ease-in-out infinite;
}
.hero-v3-card.hc-2 {
  width: 180px;
  height: 220px;
  top: 40px;
  right: 10px;
  z-index: 2;
  animation: floatY 4.5s ease-in-out 0.6s infinite;
}
.hero-v3-card.hc-3 {
  width: 160px;
  height: 180px;
  bottom: 0;
  left: 80px;
  z-index: 1;
  animation: floatY 5s ease-in-out 1.2s infinite;
}

/* Hero V3 底部统计条 */
.hero-v3-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 16px 40px;
  background: rgba(5,8,24,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(168,85,247,0.25);
}
.hero-v3-stats .hs {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.hero-v3-stats .hs-num {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-v3-stats .hs-label {
  font-size: 12px;
  color: rgba(226,232,240,0.62);
  margin-top: 4px;
}
.hero-v3-stats .hs-divider {
  width: 1px;
  background: rgba(168,85,247,0.22);
  align-self: stretch;
}

/* ============================================
   服务承诺条 V3
   ============================================ */
.service-bar-v3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -28px;
  position: relative;
  z-index: 5;
}
.sb3-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.sb3-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md), var(--glow-purple); border-color: rgba(168,85,247,0.50); }
.sb3-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(168,85,247,0.16);
  color: var(--color-accent);
  flex-shrink: 0;
  border: 1px solid rgba(168,85,247,0.30);
}
.sb3-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--color-text);
  line-height: 1.3;
}
.sb3-item span {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 2px;
  display: block;
}

/* ============================================
   商品卡 V4 - 深色卡片 + 霓虹边框 + 霓虹粉价格
   ============================================ */
.pcard {
  display: block;
  background: var(--color-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
  overflow: hidden;
  transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  color: inherit;
}
.pcard:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.50), 0 0 24px rgba(168,85,247,0.30);
  transform: translateY(-3px);
  border-color: rgba(168,85,247,0.55);
}
.pcard-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-section);
}
.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.05); }
.pcard-img .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.5px;
}
.pcard-img .badge.hot { background: var(--color-hot); color: #ffffff; box-shadow: 0 0 12px rgba(236,72,153,0.70); }
.pcard-img .badge.new { background: var(--gradient-neon); color: #ffffff; box-shadow: 0 0 12px rgba(168,85,247,0.60); }
.pcard-img .badge.eco { background: var(--color-accent-dark); color: #ffffff; }
.pcard-img .badge.fresh { background: var(--color-success); color: #ffffff; box-shadow: 0 0 12px rgba(16,185,129,0.60); }

.pcard-info { padding: 12px 14px; }
.pcard-name {
  font-size: 13px;
  line-height: 1.45;
  height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--color-text);
  margin-bottom: 6px;
  font-weight: 500;
}
.pcard-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.pcard-tags i {
  font-style: normal;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  background: rgba(168,85,247,0.12);
  color: var(--color-text-light);
  border: 1px solid var(--color-border-soft);
}
.pcard-tags i.off {
  background: rgba(239,68,68,0.14);
  color: var(--color-danger);
  font-weight: 600;
  border-color: rgba(239,68,68,0.30);
}

.pcard-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 7px;
}
.pcard-price strong {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-sans);
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.pcard-price s {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.pcard-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-light);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--color-border);
  margin-bottom: 12px;
}
.pcard-foot span:last-child { color: var(--color-primary-light); }

.pcard-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.btn-add {
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-primary-dark);
  color: var(--color-text);
  font-size: 11.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-add:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(168,85,247,0.12);
  box-shadow: var(--glow-purple);
}
.btn-buy {
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--gradient-accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(168,85,247,0.35);
}
.btn-buy:hover {
  box-shadow: 0 6px 20px rgba(236,72,153,0.50), var(--glow-pink);
  transform: translateY(-1px);
}

/* pcard 分类差异化风格 */
.pcard[data-style="women"] {
  border-left: 3px solid #06B6D4;
}
.pcard[data-style="women"]:hover { box-shadow: 0 12px 32px rgba(6,182,212,0.20), var(--glow-cyan); }
.pcard[data-style="women"] .pcard-price strong { color: #06B6D4; -webkit-text-fill-color: #06B6D4; }
.pcard[data-style="women"] .btn-buy { background: linear-gradient(135deg,#06B6D4,#0EA5E9); }
.pcard[data-style="women"] .btn-add:hover { border-color: #06B6D4; color: #06B6D4; }

.pcard[data-style="men"] {
  border-top: 3px solid #A855F7;
}
.pcard[data-style="men"]:hover { box-shadow: 0 12px 32px rgba(168,85,247,0.22), var(--glow-purple); }
.pcard[data-style="men"] .pcard-price strong { color: #A855F7; -webkit-text-fill-color: #A855F7; }
.pcard[data-style="men"] .btn-buy { background: linear-gradient(135deg,#A855F7,#7C3AED); }
.pcard[data-style="men"] .btn-add:hover { border-color: #A855F7; color: #A855F7; }

.pcard[data-style="pants"] {
  border-right: 3px solid #EC4899;
}
.pcard[data-style="pants"]:hover { box-shadow: 0 12px 32px rgba(236,72,153,0.22), var(--glow-pink); }
.pcard[data-style="pants"] .pcard-price strong { color: #EC4899; -webkit-text-fill-color: #EC4899; }
.pcard[data-style="pants"] .btn-buy { background: linear-gradient(135deg,#EC4899,#DB2777); }
.pcard[data-style="pants"] .btn-add:hover { border-color: #EC4899; color: #EC4899; }

.pcard[data-style="acc"] {
  border-bottom: 3px solid #10B981;
  background: linear-gradient(180deg,var(--color-card) 98%,rgba(16,185,129,0.10) 100%);
}
.pcard[data-style="acc"]:hover { box-shadow: 0 12px 32px rgba(16,185,129,0.20); }
.pcard[data-style="acc"] .pcard-price strong { color: #10B981; -webkit-text-fill-color: #10B981; }
.pcard[data-style="acc"] .btn-buy { background: linear-gradient(135deg,#10B981,#059669); }
.pcard[data-style="acc"] .btn-add:hover { border-color: #10B981; color: #10B981; }

/* ============================================
   通用区块
   ============================================ */
.section { padding: 56px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 16px;
}
.section-head .titles .eyebrow {
  display: inline-block;
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.section-head .titles h2 {
  font-size: 28px;
  color: var(--color-text);
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--font-sans);
}
.section-head .titles .sub {
  color: var(--color-text-light);
  font-size: 14px;
  margin-top: 6px;
}
.section-head .more {
  color: var(--color-text-light);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.section-head .more:hover { color: var(--color-accent); }

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
  border-image: var(--gradient-neon) 1;
}
.section-title h2 { font-size: 22px; }
.section-title h2 small { color: var(--color-text-light); font-size: 14px; font-weight: 400; margin-left: 8px; }
.section-title a { color: var(--color-text-light); font-size: 14px; }
.section-title a:hover { color: var(--color-accent); }

/* ============================================
   分类入口 V2 - 圆角卡 + 霓虹色块
   ============================================ */
.category-entries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-card {
  position: relative;
  display: block;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 28px 18px 24px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.25s;
  overflow: hidden;
  color: var(--color-text);
}
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cat-color, var(--color-accent));
  opacity: 0;
  transition: opacity 0.25s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md), var(--glow-purple); border-color: var(--cat-color, var(--color-accent)); color: var(--color-text); }
.cat-card:hover::before { opacity: 0.12; }
.cat-card .emoji {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--cat-color, var(--gradient-neon));
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(168,85,247,0.25);
}
.cat-card h3 {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.cat-card p {
  position: relative;
  z-index: 1;
  font-size: 12.5px;
  color: var(--color-text-light);
  line-height: 1.4;
}
.cat-card .count {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--cat-color, var(--color-accent));
  font-weight: 600;
}

/* ============================================
   商品卡 V2 - 更大图 + 霓虹徽章
   ============================================ */
.product-card {
  position: relative;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md), var(--glow-purple);
  transform: translateY(-3px);
  border-color: rgba(168,85,247,0.55);
}
.product-card .img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-section);
}
.product-card .img-wrap .img,
.product-card .img-wrap > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 110px;
  line-height: 1;
}
.product-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.5px;
}
.product-card .badge.hot { background: var(--color-hot); color: #ffffff; box-shadow: 0 0 12px rgba(236,72,153,0.70); }
.product-card .badge.new { background: var(--gradient-neon); color: #ffffff; box-shadow: 0 0 12px rgba(168,85,247,0.60); }
.product-card .badge.eco { background: var(--color-accent-dark); color: #ffffff; }
.product-card .badge.fresh { background: var(--color-success); color: #ffffff; box-shadow: 0 0 12px rgba(16,185,129,0.60); }
.product-card .fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10,14,39,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
  border: 1px solid var(--color-border);
}
.product-card .fav:hover { color: var(--color-hot); transform: scale(1.08); box-shadow: var(--glow-pink); }
.product-card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 {
  font-size: 14.5px;
  line-height: 1.4;
  margin-bottom: 6px;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0;
}
.product-card h3 a { color: var(--color-text); }
.product-card h3 a:hover { color: var(--color-accent); }
.product-card .tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  min-height: 18px;
}
.product-card .tag-mini {
  font-size: 10.5px;
  padding: 1px 6px;
  border-radius: var(--radius-xs);
  background: rgba(168,85,247,0.14);
  color: var(--color-text-light);
  border: 1px solid var(--color-border-soft);
}
.product-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.product-card .price {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.product-card .price .yen { font-size: 14px; font-weight: 500; }
.product-card .price .dec { font-size: 13px; font-weight: 500; }
.product-card .old-price { color: var(--color-text-muted); font-size: 12.5px; text-decoration: line-through; }
.product-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: auto;
  padding-top: 8px;
}
.product-card .meta .sales { display: inline-flex; align-items: center; gap: 3px; }
.product-card .meta .rating { display: inline-flex; align-items: center; gap: 2px; color: var(--color-warning); }
.product-card .actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--color-border);
}
.product-card .actions .btn { flex: 1; padding: 8px 0; font-size: 13px; }

/* 横向滚动商品条 */
.product-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}
.product-scroll::-webkit-scrollbar { height: 6px; }
.product-scroll::-webkit-scrollbar-track { background: var(--color-bg-soft); border-radius: 0px; }
.product-scroll::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 0px; }
.product-scroll .product-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
}

/* ============================================
   品牌故事区
   ============================================ */
.brand-story {
  background: var(--gradient-dark);
  color: #ffffff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.brand-story::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(168,85,247,0.22) 0%, transparent 60%);
  border-radius: 50%;
}
.brand-story::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.brand-story-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.brand-story-content .eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.20em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.brand-story-content h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.25;
  font-weight: 700;
  font-family: var(--font-sans);
  text-shadow: 0 0 32px rgba(168,85,247,0.40);
}
.brand-story-content p {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(226,232,240,0.78);
  margin-bottom: 14px;
}
.brand-story-content .signature {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-story-content .signature .line {
  width: 60px;
  height: 2px;
  background: var(--gradient-neon);
}
.brand-story-content .signature .info {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-accent);
  font-weight: 700;
  text-shadow: 0 0 16px rgba(168,85,247,0.50);
}
.brand-story-content .signature .info small {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(226,232,240,0.55);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.1em;
}
.brand-story-visual {
  position: relative;
  height: 380px;
}
.story-card {
  position: absolute;
  background: rgba(30,39,86,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168,85,247,0.30);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
}
.story-card .num {
  display: block;
  font-family: var(--font-sans);
  font-size: 44px;
  font-weight: 700;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.story-card .label {
  display: block;
  font-size: 13px;
  color: rgba(226,232,240,0.78);
  margin-top: 6px;
  line-height: 1.4;
}
.story-card.sc-1 { top: 20px; left: 0; }
.story-card.sc-2 { top: 20px; right: 0; }
.story-card.sc-3 { bottom: 20px; left: 30px; }
.story-card.sc-4 { bottom: 20px; right: 30px; }

/* ============================================
   资质保障区
   ============================================ */
.qual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.qual-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.25s;
}
.qual-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md), var(--glow-purple); border-color: rgba(168,85,247,0.50); }
.qual-card .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(168,85,247,0.16);
  color: var(--color-accent);
  font-size: 28px;
  margin-bottom: 14px;
  border: 1px solid rgba(168,85,247,0.30);
}
.qual-card h4 { font-size: 16px; margin-bottom: 8px; font-weight: 700; }
.qual-card p { font-size: 12.5px; color: var(--color-text-light); line-height: 1.6; }

/* ============================================
   页脚 V2 - 深色高级感 + 霓虹分隔
   ============================================ */
.footer {
  background: var(--color-bg-deep);
  color: rgba(226,232,240,0.72);
  padding: 56px 0 0;
  margin-top: 60px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-neon);
  box-shadow: 0 0 16px rgba(168,85,247,0.60);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(168,85,247,0.15);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand .logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .logo-row img { height: 44px; }
.footer-brand .logo-row .name {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(168,85,247,0.50);
}
.footer-brand .tagline {
  font-size: 13px;
  color: rgba(226,232,240,0.55);
  line-height: 1.7;
  max-width: 320px;
}
.footer-info-list { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.footer-info-list li { display: flex; align-items: flex-start; gap: 6px; color: rgba(226,232,240,0.65); }
.footer-info-list .ic { color: var(--color-accent); flex-shrink: 0; }

.footer h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gradient-neon);
  border-radius: var(--radius-xs);
  box-shadow: 0 0 8px rgba(168,85,247,0.60);
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-list a {
  color: rgba(226,232,240,0.62);
  font-size: 13px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-list a:hover { color: var(--color-accent); transform: translateX(3px); text-shadow: 0 0 12px rgba(168,85,247,0.50); }

.footer-mid {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(168,85,247,0.15);
}
.footer-cert {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-cert .cert-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.20);
  font-size: 12px;
  color: rgba(226,232,240,0.78);
}
.footer-cert .cert-chip .ic { color: var(--color-accent); }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(168,85,247,0.10);
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(226,232,240,0.78);
  font-size: 16px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gradient-neon); color: #ffffff; transform: translateY(-2px); box-shadow: var(--glow-purple); }

.footer-bottom {
  padding: 20px 0 24px;
  text-align: center;
  color: rgba(226,232,240,0.45);
  font-size: 12.5px;
  line-height: 1.9;
}
.footer-bottom a { color: rgba(226,232,240,0.6); }
.footer-bottom a:hover { color: var(--color-accent); }
.footer-bottom .copyright { margin-bottom: 6px; }
.footer-bottom .links { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.footer-bottom .links .sep { color: rgba(226,232,240,0.25); }
.beian { display: inline-flex; align-items: center; gap: 4px; }
.beian img { width: 14px; height: 14px; display: inline-block; vertical-align: -2px; }

/* ============================================
   按钮 - 霓虹渐变 + 光晕
   ============================================ */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--gradient-neon);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(168,85,247,0.35), var(--glow-purple);
}
.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(168,85,247,0.55), var(--glow-purple);
}
.btn-accent {
  background: var(--gradient-accent);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(236,72,153,0.35), var(--glow-pink);
}
.btn-accent:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(236,72,153,0.55), var(--glow-pink);
  background: linear-gradient(135deg, #EC4899, #A855F7);
}
.btn-outline {
  background: var(--color-primary-dark);
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline:hover {
  background: rgba(168,85,247,0.12);
  color: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: var(--glow-purple);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  background: rgba(168,85,247,0.10);
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-block { display: block; width: 100%; }
.btn-danger { background: var(--color-danger); color: #ffffff; }
.btn-danger:hover { background: #DC2626; color: #ffffff; box-shadow: 0 0 20px rgba(239,68,68,0.45); }

/* ============================================
   卡片 / 栅格 / 列表
   ============================================ */
.card {
  background: var(--color-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.2s;
}
.card:hover { box-shadow: var(--shadow-md), var(--glow-purple); transform: translateY(-2px); }
.card-body { padding: 20px; }
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--color-bg-section);
}
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* 标签 / 徽章 */
.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  font-size: 12px;
  background: rgba(168,85,247,0.12);
  color: var(--color-text-light);
  margin-right: 4px;
  border: 1px solid var(--color-border-soft);
}
.tag-primary { background: rgba(168,85,247,0.18); color: var(--color-accent); }
.tag-accent { background: rgba(236,72,153,0.16); color: var(--color-hot); }
.tag-danger { background: rgba(239,68,68,0.14); color: var(--color-danger); }
.tag-success { background: rgba(16,185,129,0.14); color: var(--color-success); }
.tag-info { background: rgba(6,182,212,0.14); color: var(--color-primary-light); }
.tag-warn { background: rgba(245,158,11,0.16); color: var(--color-warning); }

/* 面包屑 */
.breadcrumb {
  background: var(--color-bg-soft);
  padding: 12px 0;
  font-size: 13px;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border-soft);
}
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .sep { margin: 0 8px; color: var(--color-text-muted); }
.breadcrumb .current { color: var(--color-accent); }

/* 列表 / Tab */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--color-border); margin-bottom: 24px; flex-wrap: wrap; }
.tab {
  padding: 12px 20px;
  font-size: 15px;
  color: var(--color-text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-weight: 500;
  font-family: inherit;
}
.tab:hover { color: var(--color-accent); }
.tab.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(168,85,247,0.50);
}

/* 表单 */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--color-text); }
.form-group label .req { color: var(--color-danger); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions { display: flex; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--color-border); }
.form-help { font-size: 12px; color: var(--color-text-light); margin-top: 4px; }
.radio-group, .checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; }
.radio-item, .checkbox-item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  background: var(--color-primary-dark);
  color: var(--color-text);
}
.radio-item:hover, .checkbox-item:hover { border-color: var(--color-accent); color: var(--color-accent); }
.radio-item input, .checkbox-item input { width: auto; margin: 0; }
.radio-item.checked, .checkbox-item.checked {
  background: rgba(168,85,247,0.12);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* 模态框 */
.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(5,8,24,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-mask.active { display: flex; }
.modal {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 380px;
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-lg), var(--glow-purple);
  border: 1px solid var(--color-border);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-dark);
  border-radius: 50%;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--color-border);
}
.modal-close:hover { background: rgba(168,85,247,0.18); color: var(--color-accent); }
.modal-title { text-align: center; font-size: 18px; margin-bottom: 20px; font-family: var(--font-sans); color: var(--color-text); }
.modal-body { text-align: center; }
.modal-qr {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 8px;
  background: #ffffff;
}
.modal-qr img { width: 100%; height: 100%; object-fit: contain; }
.modal-amount { font-size: 16px; margin: 12px 0; color: var(--color-text); }
.modal-amount .price { background: var(--gradient-pink); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 24px; font-weight: 700; margin-left: 4px; }
.modal-tip { font-size: 13px; color: var(--color-text-light); margin: 12px 0 20px; line-height: 1.5; }
.modal-actions { display: flex; gap: 12px; }
.modal-actions .btn { flex: 1; }

/* Toast */
.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: rgba(30,39,86,0.96);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius);
  z-index: 10000;
  font-size: 14px;
  transition: transform 0.3s;
  box-shadow: var(--shadow-lg), 0 0 16px rgba(168,85,247,0.30);
  max-width: 90%;
  border: 1px solid var(--color-border);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: rgba(16,185,129,0.95); border-color: var(--color-success); }
.toast.error { background: rgba(239,68,68,0.95); border-color: var(--color-danger); }
.toast.warn { background: rgba(245,158,11,0.95); border-color: var(--color-warning); }

/* 工具类 */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--color-accent); }
.text-accent { color: var(--color-hot); }
.text-danger { color: var(--color-danger); }
.text-light { color: var(--color-text-light); }
.text-sm { font-size: 13px; }
.text-lg { font-size: 18px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 8px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.hidden { display: none !important; }
.divider { height: 1px; background: var(--color-border); margin: 16px 0; }
.placeholder-img {
  width: 100%;
  height: 100%;
  background: var(--color-bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 13px;
}

/* 分页 */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 32px; }
.pagination a, .pagination span {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-card);
  transition: all 0.2s;
}
.pagination a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(168,85,247,0.12);
  box-shadow: var(--glow-purple);
}
.pagination .active {
  background: var(--gradient-neon);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--glow-purple);
}
.pagination .disabled { color: var(--color-text-muted); pointer-events: none; background: var(--color-bg-soft); }

/* ============================================
   登录注册 V2 - 左侧品牌 + 右侧表单
   ============================================ */
.auth-page { min-height: calc(100vh - 80px); display: flex; }
.auth-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  width: 100%;
  min-height: 720px;
}
.auth-brand {
  position: relative;
  background: var(--gradient-dark);
  color: #ffffff;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.auth-brand::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(168,85,247,0.28) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.auth-brand::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.22) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.auth-brand .top { position: relative; z-index: 1; }
.auth-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}
.auth-brand .brand-row img { height: 52px; }
.auth-brand .brand-row .name {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(168,85,247,0.60);
}
.auth-brand .brand-row .slogan {
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.20em;
  margin-top: 4px;
  text-transform: uppercase;
}
.auth-brand h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 18px;
  max-width: 460px;
  text-shadow: 0 0 32px rgba(168,85,247,0.40);
}
.auth-brand .lead {
  font-size: 15.5px;
  color: rgba(226,232,240,0.78);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 32px;
}
.auth-brand .features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.auth-brand .features .item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(226,232,240,0.85);
}
.auth-brand .features .item .dot {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: rgba(168,85,247,0.22);
  color: var(--color-accent);
  flex-shrink: 0;
  border: 1px solid rgba(168,85,247,0.40);
}
.auth-brand .bottom {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(168,85,247,0.18);
}
.auth-brand .bottom .stat .num {
  display: block;
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.auth-brand .bottom .stat .label {
  display: block;
  font-size: 12px;
  color: rgba(226,232,240,0.55);
  margin-top: 6px;
}

.auth-form-side {
  background: var(--color-bg);
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-form-wrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.auth-tabs {
  display: inline-flex;
  background: var(--color-primary-dark);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 32px;
  border: 1px solid var(--color-border);
}
.auth-tabs .tab-btn {
  padding: 9px 26px;
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  transition: all 0.2s;
  cursor: pointer;
}
.auth-tabs .tab-btn.active {
  background: var(--gradient-neon);
  color: #ffffff;
  box-shadow: var(--glow-purple);
  font-weight: 600;
}
.auth-form-title {
  font-size: 26px;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  color: var(--color-text);
}
.auth-form-sub {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 28px;
}
.auth-form .form-group label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}
.auth-form .form-group .input-wrap {
  position: relative;
}
.auth-form .form-group .input-wrap .ic {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 15px;
  pointer-events: none;
}
.auth-form .form-group input {
  padding-left: 40px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  font-size: 14.5px;
  color: var(--color-text);
}
.auth-form .form-group input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.18), var(--glow-purple);
}
.auth-form .form-group .input-wrap.captcha input {
  padding-right: 124px;
}
.auth-form .form-group .input-wrap.captcha .cap-img {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.auth-form .form-group .input-wrap.toggle input { padding-right: 44px; }
.auth-form .form-group .input-wrap .toggle-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 16px;
}
.auth-form .submit-row { margin-top: 24px; }
.auth-form .submit-row .btn { height: 48px; border-radius: var(--radius-md); font-size: 15px; }
.auth-form .row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin: 14px 0 4px;
}
.auth-form .row-between label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--color-text-light);
}
.auth-form .row-between a { color: var(--color-accent); }
.auth-form .row-between a:hover { color: var(--color-hot); }
.auth-form .agree {
  font-size: 12.5px;
  color: var(--color-text-light);
  margin-top: 14px;
  line-height: 1.6;
}
.auth-form .agree a { color: var(--color-accent); }
.auth-form .alt-entry {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--color-border);
  text-align: center;
}
.auth-form .alt-entry .text {
  font-size: 12.5px;
  color: var(--color-text-light);
  margin-bottom: 14px;
  position: relative;
}
.auth-form .alt-entry .text::before,
.auth-form .alt-entry .text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--color-border);
}
.auth-form .alt-entry .text::before { left: 0; }
.auth-form .alt-entry .text::after { right: 0; }
.auth-form .alt-entry .text span { background: var(--color-bg); padding: 0 10px; }
.auth-form .social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.auth-form .social-row .sb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  transition: all 0.2s;
  cursor: pointer;
}
.auth-form .social-row .sb:hover { transform: translateY(-2px); box-shadow: var(--shadow), var(--glow-purple); border-color: var(--color-accent); }
.auth-form .social-row .sb.wechat { color: #10B981; }
.auth-form .social-row .sb.qq { color: #06B6D4; }
.auth-form .social-row .sb.weibo { color: #EC4899; }

/* ============================================
   响应式
   ============================================ */
@media (max-width: 1200px) {
  .nav-list a { padding: 10px 12px; font-size: 14px; }
  .nav-search { max-width: 240px; }
}
@media (max-width: 1024px) {
  .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-layout, .review-layout, .service-layout { grid-template-columns: 200px 1fr !important; }
  .news-layout > aside:last-child, .review-layout > aside:last-child, .service-layout > aside:last-child { display: none; }
  .list-layout { grid-template-columns: 160px 1fr !important; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { height: 360px; }
  .hero-v3-content { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 60px; }
  .hero-v3-showcase { height: 280px; }
  .hero-v3-text h1 { font-size: 36px; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-brand { padding: 40px 32px; }
  .auth-form-side { padding: 40px 32px; }
  .brand-story-inner { grid-template-columns: 1fr; gap: 32px; }
  .category-entries { grid-template-columns: repeat(3, 1fr); }
  .qual-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .service-bar-v3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { line-height: 1.5; font-size: 14px; }
  h1 { font-size: 24px; }
  h2 { font-size: 19px; }
  h3 { font-size: 17px; }
  .hero { padding: 40px 0 32px; }
  .hero-content h1 { font-size: 28px; }
  .hero-content .lead { font-size: 14px; }
  .hero-visual { height: 260px; }
  .hero-v3 { min-height: auto; }
  .hero-v3-content { grid-template-columns: 1fr; gap: 20px; padding: 36px 16px 48px; }
  .hero-v3-text h1 { font-size: 26px; line-height: 1.2; }
  .hero-v3-desc { font-size: 13px; }
  .hero-v3-showcase { display: none; }
  .hero-v3-stats { padding: 12px 16px; }
  .hero-v3-stats .hs { padding: 0 14px; }
  .hero-v3-stats .hs-num { font-size: 18px; }
  .hero-float-card.fc-1 { left: 0; }
  .hero-float-card.fc-2 { right: 0; }
  .industry-entries { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-info, .topbar-links { gap: 8px; font-size: 12px; }
  .topbar-info span:nth-child(2), .topbar-info span:nth-child(3) { display: none; }
  .nav-list { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-list.mobile-open {
    display: flex;
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    background: var(--color-card);
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow-lg), var(--glow-purple);
    z-index: 99;
    border-top: 1px solid var(--color-border);
  }
  .nav-list.mobile-open a { padding: 12px 16px; }
  .nav-search { display: none; }
  .brand-text { display: none; }
  .brand-text .slogan { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .info-card { flex-direction: column; }
  .info-card img { width: 100%; height: 180px; }
  .section { padding: 28px 0; }
  .navbar-inner { height: 44px; gap: 10px; grid-template-columns: auto 1fr auto; padding: 0 12px; }
  .brand img { height: 32px; }
  .brand-mark, .brand-mark-lg { width: 32px; height: 32px; font-size: 16px; }
  .nav-actions a, .nav-actions button { padding: 6px 8px; font-size: 12px; min-height: 36px; }
  .nav-actions .nav-user { padding: 6px 10px; }
  .cart-count { top: 0; right: 0; }
  .news-layout, .review-layout, .service-layout { grid-template-columns: 1fr !important; }
  .news-layout > aside, .review-layout > aside, .service-layout > aside { display: block; }
  .list-layout { grid-template-columns: 1fr !important; }
  .list-layout > aside { margin-bottom: 16px; }
  .list-layout > aside .card { padding: 12px; }
  .admin-tabs { font-size: 12px; }
  .admin-tab { padding: 10px 12px; }
  .module-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .auth-brand .bottom { flex-wrap: wrap; }
  .auth-brand h2 { font-size: 26px; }
  .service-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .service-bar-v3 { grid-template-columns: repeat(2, 1fr); margin-top: -16px; }
  .sb3-item { padding: 12px 14px; }
  .sb3-icon { width: 36px; height: 36px; font-size: 18px; }
  .sb3-item strong { font-size: 13px; }
  .sb3-item span { font-size: 11px; }
  .service-item { border-right: none; border-bottom: 1px solid var(--color-border); padding: 10px 14px; }
  .service-item:nth-child(odd) { border-right: 1px solid var(--color-border); }
  .service-item:nth-last-child(-n+2) { border-bottom: none; }
  .category-entries { grid-template-columns: repeat(2, 1fr); }
  .category-entries.category-7 { grid-template-columns: repeat(2, 1fr); }
  .cat-card { padding: 18px 12px; }
  .cat-card .emoji { width: 48px; height: 48px; font-size: 24px; }
  .cat-card h3 { font-size: 14px; }
  .cat-card p { font-size: 11px; }
  .qual-grid { grid-template-columns: 1fr; }
  .brand-story { padding: 32px 0; }
  .brand-story-content h2 { font-size: 22px; }
  .brand-story-content p { font-size: 13px; }
  .story-card { padding: 16px 14px; }
  .story-card .num { font-size: 28px; }
  .story-card .label { font-size: 11px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .pcard-img { height: 160px; }
  .pcard-info { padding: 10px; }
  .pcard-name { font-size: 12px; height: 32px; line-height: 1.4; -webkit-line-clamp: 2; }
  .pcard-price strong { font-size: 16px; }
  .pcard-price s { font-size: 10px; }
  .pcard-tags i { font-size: 10px; padding: 1px 5px; }
  .pcard-foot { font-size: 11px; padding-bottom: 8px; margin-bottom: 8px; }
  .btn-add, .btn-buy { padding: 6px 4px; font-size: 11px; min-height: 32px; }
  .product-card .img-wrap { height: 160px; }
  .product-card-body { padding: 10px; }
  .product-card h3 { font-size: 12px; height: 32px; }
  .product-card .price { font-size: 16px; }
  .product-card .old-price { font-size: 11px; }
  .product-card .tag-mini { font-size: 10px; }
  .product-card .meta { font-size: 11px; }
  .product-card .actions .btn { min-height: 32px; font-size: 12px; padding: 6px 0; }
  .section-head .titles h2 { font-size: 20px; }
  .section-head .titles .eyebrow { font-size: 11px; }
  .section-head .titles .sub { font-size: 12px; }
  .cat-pill { padding: 6px 14px; font-size: 12px; }
  .container, .container-wide { padding: 0 12px; }
  .btn { padding: 8px 16px; font-size: 13px; }
  .btn-lg { padding: 12px 22px; font-size: 14px; }
  .topbar { font-size: 11px; padding: 6px 0; }
  .topbar-info { gap: 10px; }
  .topbar-links { gap: 10px; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .industry-entries { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .auth-form-side { padding: 28px 18px; }
  .auth-brand { padding: 28px 18px; }
  .footer-mid { flex-direction: column; align-items: flex-start; }
  .pcard-img { height: 140px; }
  .pcard-info { padding: 8px; }
  .pcard-name { font-size: 12px; }
  .pcard-price strong { font-size: 15px; }
  .navbar-inner { height: 44px; }
  .hero-v3-text h1 { font-size: 22px; }
  .brand-story-content h2 { font-size: 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   2026-07 赛博霓虹电竞潮玩主题修订
   ============================================ */
.auth-modal-open {
  overflow: hidden;
}
.navbar {
  background: rgba(10,14,39,0.94);
  box-shadow: 0 1px 0 rgba(168,85,247,0.20), 0 22px 44px rgba(0,0,0,0.40);
}
.brand-mark,
.brand-mark-lg {
  background: linear-gradient(135deg, #A855F7 0%, #06B6D4 100%);
}
.topbar {
  background: #050818;
}
.topbar-info {
  gap: 14px;
}
.topbar-kicker,
.topbar-member {
  color: rgba(226,232,240,0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.topbar-links {
  align-items: center;
}
.topbar-links a,
.topbar-inline-btn,
.topbar-auth-btn {
  color: rgba(226,232,240,0.84);
  font-size: 12px;
}
.topbar-inline-btn,
.topbar-auth-btn {
  background: transparent;
  border: none;
  padding: 0;
}
.topbar-auth-btn.strong {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(168,85,247,0.60);
}
.navbar-inner {
  height: 92px;
  gap: 28px;
}
.brand-text .meta {
  font-size: 11px;
  color: var(--color-primary-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand-text .name {
  color: #ffffff;
  font-size: 22px;
  text-shadow: 0 0 20px rgba(168,85,247,0.60);
}
.brand-text .slogan {
  color: var(--color-primary-light);
  font-size: 10px;
}
.nav-list {
  gap: 8px;
}
.nav-list a {
  padding: 11px 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-search {
  max-width: 320px;
}
.nav-search input {
  background: var(--color-primary-dark);
  border-color: var(--color-border);
  padding: 13px 48px 13px 16px;
  color: var(--color-text);
}
.search-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--gradient-neon);
  color: #ffffff;
  font-size: 15px;
  box-shadow: var(--glow-purple);
}
.nav-actions {
  gap: 10px;
}
.nav-actions a,
.nav-actions button {
  min-height: 44px;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  color: var(--color-text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-actions a:hover,
.nav-actions button:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: var(--glow-purple);
}
.cart-icon {
  padding: 0 16px;
}
.cart-icon .cart-emoji {
  font-size: 11px;
  letter-spacing: 0.16em;
}
.nav-auth-btn,
.nav-user {
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-user span {
  color: var(--color-text-light);
  font-size: 11px;
  letter-spacing: 0.18em;
}
.nav-user strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-text);
}
.nav-auth-btn.solid {
  background: var(--gradient-neon);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--glow-purple);
}
.nav-auth-btn.solid:hover {
  color: #ffffff;
  box-shadow: 0 0 24px rgba(168,85,247,0.65);
}
.mobile-menu-btn {
  padding: 0 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.cat-pill.active {
  background: var(--gradient-neon);
  border-color: transparent;
  box-shadow: var(--glow-purple);
}
.hero-v3 {
  min-height: 88vh;
}
.hero-v3-bg {
  background: linear-gradient(130deg, #050818 0%, #0A0E27 45%, #1E2756 100%);
}
.hero-v3-overlay {
  background:
    linear-gradient(115deg, rgba(168,85,247,0.08) 0%, transparent 48%),
    radial-gradient(circle at 18% 22%, rgba(168,85,247,0.28) 0%, transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(6,182,212,0.20) 0%, transparent 26%);
}
.hero-v3-content {
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: end;
  gap: 48px;
  padding: 86px 20px 72px;
}
.hero-v3-text {
  max-width: 720px;
}
.hero-v3-tag {
  padding: 10px 16px;
  background: rgba(168,85,247,0.14);
  border-color: rgba(168,85,247,0.45);
}
.hero-v3-text h1 {
  font-size: 74px;
  line-height: 0.96;
  max-width: 680px;
  text-shadow: 0 0 48px rgba(168,85,247,0.50);
}
.hero-v3-desc {
  max-width: 640px;
  font-size: 16px;
  color: rgba(226,232,240,0.78);
}
.hero-v4-editorial {
  display: grid;
  gap: 14px;
  margin-top: 42px;
  max-width: 560px;
}
.hero-v4-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(168,85,247,0.22);
}
.hero-v4-line span {
  font-size: 11px;
  color: rgba(226,232,240,0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-v4-line strong {
  font-size: 14px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 600;
}
.hero-v4-showcase {
  display: grid;
  gap: 14px;
  align-self: stretch;
}
.hero-v4-card,
.hero-v4-index {
  border: 1px solid rgba(168,85,247,0.22);
  background: rgba(30,39,86,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero-v4-card {
  padding: 26px 24px;
  display: grid;
  gap: 12px;
}
.hero-v4-card strong {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.15;
  font-family: var(--font-sans);
  text-shadow: 0 0 20px rgba(168,85,247,0.50);
}
.hero-v4-card p {
  color: rgba(226,232,240,0.68);
  font-size: 13px;
  line-height: 1.8;
}
.hero-v4-label {
  color: rgba(226,232,240,0.55);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-v4-card-main {
  min-height: 270px;
  align-content: end;
}
.hero-v4-card-sub {
  min-height: 180px;
}
.hero-v4-index {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(226,232,240,0.78);
  font-size: 18px;
  font-family: var(--font-sans);
}
.hero-v3-text .hero-v3-accent {
  background: linear-gradient(135deg, #A855F7 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-v3-stats {
  background: rgba(5,8,24,0.72);
  border-top: 1px solid rgba(168,85,247,0.25);
}
.hero-v3-card {
  border: 1px solid rgba(168,85,247,0.20);
}
.btn-hero-primary,
.btn-hero-outline,
.btn-hero-ghost {
  min-height: 50px;
  padding: 0 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
}
.tag-success {
  background: rgba(16,185,129,0.16);
  color: var(--color-success);
}
.tag-info {
  background: rgba(6,182,212,0.16);
  color: var(--color-primary-light);
}
.tag-warn {
  background: rgba(245,158,11,0.16);
  color: var(--color-warning);
}
.pcard[data-style],
.pcard[data-style="women"],
.pcard[data-style="men"],
.pcard[data-style="pants"],
.pcard[data-style="outerwear"],
.pcard[data-style="dresses"],
.pcard[data-style="shoes"],
.pcard[data-style="bags"],
.pcard[data-style="accessories"],
.pcard[data-style="acc"] {
  border-left: none;
  border-bottom: 1px solid var(--color-border);
}
.pcard {
  background: var(--color-card);
  border: 1px solid var(--color-border-soft);
}
.pcard:hover {
  transform: translateY(-8px);
  border-color: rgba(168,85,247,0.55);
}
.pcard-img {
  height: 280px;
  background: var(--color-bg-section);
}
.pcard-info {
  padding: 18px 18px 20px;
}
.pcard-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 10px;
  color: var(--color-text-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pcard-brand,
.pcard-index {
  white-space: nowrap;
}
.pcard-name {
  height: auto;
  min-height: 42px;
  font-size: 18px;
  line-height: 1.3;
  font-family: var(--font-sans);
  margin-bottom: 10px;
}
.pcard-summary {
  min-height: 42px;
  color: var(--color-text-light);
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.pcard-tags {
  margin-bottom: 14px;
}
.pcard-tags i {
  padding: 4px 8px;
  background: rgba(168,85,247,0.14);
  border: 1px solid var(--color-border-soft);
}
.pcard-price {
  margin-bottom: 10px;
}
.pcard-price strong {
  font-size: 30px;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pcard-foot {
  padding-bottom: 16px;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pcard-btns {
  gap: 10px;
}
.btn-add,
.btn-buy {
  min-height: 44px;
  padding: 0 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pcard[data-style]:hover,
.pcard[data-style="women"]:hover,
.pcard[data-style="men"]:hover,
.pcard[data-style="pants"]:hover,
.pcard[data-style="outerwear"]:hover,
.pcard[data-style="dresses"]:hover,
.pcard[data-style="shoes"]:hover,
.pcard[data-style="bags"]:hover,
.pcard[data-style="accessories"]:hover,
.pcard[data-style="acc"]:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.50), 0 0 28px rgba(168,85,247,0.30);
}
.pcard[data-style] .pcard-price strong,
.pcard[data-style="women"] .pcard-price strong,
.pcard[data-style="men"] .pcard-price strong,
.pcard[data-style="pants"] .pcard-price strong,
.pcard[data-style="outerwear"] .pcard-price strong,
.pcard[data-style="dresses"] .pcard-price strong,
.pcard[data-style="shoes"] .pcard-price strong,
.pcard[data-style="bags"] .pcard-price strong,
.pcard[data-style="accessories"] .pcard-price strong,
.pcard[data-style="acc"] .pcard-price strong {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pcard[data-style] .btn-buy,
.pcard[data-style="women"] .btn-buy,
.pcard[data-style="men"] .btn-buy,
.pcard[data-style="pants"] .btn-buy,
.pcard[data-style="outerwear"] .btn-buy,
.pcard[data-style="dresses"] .btn-buy,
.pcard[data-style="shoes"] .btn-buy,
.pcard[data-style="bags"] .btn-buy,
.pcard[data-style="accessories"] .btn-buy,
.pcard[data-style="acc"] .btn-buy {
  background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(236,72,153,0.40);
}
.pcard[data-style] .btn-add:hover,
.pcard[data-style="women"] .btn-add:hover,
.pcard[data-style="men"] .btn-add:hover,
.pcard[data-style="pants"] .btn-add:hover,
.pcard[data-style="outerwear"] .btn-add:hover,
.pcard[data-style="dresses"] .btn-add:hover,
.pcard[data-style="shoes"] .btn-add:hover,
.pcard[data-style="bags"] .btn-add:hover,
.pcard[data-style="accessories"] .btn-add:hover,
.pcard[data-style="acc"] .btn-add:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(168,85,247,0.14);
  box-shadow: var(--glow-purple);
}
.product-card {
  border: 1px solid var(--color-border);
  background: var(--color-card);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.50), 0 0 28px rgba(168,85,247,0.30);
  border-color: rgba(168,85,247,0.55);
}
.product-card .img-wrap {
  background: var(--color-bg-section);
}
.product-card-body {
  padding: 18px 18px 20px;
}
.product-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 10px;
  color: var(--color-text-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.product-card-summary {
  min-height: 40px;
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.product-card h3 {
  min-height: 48px;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.3;
}
.product-card .price-row {
  margin-bottom: 12px;
}
.product-card .price {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 28px;
}
.product-card .meta {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--color-border);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card .actions {
  gap: 10px;
}
.product-card .actions .btn {
  min-height: 44px;
  padding: 0 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer {
  padding: 0;
  background:
    linear-gradient(180deg, #050818 0%, #0A0E27 18%, #0A0E27 100%);
}
.footer::before {
  height: 1px;
  background: var(--gradient-neon);
  box-shadow: 0 0 16px rgba(168,85,247,0.60);
}
.footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding: 56px 0 42px;
  border-bottom: 1px solid rgba(168,85,247,0.18);
}
.footer-kicker {
  display: inline-flex;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 16px;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(168,85,247,0.50);
}
.footer-hero-copy h2 {
  color: #ffffff;
  font-size: 50px;
  line-height: 0.98;
  margin-bottom: 16px;
  text-shadow: 0 0 36px rgba(168,85,247,0.40);
}
.footer-hero-copy p {
  color: rgba(226,232,240,0.62);
  max-width: 640px;
  line-height: 1.9;
}
.footer-hero-meta {
  display: grid;
  gap: 14px;
}
.footer-meta-box {
  padding: 18px 20px;
  border: 1px solid rgba(168,85,247,0.25);
  background: rgba(168,85,247,0.06);
  border-radius: var(--radius-sm);
}
.footer-meta-box span {
  display: block;
  color: var(--color-accent);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.footer-meta-box strong {
  color: #E2E8F0;
  font-size: 18px;
  line-height: 1.5;
  font-family: var(--font-sans);
}
.footer-top {
  grid-template-columns: 1.5fr 0.9fr 0.9fr 0.9fr 1fr;
  gap: 28px;
  padding-top: 38px;
}
.footer-brand-copy {
  display: grid;
  gap: 6px;
}
.footer-brand-mini {
  color: rgba(226,232,240,0.42);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.policy-shell {
  display: grid;
  gap: 24px;
}
.policy-hero {
  padding: 32px 36px;
  border: 1px solid var(--color-border);
  background: linear-gradient(145deg, #050818 0%, #131836 62%, #1E2756 100%);
  color: #ffffff;
  box-shadow: var(--shadow-md), var(--glow-purple);
}
.policy-hero h1 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 12px;
  text-shadow: 0 0 32px rgba(168,85,247,0.40);
}
.policy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(168,85,247,0.30);
  background: rgba(168,85,247,0.10);
  color: rgba(226,232,240,0.78);
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(226,232,240,0.72);
  font-size: 13px;
  margin-top: 18px;
}
.policy-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.policy-nav {
  position: sticky;
  top: 96px;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  padding: 18px;
}
.policy-nav strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  margin-bottom: 12px;
}
.policy-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 14px;
  color: var(--color-text);
  transition: all 0.2s;
}
.policy-nav a:hover { color: var(--color-accent); }
.policy-nav a:last-child {
  border-bottom: none;
}
.policy-body {
  display: grid;
  gap: 18px;
}
.policy-card {
  border: 1px solid var(--color-border);
  background: var(--color-card);
  padding: 26px 28px;
}
.policy-card h2 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--color-text);
}
.policy-card p,
.policy-card li {
  color: var(--color-text-light);
  line-height: 1.85;
}
.policy-card p + p {
  margin-top: 12px;
}
.policy-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.policy-list li {
  position: relative;
  padding-left: 16px;
}
.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(168,85,247,0.60);
}
.policy-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 3px solid var(--color-accent);
  background: rgba(168,85,247,0.10);
  color: var(--color-text);
}
.policy-bands {
  display: grid;
  gap: 16px;
}
.policy-band {
  padding: 22px 24px;
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, var(--color-card) 0%, var(--color-primary-dark) 100%);
}
.policy-band h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--color-text);
}
.merchant-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 340px;
  gap: 24px;
  align-items: start;
}
.merchant-hero {
  padding: 34px 36px;
  background: linear-gradient(135deg, #050818 0%, #131836 58%, #1E2756 100%);
  color: #ffffff;
  border: 1px solid rgba(168,85,247,0.25);
  box-shadow: var(--shadow-md), var(--glow-purple);
}
.merchant-hero h1,
.merchant-hero h2 {
  color: #ffffff;
  text-shadow: 0 0 32px rgba(168,85,247,0.40);
}
.merchant-hero p {
  color: rgba(226,232,240,0.72);
}
.merchant-panel {
  border: 1px solid var(--color-border);
  background: var(--color-card);
  padding: 28px;
}
.merchant-panel h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--color-text);
}
.merchant-doc-grid,
.merchant-summary-list {
  display: grid;
  gap: 12px;
}
.merchant-doc-item {
  padding: 14px 16px;
  background: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.merchant-summary-list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  color: var(--color-text-light);
}
.merchant-summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(168,85,247,0.60);
}
.form-group {
  position: relative;
}
.form-group .field-note {
  display: block;
  margin-top: 6px;
  color: var(--color-text-muted);
  font-size: 12px;
}
.form-group .field-error {
  margin-top: 8px;
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #FCA5A5;
  background: rgba(239,68,68,0.12);
  border-left: 3px solid var(--color-danger);
}
.form-group input.is-error,
.form-group textarea.is-error,
.form-group select.is-error {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.18);
}
.merchant-success {
  text-align: center;
  padding: 44px 24px;
}
.merchant-success .success-mark {
  font-size: 48px;
  margin-bottom: 16px;
}
.auth-modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(5,8,24,0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1200;
}
.auth-modal-mask.active {
  display: flex;
}
.auth-modal-shell {
  position: relative;
  width: min(1120px, 100%);
  min-height: 620px;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  background: var(--color-card);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,0.60), var(--glow-purple);
  border: 1px solid var(--color-border);
}
.auth-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(168,85,247,0.30);
  background: rgba(168,85,247,0.12);
  color: #ffffff;
  font-size: 20px;
  z-index: 4;
  transition: all 0.2s;
}
.auth-modal-close:hover { background: rgba(168,85,247,0.25); box-shadow: var(--glow-purple); }
.auth-modal-side {
  padding: 52px 40px 40px;
  background: linear-gradient(145deg, #050818 0%, #0A0E27 45%, #131836 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.auth-modal-side::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(168,85,247,0.25) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.auth-modal-kicker {
  color: rgba(226,232,240,0.55);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.auth-modal-side h2 {
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 36px rgba(168,85,247,0.50);
}
.auth-modal-side p {
  color: rgba(226,232,240,0.72);
  line-height: 1.9;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.auth-modal-points {
  display: grid;
  gap: 14px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.auth-modal-points div {
  padding: 16px 18px;
  border: 1px solid rgba(168,85,247,0.20);
  background: rgba(168,85,247,0.06);
  border-radius: var(--radius-sm);
}
.auth-modal-points strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #ffffff;
}
.auth-modal-points span {
  color: rgba(226,232,240,0.62);
  font-size: 13px;
}
.auth-modal-main {
  padding: 52px 54px 44px;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
}
.auth-modal-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
}
.auth-modal-tab {
  min-width: 98px;
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-xs);
  transition: all 0.2s;
}
.auth-modal-tab:hover { color: var(--color-accent); }
.auth-modal-tab.active {
  background: var(--gradient-neon);
  color: #ffffff;
  box-shadow: var(--glow-purple);
}
.auth-modal-form {
  display: grid;
  gap: 18px;
}
.auth-modal-form[hidden] {
  display: none !important;
}
.auth-modal-intro h3 {
  font-size: 30px;
  margin-bottom: 6px;
  color: var(--color-text);
}
.auth-modal-intro p {
  color: var(--color-text-light);
}
.auth-modal-field {
  position: relative;
}
.auth-modal-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.auth-modal-field input {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  background: var(--color-primary-dark);
  color: var(--color-text);
  border-radius: var(--radius-sm);
}
.auth-modal-field input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.18), var(--glow-purple);
}
.auth-modal-field input.is-error {
  border-color: var(--color-danger);
  background: rgba(239,68,68,0.08);
}
.auth-modal-error {
  margin-top: 8px;
  padding: 8px 10px;
  font-size: 12px;
  color: #FCA5A5;
  background: rgba(239,68,68,0.12);
  border-left: 3px solid var(--color-danger);
  border-radius: var(--radius-xs);
}
.auth-modal-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-light);
  font-size: 13px;
  line-height: 1.8;
}
.auth-modal-check input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
}
.auth-modal-submit {
  min-height: 52px;
  background: var(--gradient-neon);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(168,85,247,0.40);
}
.auth-modal-submit:hover {
  box-shadow: 0 6px 24px rgba(168,85,247,0.60), var(--glow-purple);
  transform: translateY(-1px);
}
.auth-modal-submit.solid {
  background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
  box-shadow: 0 4px 16px rgba(236,72,153,0.40);
}
.auth-modal-note {
  margin-top: auto;
  padding-top: 28px;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .policy-grid,
  .merchant-shell {
    grid-template-columns: 1fr;
  }
  .policy-nav {
    position: static;
  }
  .hero-v3-content,
  .footer-hero,
  .auth-modal-shell {
    grid-template-columns: 1fr;
  }
  .hero-v4-showcase {
    grid-template-columns: 1fr 1fr;
  }
  .hero-v4-index {
    grid-column: 1 / -1;
  }
  .auth-modal-side {
    min-height: 280px;
  }
}
@media (max-width: 640px) {
  body { font-size: 13px; line-height: 1.5; }
  .policy-hero,
  .policy-card,
  .policy-band,
  .merchant-hero,
  .merchant-panel {
    padding: 22px 18px;
  }
  .policy-hero h1 {
    font-size: 26px;
  }
  .topbar-info {
    justify-content: center;
  }
  .topbar-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .navbar-inner {
    height: 44px;
    padding: 0 12px;
  }
  .brand-text .meta,
  .nav-search {
    display: none;
  }
  .nav-list a {
    font-size: 12px;
  }
  .hero-v3 {
    min-height: auto;
  }
  .hero-v3-content {
    gap: 22px;
    padding: 36px 16px 40px;
  }
  .hero-v3-text h1 {
    font-size: 26px;
  }
  .hero-v3-tag { padding: 7px 12px; font-size: 11px; }
  .hero-v3-desc { font-size: 13px; }
  .btn-hero-primary, .btn-hero-outline, .btn-hero-ghost { min-height: 42px; padding: 0 16px; font-size: 11px; }
  .hero-v4-line { flex-direction: column; align-items: flex-start; }
  .hero-v4-showcase { grid-template-columns: 1fr; }
  .pcard-img { height: 200px; }
  .pcard-info { padding: 10px; }
  .pcard-name { font-size: 12px; min-height: 32px; }
  .pcard-price strong { font-size: 16px; }
  .footer-hero-copy h2 { font-size: 30px; }
  .footer-top { grid-template-columns: 1fr; }
  .auth-modal-mask { padding: 12px; }
  .auth-modal-main, .auth-modal-side { padding: 28px 18px; }
  .auth-modal-side h2 { font-size: 28px; }
  .auth-modal-tab { min-width: 80px; min-height: 38px; padding: 0 12px; font-size: 11px; }
  .auth-modal-field input { min-height: 44px; }
  .auth-modal-submit { min-height: 44px; font-size: 11px; }
}

/* ============= 白色背景容器文字颜色覆盖 ============= */
/* 深色主题文字变量在白色背景上不可见，统一覆盖为深色 */
.list-aside-card,
.list-toolbar,
.product-card,
.merchants-filter,
.mfilter-pill,
.m-card,
.store-card,
.store-qual-section,
.hl-card,
.rich-specs-table,
.detail-merchant,
.detail-promises,
.do-btn,
.qty-btn,
.detail-btn-cart,
.av3-card,
.av3-form-card,
.av3-login-box,
.auth-modal {
  color: #1a1a1a;
}
.list-aside-card h3,
.m-card-title h3,
.product-card-body h3,
.hl-text h4,
.rs-value,
.dm-name,
.store-card h3,
.store-card h4,
.detail-title {
  color: #1a1a1a;
}
.list-toolbar .label,
.sort-btn,
.mfilter-pill,
.m-card-meta .item strong,
.product-card-topline,
.m-card-desc,
.m-card-foot .stats,
.m-card-meta .item,
.rs-label,
.dp-item,
.dm-meta,
.hl-text p,
.detail-promises .dp-item,
.qty-stock,
.store-card .sc-desc,
.store-card .sc-meta,
.rich-module-eyebrow,
.rich-empty,
.dt-btn,
.av3-lead,
.av3-tab,
.av3-label,
.av3-hint,
.av3-captcha-text,
.auth-modal p,
.auth-modal label {
  color: #666;
}
.product-card-summary,
.product-card .meta,
.m-card-meta .item {
  color: #666;
}
.product-card-topline,
.mfilter-pill .emoji + span {
  color: #888;
}
.price-row .old-price {
  color: #aaa;
}
.price-row .price {
  color: #c0392b;
}
