/* ============================================
   菲燕商贸 - 全站样式
   "自然大地色" 设计系统 V6
   燕麦白 · 橄榄绿 · 赤陶 · 奶咖
   ============================================ */

/* ============= 设计变量 ============= */
:root {
  --color-primary: #5C5A3A;
  --color-primary-dark: #3F3D26;
  --color-primary-soft: #EFE6D2;
  --color-primary-light: #7A7858;
  --color-accent: #B5651D;
  --color-accent-dark: #8F4E14;
  --color-gold: #A47864;
  --color-terracotta: #B5651D;
  --color-mocha: #A47864;
  --color-olive: #5C5A3A;
  --color-sand: #E8DAC0;
  --color-text: #2B2620;
  --color-text-light: #6B5F4F;
  --color-text-muted: #9C8E78;
  --color-bg: #F6F0E2;
  --color-bg-soft: #EFE6D2;
  --color-bg-section: #E8DAC0;
  --color-bg-deep: #2B2620;
  --color-card: #FFFDF8;
  --color-border: #DDD0B8;
  --color-border-soft: rgba(43,38,32,0.06);
  --color-success: #5C7A3A;
  --color-danger: #B5453A;
  --color-warning: #B5651D;
  --shadow-xs: 0 1px 2px rgba(43,38,32,0.04);
  --shadow-sm: 0 1px 3px rgba(43,38,32,0.06);
  --shadow: 0 4px 6px rgba(43,38,32,0.06);
  --shadow-md: 0 10px 15px rgba(43,38,32,0.07);
  --shadow-lg: 0 20px 25px rgba(43,38,32,0.08);
  --shadow-xl: 0 25px 50px rgba(43,38,32,0.10);
  --gradient-warm: linear-gradient(135deg, #5C5A3A 0%, #7A7858 100%);
  --gradient-soft: linear-gradient(180deg, #F6F0E2 0%, #EFE6D2 100%);
  --gradient-dark: linear-gradient(135deg, #2B2620 0%, #3F3D26 100%);
  --gradient-gold: linear-gradient(135deg, #A47864, #B5651D);
  --gradient-accent: linear-gradient(135deg, #5C5A3A, #3F3D26);
  --gradient-terracotta: linear-gradient(135deg, #B5651D, #C17A3A);
  --gradient-mocha: linear-gradient(135deg, #A47864, #8B5E3C);
  --radius-xs: 3px;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --max-width: 1200px;
  --max-width-wide: 1400px;
  --font-sans: "Inter", -apple-system, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  --font-serif: "Playfair Display", "Songti SC", "SimSun", Georgia, 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;
}
img { max-width: 100%; display: block; }
a { color: var(--color-text); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-primary); }
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: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  color: var(--color-text);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.10);
}
textarea { resize: vertical; min-height: 100px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}
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);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 8px 0;
  position: relative;
}
.topbar::after { display: none; }
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--color-accent); }
.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; }

/* ============================================
   主导航 V2 - 大气 搜索 + 分类胶囊
   ============================================ */
.navbar {
  background: rgba(254,253,248,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 20px rgba(27,67,50,0.04);
  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: 17px;
  font-weight: 600; font-family: var(--font-serif);
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
.brand-text .slogan {
  font-size: 11px;
  color: var(--color-text-light);
  letter-spacing: 0.18em;
  margin-top: 3px;
  text-transform: uppercase;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0px;
  background: var(--gradient-warm);
  color: white;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.brand-mark-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 0px;
  background: var(--gradient-warm);
  color: white;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.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 16px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  border-radius: 0px;
  transition: all 0.2s;
}
.nav-list a:hover { background: var(--color-primary-soft); color: var(--color-primary); }
.nav-list a.active {
  color: white;
  background: var(--gradient-accent);
  box-shadow: 0 4px 14px rgba(0,0,0,0.20);
}
.nav-list a.hot::after {
  content: "HOT";
  position: absolute;
  top: 0;
  right: 2px;
  font-size: 9px;
  font-weight: 700;
  color: white;
  background: var(--color-danger);
  padding: 1px 5px;
  border-radius: 4px 4px 4px 0;
  letter-spacing: 0.5px;
}

.nav-search {
  flex: 1;
  max-width: 360px;
  position: relative;
}
.nav-search input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border-radius: 0px;
  background: var(--color-bg-soft);
  border: 1px solid transparent;
  font-size: 13.5px;
}
.nav-search input:focus {
  background: white;
  border-color: var(--color-primary);
}
.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-accent);
  color: white;
  padding: 6px 16px;
  border-radius: 0px;
  font-size: 13px;
  font-weight: 600;
}

.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: 8px;
  transition: all 0.2s;
  position: relative;
}
.nav-actions a:hover, .nav-actions button:hover {
  background: var(--color-bg-soft);
  color: var(--color-primary);
}
.cart-icon { position: relative; }
.cart-icon .cart-emoji { font-size: 18px; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-primary-light);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 0px;
  min-width: 16px;
  text-align: center;
  display: none;
  line-height: 1.4;
}
.cart-count.active { display: block; }
.nav-user {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 0px;
  background: var(--color-bg-soft);
  font-weight: 500;
}
.nav-user:hover { background: var(--color-primary-soft); color: var(--color-primary); }
.mobile-menu-btn { display: none; font-size: 22px; color: var(--color-text); padding: 6px 10px; }

/* 分类胶囊子导航 */
.category-strip {
  background: white;
  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: 7px 18px;
  border-radius: 0px;
  background: var(--color-bg-soft);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
.cat-pill:hover { background: var(--color-primary-soft); color: var(--color-primary); }
.cat-pill {
  border: 1px solid var(--color-border);
  background: white;
}
.cat-pill:hover { border-color: var(--color-primary-soft); }
.cat-pill.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 3px 10px rgba(43,38,32,0.20);
}
.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(0,0,0,0.03) 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(0,0,0,0.05) 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: 0px;
  background: rgba(0,0,0,0.10);
  color: var(--color-primary);
  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;
}
.hero-content h1 .accent {
  background: var(--gradient-warm);
  -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-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  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-2xl);
  background: var(--gradient-warm);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 180px;
  color: white;
}
.hero-img-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.3), transparent 50%);
}
.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-float-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  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(92,122,58,0.14); 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(181,101,29,0.18); color: var(--color-accent-dark); }
.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(0,0,0,0.10); color: var(--color-primary); }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   首页 Hero V3 - 全屏沉浸式
   ============================================ */
.hero-v3 {
  position: relative;
  min-height: 520px;
  background: var(--gradient-dark);
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-v3-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3F3D26 0%, #5C5A3A 35%, #6B5F4F 65%, #8B6F4E 100%);
}
.hero-v3-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,0,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(181,101,29,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(164,120,100,0.16) 0%, transparent 42%);
}
.hero-v3-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 20px 48px;
}
.hero-v3-text .hero-v3-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 0px;
  background: rgba(181,101,29,0.16);
  border: 1px solid rgba(181,101,29,0.32);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.hero-v3-text h1 {
  font-size: 48px;
  line-height: 1.15;
  color: white;
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-weight: 600; font-family: var(--font-serif);
}
.hero-v3-text h1 .hero-v3-accent {
  background: linear-gradient(135deg, #C17A3A, #E8C9A0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-v3-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  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: 13px 30px;
  border-radius: var(--radius-md);
  background: var(--color-accent);
  color: #FFFDF8;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(181,101,29,0.35);
}
.btn-hero-primary:hover { background: #C97A33; color: #FFFDF8; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(181,101,29,0.45); }
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 0px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: white;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-hero-outline:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(181,101,29,0.10); }
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 0px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-hero-ghost:hover { color: white; }

/* Hero V3 右侧展示卡 */
.hero-v3-showcase {
  position: relative;
  height: 360px;
}
.hero-v3-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: transform 0.3s;
}
.hero-v3-card:hover { transform: translateY(-4px) scale(1.02); }
.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-warm);
}
.hero-v3-card .hc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-v3-card .hc-name {
  font-size: 13px;
  color: white;
  font-weight: 500;
}
.hero-v3-card .hc-price {
  font-size: 16px;
  color: var(--color-accent);
  font-weight: 700;
}
.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(43,38,32,0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.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: 600; font-family: var(--font-serif);
  color: var(--color-accent);
  line-height: 1;
}
.hero-v3-stats .hs-label {
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  margin-top: 4px;
}
.hero-v3-stats .hs-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  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: white;
  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); }
.sb3-icon {
  width: 44px;
  height: 44px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  flex-shrink: 0;
}
.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: white;
  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 24px rgba(92,90,58,0.12);
  transform: translateY(-3px);
  border-color: transparent;
}
.pcard-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #F5F3EE;
}
.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: 4px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}
.pcard-img .badge.hot { background: #DC2626; color: white; }
.pcard-img .badge.new { background: #059669; color: white; }
.pcard-img .badge.eco { background: var(--color-primary); color: white; }
.pcard-img .badge.fresh { background: #0284C7; color: white; }

.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: 3px;
  background: #F5F3EE;
  color: var(--color-text-light);
}
.pcard-tags i.off {
  background: rgba(220,38,38,0.08);
  color: #DC2626;
  font-weight: 600;
}

.pcard-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 7px;
}
.pcard-price strong {
  font-size: 22px;
  font-weight: 600; font-family: var(--font-serif);
  color: var(--color-primary);
  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-accent-dark); }

.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: white;
  color: var(--color-text);
  font-size: 11.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-add:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
  background: var(--color-primary-soft);
}
.btn-buy {
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--gradient-accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-buy:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.20);
  transform: translateY(-1px);
}

/* pcard 分类差异化风格 */
.pcard[data-style="women"] {
  border-left: 3px solid #B5651D;
}
.pcard[data-style="women"]:hover { box-shadow: 0 12px 32px rgba(181,101,29,0.14); }
.pcard[data-style="women"] .pcard-price strong { color: #B5651D; }
.pcard[data-style="women"] .btn-buy { background: linear-gradient(135deg,#B5651D,#C17A3A); }
.pcard[data-style="women"] .btn-add:hover { border-color: #B5651D; color: #B5651D; }

.pcard[data-style="men"] {
  border-top: 3px solid #5C5A3A;
}
.pcard[data-style="men"]:hover { box-shadow: 0 12px 32px rgba(92,90,58,0.16); }
.pcard[data-style="men"] .pcard-price strong { color: #2B2620; }
.pcard[data-style="men"] .btn-buy { background: linear-gradient(135deg,#5C5A3A,#7A7858); }
.pcard[data-style="men"] .btn-add:hover { border-color: #5C5A3A; color: #5C5A3A; }

.pcard[data-style="pants"] {
  border-right: 3px solid #A47864;
}
.pcard[data-style="pants"]:hover { box-shadow: 0 12px 32px rgba(164,120,100,0.18); }
.pcard[data-style="pants"] .pcard-price strong { color: #A47864; }
.pcard[data-style="pants"] .btn-buy { background: var(--gradient-mocha); color: #ffffff; }
.pcard[data-style="pants"] .btn-add:hover { border-color: #A47864; color: #A47864; }

.pcard[data-style="acc"] {
  border-bottom: 3px solid #7A7858;
  background: linear-gradient(180deg,#FFFDF8 98%,#F0E9D6 100%);
}
.pcard[data-style="acc"]:hover { box-shadow: 0 12px 32px rgba(122,120,88,0.16); }
.pcard[data-style="acc"] .pcard-price strong { color: #7A7858; }
.pcard[data-style="acc"] .btn-buy { background: linear-gradient(135deg,#7A7858,#9C8E78); }
.pcard[data-style="acc"] .btn-add:hover { border-color: #7A7858; color: #7A7858; }

/* ============================================
   通用区块
   ============================================ */
.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-primary);
  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: 600; font-family: var(--font-serif);
}
.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-primary); }

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
}
.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-primary); }

/* ============================================
   分类入口 V2 - 圆角卡 + 服饰色块
   ============================================ */
.category-entries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-card {
  position: relative;
  display: block;
  background: white;
  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-primary-soft));
  opacity: 0;
  transition: opacity 0.25s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--cat-color, var(--color-primary)); color: var(--color-text); }
.cat-card:hover::before { opacity: 0.10; }
.cat-card .emoji {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--cat-color, var(--color-primary-soft));
  color: white;
  font-size: 32px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(92,90,58,0.12);
}
.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-primary));
  font-weight: 600;
}

/* ============================================
   商品卡 V2 - 更大图 + 服饰徽章
   ============================================ */
.product-card {
  position: relative;
  background: white;
  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);
  transform: translateY(-3px);
  border-color: rgba(0,0,0,0.20);
}
.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: 6px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}
.product-card .badge.hot { background: var(--color-primary); color: white; }
.product-card .badge.new { background: var(--color-success); color: white; }
.product-card .badge.eco { background: var(--color-accent); color: white; }
.product-card .badge.fresh { background: #2D7A8A; color: white; }
.product-card .fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  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;
}
.product-card .fav:hover { color: var(--color-primary); transform: scale(1.08); }
.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-primary); }
.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: 4px;
  background: var(--color-bg-soft);
  color: var(--color-text-light);
}
.product-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.product-card .price { color: var(--color-primary); 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-accent-dark); }
.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-primary-light); border-radius: 0px; }
.product-scroll .product-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
}

/* ============================================
   品牌故事区
   ============================================ */
.brand-story {
  background: var(--gradient-dark);
  color: white;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.brand-story::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(181,101,29,0.14) 0%, transparent 60%);
  border-radius: 50%;
}
.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: white;
  margin-bottom: 20px;
  line-height: 1.25;
  font-weight: 600; font-family: var(--font-serif);
}
.brand-story-content p {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(255,255,255,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(--color-accent);
}
.brand-story-content .signature .info {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-accent);
  font-weight: 700;
}
.brand-story-content .signature .info small {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.1em;
}
.brand-story-visual {
  position: relative;
  height: 380px;
}
.story-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  color: white;
}
.story-card .num {
  display: block;
  font-family: var(--font-sans);
  font-size: 44px;
  font-weight: 600; font-family: var(--font-serif);
  color: var(--color-accent);
  line-height: 1;
}
.story-card .label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,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: white;
  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); }
.qual-card .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 28px;
  margin-bottom: 14px;
}
.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(255,255,255,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-warm);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.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: 600; font-family: var(--font-serif);
  color: white;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.footer-brand .tagline {
  font-size: 13px;
  color: rgba(255,255,255,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(255,255,255,0.65); }
.footer-info-list .ic { color: var(--color-accent); flex-shrink: 0; }

.footer h4 {
  color: white;
  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(--color-accent);
  border-radius: 2px;
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-list a {
  color: rgba(255,255,255,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); }

.footer-mid {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.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: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 12px;
  color: rgba(255,255,255,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(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--color-accent); color: var(--color-primary-dark); transform: translateY(-2px); }

.footer-bottom {
  padding: 20px 0 24px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 12.5px;
  line-height: 1.9;
}
.footer-bottom a { color: rgba(255,255,255,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(255,255,255,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 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--gradient-accent);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.20);
}
.btn-accent {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: transparent;
}
.btn-accent:hover {
  color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  background: #F4D58D;
}
.btn-outline {
  background: white;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  background: var(--color-bg-soft);
  border-color: var(--color-primary-light);
  color: var(--color-primary);
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-block { display: block; width: 100%; }
.btn-danger { background: var(--color-danger); color: white; }
.btn-danger:hover { background: #B91C1C; color: white; }

/* ============================================
   卡片 / 栅格 / 列表
   ============================================ */
.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); 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: 4px;
  font-size: 12px;
  background: var(--color-bg-section);
  color: var(--color-text-light);
  margin-right: 4px;
}
.tag-primary { background: rgba(0,0,0,0.10); color: var(--color-primary); }
.tag-accent { background: rgba(181,101,29,0.16); color: var(--color-accent-dark); }
.tag-danger { background: rgba(220,38,38,0.08); color: var(--color-danger); }
.tag-success { background: rgba(92,122,58,0.14); color: var(--color-success); }
.tag-info { background: rgba(164,120,100,0.14); color: #A47864; }
.tag-warn { background: rgba(181,101,29,0.16); color: #B5651D; }

/* 面包屑 */
.breadcrumb {
  background: var(--color-bg-soft);
  padding: 12px 0;
  font-size: 13px;
  color: var(--color-text-light);
}
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .sep { margin: 0 8px; color: var(--color-text-muted); }
.breadcrumb .current { color: var(--color-text); }

/* 列表 / 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-primary); }
.tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  font-weight: 600;
}

/* 表单 */
.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: white;
}
.radio-item:hover, .checkbox-item:hover { border-color: var(--color-primary-light); color: var(--color-primary); }
.radio-item input, .checkbox-item input { width: auto; margin: 0; }
.radio-item.checked, .checkbox-item.checked {
  background: rgba(92,90,58,0.08);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* 模态框 */
.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(43,38,32,0.55);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-mask.active { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 380px;
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-soft);
  border-radius: 50%;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--color-border); color: var(--color-primary); }
.modal-title { text-align: center; font-size: 18px; margin-bottom: 20px; font-family: var(--font-serif); }
.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: white;
}
.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 { color: var(--color-primary); 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(43,38,32,0.95);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  z-index: 10000;
  font-size: 14px;
  transition: transform 0.3s;
  box-shadow: var(--shadow-lg);
  max-width: 90%;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--color-success); }
.toast.error { background: var(--color-danger); }
.toast.warn { background: var(--color-warning); }

/* 工具类 */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.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: white;
  transition: all 0.2s;
}
.pagination a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(92,90,58,0.06);
}
.pagination .active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.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: white;
  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(181,101,29,0.18) 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(181,101,29,0.16) 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-serif);
  font-size: 24px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
}
.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: white;
  margin-bottom: 18px;
  max-width: 460px;
}
.auth-brand .lead {
  font-size: 15.5px;
  color: rgba(255,255,255,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(255,255,255,0.85);
}
.auth-brand .features .item .dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: rgba(181,101,29,0.16);
  color: var(--color-accent);
  flex-shrink: 0;
}
.auth-brand .bottom {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.auth-brand .bottom .stat .num {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.auth-brand .bottom .stat .label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,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-bg-soft);
  border-radius: 0px;
  padding: 4px;
  margin-bottom: 32px;
}
.auth-tabs .tab-btn {
  padding: 9px 26px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  transition: all 0.2s;
  cursor: pointer;
}
.auth-tabs .tab-btn.active {
  background: white;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}
.auth-form-title {
  font-size: 26px;
  margin-bottom: 8px;
  font-family: var(--font-serif);
}
.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: 10px;
  background: white;
  border: 1px solid var(--color-border);
  font-size: 14.5px;
}
.auth-form .form-group input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.10);
}
.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: 6px;
  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: 10px; 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-primary); }
.auth-form .row-between a:hover { color: var(--color-primary-dark); }
.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-primary); }
.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: white;
  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); }
.auth-form .social-row .sb.wechat { color: #07C160; }
.auth-form .social-row .sb.qq { color: #12B7F5; }
.auth-form .social-row .sb.weibo { color: #E6162D; }

/* ============================================
   响应式
   ============================================ */
@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) {
  h1 { font-size: 26px; }
  h2 { font-size: 20px; }
  .hero { padding: 40px 0 32px; }
  .hero-content h1 { font-size: 32px; }
  .hero-content .lead { font-size: 15px; }
  .hero-visual { height: 280px; }
  .hero-v3 { min-height: auto; }
  .hero-v3-content { grid-template-columns: 1fr; gap: 24px; padding: 40px 20px 56px; }
  .hero-v3-text h1 { font-size: 28px; }
  .hero-v3-desc { font-size: 14px; }
  .hero-v3-showcase { display: none; }
  .hero-v3-stats { padding: 12px 16px; }
  .hero-v3-stats .hs { padding: 0 16px; }
  .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: 76px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  .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: 32px 0; }
  .navbar-inner { height: 64px; gap: 12px; grid-template-columns: auto 1fr auto; }
  .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: 28px; }
  .service-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .service-bar-v3 { grid-template-columns: repeat(2, 1fr); margin-top: -16px; }
  .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); }
  .qual-grid { grid-template-columns: 1fr; }
  .brand-story { padding: 40px 0; }
  .brand-story-content h2 { font-size: 26px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; }
  .industry-entries { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .auth-form-side { padding: 32px 22px; }
  .auth-brand { padding: 32px 22px; }
  .footer-mid { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   2026-06 黑白买手店修订
   ============================================ */
.auth-modal-open {
  overflow: hidden;
}
.navbar {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 22px 44px rgba(0,0,0,0.06);
}
.brand-mark,
.brand-mark-lg {
  background: linear-gradient(135deg, #5C5A3A 0%, #3F3D26 100%);
}
.topbar {
  background: #2B2620;
}
.topbar-info {
  gap: 14px;
}
.topbar-kicker,
.topbar-member {
  color: rgba(246,240,226,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(246,240,226,0.88);
  font-size: 12px;
}
.topbar-inline-btn,
.topbar-auth-btn {
  background: transparent;
  border: none;
  padding: 0;
}
.topbar-auth-btn.strong {
  color: #F6F0E2;
}
.navbar-inner {
  height: 92px;
  gap: 28px;
}
.brand-text .meta {
  font-size: 11px;
  color: #8B7E5C;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.brand-text .name {
  color: #2B2620;
  font-size: 22px;
}
.brand-text .slogan {
  color: #A47864;
  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: #F0E9D6;
  border-color: #E8DFC8;
  padding: 13px 48px 13px 16px;
}
.search-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #5C5A3A;
  color: #ffffff;
  font-size: 15px;
}
.nav-actions {
  gap: 10px;
}
.nav-actions a,
.nav-actions button {
  min-height: 44px;
  border: 1px solid #DDD0B8;
  background: #ffffff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-actions a:hover,
.nav-actions button:hover {
  border-color: #5C5A3A;
  color: #5C5A3A;
}
.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: #8B7E5C;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.nav-user strong {
  font-size: 12px;
  letter-spacing: 0.08em;
}
.nav-auth-btn.solid {
  background: #5C5A3A;
  color: #ffffff;
  border-color: #5C5A3A;
}
.nav-auth-btn.solid:hover {
  color: #ffffff;
}
.mobile-menu-btn {
  padding: 0 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.cat-pill.active {
  background: #5C5A3A;
  border-color: #5C5A3A;
  box-shadow: 0 10px 24px rgba(92,90,58,0.18);
}
.hero-v3 {
  min-height: 88vh;
}
.hero-v3-bg {
  background: linear-gradient(130deg, #3F3D26 0%, #5C5A3A 45%, #6B5F4F 100%);
}
.hero-v3-overlay {
  background:
    linear-gradient(115deg, rgba(255,253,248,0.04) 0%, transparent 48%),
    radial-gradient(circle at 18% 22%, rgba(181,101,29,0.22) 0%, transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(164,120,100,0.18) 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(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.hero-v3-text h1 {
  font-size: 74px;
  line-height: 0.96;
  max-width: 680px;
}
.hero-v3-desc {
  max-width: 640px;
  font-size: 16px;
  color: rgba(255,255,255,0.76);
}
.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(255,255,255,0.12);
}
.hero-v4-line span {
  font-size: 11px;
  color: rgba(255,255,255,0.52);
  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(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  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-serif);
}
.hero-v4-card p {
  color: rgba(255,255,255,0.64);
  font-size: 13px;
  line-height: 1.8;
}
.hero-v4-label {
  color: rgba(255,255,255,0.48);
  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(255,255,255,0.68);
  font-size: 18px;
  font-family: var(--font-serif);
}
.hero-v3-text .hero-v3-accent {
  background: linear-gradient(135deg, #C17A3A 0%, #E8C9A0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-v3-stats {
  background: rgba(43,38,32,0.62);
}
.hero-v3-card {
  border: 1px solid rgba(255,255,255,0.06);
}
.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(92,90,58,0.10);
  color: #5C5A3A;
}
.tag-info {
  background: rgba(164,120,100,0.12);
  color: #A47864;
}
.tag-warn {
  background: rgba(181,101,29,0.16);
  color: #B5651D;
}
.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: #FFFDF8;
  border: 1px solid #E8DFC8;
}
.pcard:hover {
  transform: translateY(-8px);
}
.pcard-img {
  height: 280px;
  background: #F0E9D6;
}
.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: #8B7E5C;
  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-serif);
  margin-bottom: 10px;
}
.pcard-summary {
  min-height: 42px;
  color: #6B6353;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.pcard-tags {
  margin-bottom: 14px;
}
.pcard-tags i {
  padding: 4px 8px;
  background: #F0E9D6;
}
.pcard-price {
  margin-bottom: 10px;
}
.pcard-price strong {
  font-size: 30px;
}
.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.08);
}
.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 {
  color: #2B2620;
}
.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, #5C5A3A 0%, #6B5F4F 100%);
  color: #ffffff;
}
.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: #5C5A3A;
  color: #5C5A3A;
  background: #F0E9D6;
}
.product-card {
  border: 1px solid #E8DFC8;
  background: #FFFDF8;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(92,90,58,0.10);
}
.product-card .img-wrap {
  background: #F0E9D6;
}
.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: #8B7E5C;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.product-card-summary {
  min-height: 40px;
  font-size: 12px;
  color: #6B6353;
  line-height: 1.7;
  margin-bottom: 12px;
}
.product-card h3 {
  min-height: 48px;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.3;
}
.product-card .price-row {
  margin-bottom: 12px;
}
.product-card .price {
  color: #B5651D;
  font-size: 28px;
}
.product-card .meta {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed #DDD0B8;
  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, #2B2620 0%, #332B22 18%, #3F3D26 100%);
}
.footer::before {
  height: 1px;
  background: rgba(246,240,226,0.22);
}
.footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding: 56px 0 42px;
  border-bottom: 1px solid rgba(255,253,248,0.10);
}
.footer-kicker {
  display: inline-flex;
  color: rgba(255,253,248,0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 16px;
}
.footer-hero-copy h2 {
  color: #FFFDF8;
  font-size: 50px;
  line-height: 0.98;
  margin-bottom: 16px;
}
.footer-hero-copy p {
  color: rgba(255,253,248,0.68);
  max-width: 640px;
  line-height: 1.9;
}
.footer-hero-meta {
  display: grid;
  gap: 14px;
}
.footer-meta-box {
  padding: 18px 20px;
  border: 1px solid rgba(255,253,248,0.14);
  background: rgba(255,253,248,0.04);
}
.footer-meta-box span {
  display: block;
  color: rgba(255,253,248,0.48);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-meta-box strong {
  color: #FFFDF8;
  font-size: 18px;
  line-height: 1.5;
  font-family: var(--font-serif);
}
.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(255,253,248,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, #3F3D26 0%, #4A4634 62%, #5C5A3A 100%);
  color: #FFFDF8;
}
.policy-hero h1 {
  color: #FFFDF8;
  font-size: 36px;
  margin-bottom: 12px;
}
.policy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255,253,248,0.20);
  color: rgba(255,253,248,0.78);
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255,253,248,0.74);
  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: #ffffff;
  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);
  font-size: 14px;
}
.policy-nav a:last-child {
  border-bottom: none;
}
.policy-body {
  display: grid;
  gap: 18px;
}
.policy-card {
  border: 1px solid var(--color-border);
  background: #ffffff;
  padding: 26px 28px;
}
.policy-card h2 {
  font-size: 24px;
  margin-bottom: 14px;
}
.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);
}
.policy-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 3px solid var(--color-accent);
  background: rgba(181,101,29,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, #ffffff 0%, #fafafa 100%);
}
.policy-band h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
.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, #3F3D26 0%, #4A4634 58%, #6B5F4F 100%);
  color: #FFFDF8;
  border: 1px solid rgba(255,253,248,0.06);
}
.merchant-hero h1,
.merchant-hero h2 {
  color: #FFFDF8;
}
.merchant-hero p {
  color: rgba(255,253,248,0.76);
}
.merchant-panel {
  border: 1px solid var(--color-border);
  background: #ffffff;
  padding: 28px;
}
.merchant-panel h3 {
  font-size: 18px;
  margin-bottom: 16px;
}
.merchant-doc-grid,
.merchant-summary-list {
  display: grid;
  gap: 12px;
}
.merchant-doc-item {
  padding: 14px 16px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
}
.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: #5C5A3A;
}
.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: #991b1b;
  background: rgba(220,38,38,0.08);
  border-left: 3px solid #dc2626;
}
.form-group input.is-error,
.form-group textarea.is-error,
.form-group select.is-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.10);
}
.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(43,38,32,0.68);
  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: #ffffff;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}
.auth-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,253,248,0.18);
  background: rgba(255,253,248,0.10);
  color: #FFFDF8;
  font-size: 20px;
  z-index: 4;
}
.auth-modal-side {
  padding: 52px 40px 40px;
  background: linear-gradient(145deg, #3F3D26 0%, #4A4634 45%, #5C5A3A 100%);
  color: #FFFDF8;
  display: flex;
  flex-direction: column;
}
.auth-modal-kicker {
  color: rgba(255,253,248,0.55);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.auth-modal-side h2 {
  color: #FFFDF8;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 18px;
}
.auth-modal-side p {
  color: rgba(255,253,248,0.72);
  line-height: 1.9;
  margin-bottom: 28px;
}
.auth-modal-points {
  display: grid;
  gap: 14px;
  margin-top: auto;
}
.auth-modal-points div {
  padding: 16px 18px;
  border: 1px solid rgba(255,253,248,0.14);
  background: rgba(255,253,248,0.05);
}
.auth-modal-points strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}
.auth-modal-points span {
  color: rgba(255,253,248,0.64);
  font-size: 13px;
}
.auth-modal-main {
  padding: 52px 54px 44px;
  display: flex;
  flex-direction: column;
}
.auth-modal-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: #F0E9D6;
  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;
}
.auth-modal-tab.active {
  background: #5C5A3A;
  color: #ffffff;
}
.auth-modal-form {
  display: grid;
  gap: 18px;
}
.auth-modal-form[hidden] {
  display: none !important;
}
.auth-modal-intro h3 {
  font-size: 30px;
  margin-bottom: 6px;
}
.auth-modal-intro p {
  color: #6B6353;
}
.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: #4A4234;
}
.auth-modal-field input {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #DDD0B8;
  background: #FBF7EC;
}
.auth-modal-field input.is-error {
  border-color: #dc2626;
  background: #fff5f5;
}
.auth-modal-error {
  margin-top: 8px;
  padding: 8px 10px;
  font-size: 12px;
  color: #991b1b;
  background: rgba(220,38,38,0.08);
  border-left: 3px solid #dc2626;
}
.auth-modal-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4A4234;
  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: #5C5A3A;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.auth-modal-submit.solid {
  background: linear-gradient(135deg, #3F3D26 0%, #6B5F4F 100%);
}
.auth-modal-note {
  margin-top: auto;
  padding-top: 28px;
  color: #8B7E5C;
  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) {
  .policy-hero,
  .policy-card,
  .policy-band,
  .merchant-hero,
  .merchant-panel {
    padding: 22px 18px;
  }
  .policy-hero h1 {
    font-size: 30px;
  }
  .topbar-info {
    justify-content: center;
  }
  .topbar-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .navbar-inner {
    height: auto;
    padding: 16px 0;
  }
  .brand-text .meta,
  .nav-search {
    display: none;
  }
  .nav-list a {
    font-size: 12px;
  }
  .hero-v3 {
    min-height: auto;
  }
  .hero-v3-content {
    gap: 26px;
    padding: 56px 20px 48px;
  }
  .hero-v3-text h1 {
    font-size: 42px;
  }
  .hero-v4-line {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-v4-showcase {
    grid-template-columns: 1fr;
  }
  .pcard-img {
    height: 240px;
  }
  .footer-hero-copy h2 {
    font-size: 34px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .auth-modal-mask {
    padding: 12px;
  }
  .auth-modal-main,
  .auth-modal-side {
    padding: 32px 22px;
  }
  .auth-modal-side h2 {
    font-size: 32px;
  }
}

/* ============================================
   编辑式画廊首页（仅首页启用）
   Aesop / The Row / Maison Margiela 风格
   极简文字主导，无任何装饰图形
   ============================================ */

/* 极简导航 */
.ed-nav {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.ed-nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 72px;
  gap: 48px;
}
.ed-nav-brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--color-text);
  text-decoration: none;
}
.ed-nav-brand-cn {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ed-nav-brand-en {
  font-size: 10.5px;
  color: var(--color-text-light);
  letter-spacing: 0.22em;
  margin-top: 4px;
  text-transform: uppercase;
}
.ed-nav-list {
  display: flex;
  justify-content: center;
  gap: 36px;
  list-style: none;
}
.ed-nav-list a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  padding: 6px 0;
  position: relative;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.ed-nav-list a:hover { color: var(--color-primary); }
.ed-nav-list a.active {
  color: var(--color-primary);
  font-weight: 500;
}
.ed-nav-list a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--color-primary);
}
.ed-nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ed-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  font-size: 14px;
  text-decoration: none;
}
.ed-nav-link:hover { color: var(--color-primary); }
.ed-nav-count {
  display: inline-block;
  min-width: 18px;
  padding: 0 5px;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  border-radius: 9px;
  background: var(--color-primary);
  color: #fff;
  display: none;
}
.ed-nav-count.active { display: inline-block; }
#navUserArea button, #navUserArea a {
  background: none;
  border: none;
  padding: 6px 0;
  color: var(--color-text);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
#navUserArea button:hover, #navUserArea a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
#navUserArea > a + a, #navUserArea > button + button, #navUserArea > a + button, #navUserArea > button + a {
  margin-left: 14px;
}

/* 编辑式画廊：通用排版基线 */
.ed-main {
  background: var(--color-bg);
  color: var(--color-text);
}
.ed-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--color-border-soft);
}
.ed-section:last-child { border-bottom: none; }
.ed-section-narrow {
  padding: 80px 0;
}
.ed-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 28px;
}
.ed-num {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 32px;
}
.ed-title {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin-bottom: 28px;
}
.ed-title em {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 400;
}
.ed-lede {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-light);
  max-width: 640px;
  font-weight: 300;
}
.ed-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-light);
  font-weight: 300;
}
.ed-link-arrow {
  display: inline-block;
  font-size: 14px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 4px;
  letter-spacing: 0.04em;
  transition: color 0.2s, border-color 0.2s;
  margin-top: 36px;
}
.ed-link-arrow:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* HERO：全幅大图 + 居中文字 */
.ed-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  background: #1f1a14;
  overflow: hidden;
}
.ed-hero-image {
  position: absolute;
  inset: -8px;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  background-image: linear-gradient(180deg, rgba(31,26,20,0.35) 0%, rgba(31,26,20,0.55) 100%), url('../images/products/jp-001.jpg');
}
.ed-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 0 96px;
  color: #F6F0E2;
}
.ed-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246,240,226,0.75);
  margin-bottom: 28px;
}
.ed-hero-title {
  font-family: var(--font-serif);
  font-size: 88px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #F6F0E2;
  max-width: 1100px;
  margin-bottom: 32px;
}
.ed-hero-title em {
  font-style: italic;
  color: #E8C9A0;
}
.ed-hero-lede {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(246,240,226,0.82);
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 0;
}
.ed-hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: rgba(246,240,226,0.7);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-top: 1px solid rgba(246,240,226,0.18);
  padding-top: 24px;
  margin-top: 56px;
  max-width: 1100px;
}

/* 本期目录 */
.ed-toc-list {
  list-style: none;
  counter-reset: toc;
}
.ed-toc-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: baseline;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.2s;
}
.ed-toc-item:last-child { border-bottom: 1px solid var(--color-border); }
.ed-toc-item:hover { background: var(--color-bg-soft); }
.ed-toc-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}
.ed-toc-text {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.ed-toc-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-top: 6px;
  font-weight: 400;
}
.ed-toc-arrow {
  font-size: 22px;
  color: var(--color-text-light);
  transition: transform 0.2s, color 0.2s;
}
.ed-toc-item:hover .ed-toc-arrow {
  transform: translateX(8px);
  color: var(--color-primary);
}

/* 编辑笔记：左文右图 / 左图右文 */
.ed-note {
  padding: 120px 0;
}
.ed-note-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.ed-note-reverse .ed-note-grid { direction: rtl; }
.ed-note-reverse .ed-note-text, .ed-note-reverse .ed-note-img { direction: ltr; }
.ed-note-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-soft);
}
.ed-note-img-1 { background-image: url('../images/products/jp-007.jpg'); }
.ed-note-img-2 { background-image: url('../images/products/jp-010.jpg'); }
.ed-note-img-3 { background-image: url('../images/products/jp-013.jpg'); }
.ed-note-text h2 {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--color-text);
}
.ed-note-text p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--color-text-light);
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 480px;
}

/* 作品列表：编号 + 名称 + 价格（无图无卡片） */
.ed-list-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 24px;
  margin-bottom: 0;
}
.ed-list-head h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  margin: 0;
}
.ed-list-head .ed-list-count {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.ed-list {
  list-style: none;
}
.ed-list-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto 120px;
  gap: 40px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.2s, padding 0.2s;
}
.ed-list-item:hover {
  background: var(--color-bg-soft);
  padding-left: 16px;
  padding-right: 16px;
}
.ed-list-num {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}
.ed-list-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.3;
}
.ed-list-name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 6px;
}
.ed-list-cat {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.ed-list-price {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
  letter-spacing: 0.01em;
}
.ed-list-action {
  font-size: 13px;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  text-align: right;
  transition: color 0.2s;
}
.ed-list-item:hover .ed-list-action { color: var(--color-primary); }

/* 关于本期：纯文字承诺 */
.ed-about {
  padding: 120px 0;
  background: var(--color-bg-soft);
}
.ed-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 56px;
  margin-top: 56px;
}
.ed-about-item h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.ed-about-item p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text-light);
  font-weight: 300;
  max-width: 320px;
}

/* 末页 */
.ed-end {
  padding: 120px 0;
  text-align: center;
}
.ed-end-mark {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.5em;
  color: var(--color-text-light);
  margin-bottom: 32px;
}
.ed-end-line {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--color-text-light);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ed-end-note {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  line-height: 1.9;
  font-weight: 300;
}

/* 极简页脚 */
.ed-footer {
  background: var(--color-text);
  color: rgba(246,240,226,0.78);
  padding: 96px 0 56px;
}
.ed-footer-inner {
  max-width: var(--max-width-narrow, 880px);
  margin: 0 auto;
  text-align: center;
}
.ed-footer-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.ed-footer-brand {
  font-family: var(--font-serif);
  font-size: 26px;
  color: #F6F0E2;
  letter-spacing: 0.04em;
}
.ed-footer-en {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246,240,226,0.55);
}
.ed-footer-intro {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(246,240,226,0.65);
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 300;
}
.ed-footer-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: 16px 48px;
  margin-bottom: 48px;
  padding: 0;
}
.ed-footer-meta li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.ed-footer-meta li > span:first-child {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246,240,226,0.45);
}
.ed-footer-meta li > span:last-child {
  color: rgba(246,240,226,0.85);
}
.ed-footer-legal {
  font-size: 12px;
  color: rgba(246,240,226,0.55);
  line-height: 1.8;
  font-weight: 300;
  padding-top: 32px;
  border-top: 1px solid rgba(246,240,226,0.12);
}
.ed-footer-legal a {
  color: rgba(246,240,226,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.ed-footer-legal a:hover { color: #E8C9A0; }
.ed-footer-sep {
  color: rgba(246,240,226,0.3);
  margin: 0 8px;
}

/* 移动端响应 */
@media (max-width: 960px) {
  .ed-nav-inner { grid-template-columns: 1fr auto; gap: 16px; height: 60px; }
  .ed-nav-list { display: none; }
  .ed-nav-brand-en { display: none; }
  .ed-hero { min-height: 70vh; }
  .ed-hero-title { font-size: 48px; }
  .ed-hero-content { padding-bottom: 56px; }
  .ed-hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ed-section, .ed-note, .ed-end, .ed-about { padding: 72px 0; }
  .ed-title { font-size: 36px; }
  .ed-note-grid { grid-template-columns: 1fr; gap: 40px; }
  .ed-note-reverse .ed-note-grid { direction: ltr; }
  .ed-note-text h2 { font-size: 30px; }
  .ed-list-head h2 { font-size: 28px; }
  .ed-list-item {
    grid-template-columns: 50px 1fr auto;
    gap: 16px;
    padding: 20px 0;
  }
  .ed-list-cat, .ed-list-action { display: none; }
  .ed-list-name { font-size: 18px; }
  .ed-list-price { font-size: 16px; }
  .ed-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .ed-footer-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ed-toc-item {
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 24px 0;
  }
  .ed-toc-arrow { display: none; }
  .ed-toc-text { font-size: 20px; }
}

/* ============================================
   编辑式画廊 - 通用页面样式
   用于 checkout/login/user/cart/orders 等内页
   ============================================ */

.ed-page {
  background: var(--color-bg);
  min-height: 100vh;
  padding: 56px 0 96px;
}
.ed-page-head {
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-text);
}
.ed-page-num {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--color-text-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ed-page-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
.ed-page-title em {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 400;
}
.ed-page-sub {
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: 12px;
  letter-spacing: 0.02em;
  font-weight: 300;
}
.ed-breadcrumb {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 32px;
}
.ed-breadcrumb a {
  color: var(--color-text-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.ed-breadcrumb a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.ed-breadcrumb .sep {
  margin: 0 12px;
  color: var(--color-text-muted);
}
.ed-breadcrumb .current {
  color: var(--color-text);
}

/* 表单区：极简下划线输入 */
.ed-form-section {
  margin-bottom: 56px;
}
.ed-form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-weight: 500;
}
.ed-form-group {
  margin-bottom: 32px;
}
.ed-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.ed-input:focus {
  border-bottom-color: var(--color-text);
}
.ed-input::placeholder {
  color: var(--color-text-muted);
  font-weight: 300;
}
textarea.ed-input {
  min-height: 80px;
  resize: vertical;
  border: 1px solid var(--color-border);
  padding: 12px;
}
select.ed-input {
  border: 1px solid var(--color-border);
  padding: 12px;
  background: var(--color-bg);
  cursor: pointer;
}
.ed-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* 按钮：极简文字链 + 实心按钮 */
.ed-btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
  transition: all 0.2s;
}
.ed-btn-primary {
  background: var(--color-text);
  color: var(--color-bg);
}
.ed-btn-primary:hover {
  background: var(--color-primary);
}
.ed-btn-outline {
  border: 1px solid var(--color-text);
  color: var(--color-text);
}
.ed-btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}
.ed-btn-ghost {
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding: 8px 0;
}
.ed-btn-ghost:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.ed-btn-lg {
  padding: 20px 48px;
  font-size: 14px;
}

/* 卡片：极简白底无边框 */
.ed-card {
  background: #FFFDF8;
  padding: 36px;
  margin-bottom: 24px;
}
.ed-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.ed-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
.ed-card-num {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* 商品清单行 */
.ed-item-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.ed-item-row:last-child { border-bottom: none; }
.ed-item-img {
  width: 80px;
  height: 100px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-soft);
  overflow: hidden;
}
.ed-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ed-item-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.ed-item-meta {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  line-height: 1.6;
}
.ed-item-price {
  text-align: right;
}
.ed-item-price-strong {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
}
.ed-item-price-sub {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* 单选项 */
.ed-radio {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: padding 0.2s;
}
.ed-radio:last-child { border-bottom: none; }
.ed-radio:hover { padding-left: 8px; }
.ed-radio input { display: none; }
.ed-radio-mark {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.ed-radio input:checked + .ed-radio-mark {
  border-color: var(--color-text);
}
.ed-radio input:checked + .ed-radio-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--color-text);
}
.ed-radio-body {
  flex: 1;
}
.ed-radio-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
}
.ed-radio-desc {
  font-size: 13px;
  color: var(--color-text-light);
  font-weight: 300;
}
.ed-radio-price {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

/* 费用明细 */
.ed-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  font-size: 14px;
  color: var(--color-text-light);
}
.ed-total-row.grand {
  border-top: 1px solid var(--color-text);
  margin-top: 16px;
  padding-top: 20px;
  font-size: 16px;
  color: var(--color-text);
}
.ed-total-row.grand .ed-total-val {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
}

/* 登录注册页 */
.ed-auth {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ed-auth-visual {
  position: relative;
  background: #1f1a14;
  overflow: hidden;
}
.ed-auth-visual-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(180deg, rgba(31,26,20,0.30) 0%, rgba(31,26,20,0.55) 100%), url('../images/products/jp-004.jpg');
}
.ed-auth-visual-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px;
  color: #F6F0E2;
}
.ed-auth-visual-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246,240,226,0.7);
  margin-bottom: 24px;
}
.ed-auth-visual-title {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.15;
  font-weight: 400;
  color: #F6F0E2;
  margin-bottom: 24px;
  max-width: 480px;
}
.ed-auth-visual-title em {
  font-style: italic;
  color: #E8C9A0;
}
.ed-auth-visual-lede {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(246,240,226,0.75);
  max-width: 440px;
  font-weight: 300;
}
.ed-auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 48px;
  background: var(--color-bg);
}
.ed-auth-form-wrap {
  width: 100%;
  max-width: 420px;
}
.ed-auth-back {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-decoration: none;
  margin-bottom: 56px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.ed-auth-back:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.ed-auth-tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}
.ed-auth-tab {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.ed-auth-tab.active {
  color: var(--color-text);
}
.ed-auth-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--color-text);
}
.ed-auth-form {
  display: none;
}
.ed-auth-form.active {
  display: block;
}
.ed-auth-form-head {
  margin-bottom: 40px;
}
.ed-auth-form-head h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}
.ed-auth-form-head p {
  font-size: 13px;
  color: var(--color-text-light);
  font-weight: 300;
}
.ed-auth-field {
  margin-bottom: 28px;
}
.ed-auth-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 10px;
  font-weight: 500;
}
.ed-auth-submit {
  width: 100%;
  padding: 18px;
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-sans);
  margin-top: 16px;
  transition: background 0.2s;
}
.ed-auth-submit:hover {
  background: var(--color-primary);
}
.ed-auth-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-text-light);
  font-weight: 300;
}
.ed-auth-check input {
  margin-top: 3px;
}
.ed-auth-check a {
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.ed-auth-note {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  line-height: 1.7;
  font-weight: 300;
}

/* 用户中心：极简卡片 */
.ed-user-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.ed-user-side {
  position: sticky;
  top: 100px;
}
.ed-user-card {
  padding: 32px;
  background: #FFFDF8;
  margin-bottom: 24px;
}
.ed-user-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text);
}
.ed-user-card .phone {
  font-size: 13px;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.ed-user-card .level {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.ed-user-nav {
  list-style: none;
  padding: 0;
}
.ed-user-nav li {
  border-bottom: 1px solid var(--color-border);
}
.ed-user-nav li:first-child { border-top: 1px solid var(--color-border); }
.ed-user-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  transition: padding 0.2s, color 0.2s;
}
.ed-user-nav a:hover {
  color: var(--color-primary);
  padding-left: 12px;
}
.ed-user-nav a::after {
  content: "→";
  color: var(--color-text-light);
  font-size: 16px;
}
.ed-user-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
  margin-bottom: 32px;
}
.ed-user-stat {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}
.ed-user-stat:last-child { border-right: none; }
.ed-user-stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 8px;
}
.ed-user-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* 地址列表 */
.ed-addr-list {
  display: grid;
  gap: 16px;
}
.ed-addr-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 24px 28px;
  background: #FFFDF8;
  border: 1px solid var(--color-border);
  align-items: start;
  transition: border-color 0.2s;
}
.ed-addr-card.default {
  border-color: var(--color-text);
}
.ed-addr-card:hover {
  border-color: var(--color-primary);
}
.ed-addr-info {
  display: grid;
  gap: 6px;
}
.ed-addr-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
}
.ed-addr-name .tag {
  display: inline-block;
  margin-left: 12px;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-sans);
  font-weight: 500;
  vertical-align: middle;
}
.ed-addr-phone {
  font-size: 13px;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}
.ed-addr-detail {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.7;
  margin-top: 6px;
}
.ed-addr-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.ed-addr-actions button, .ed-addr-actions a {
  background: none;
  border: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-light);
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.ed-addr-actions button:hover, .ed-addr-actions a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* 空状态 */
.ed-empty {
  text-align: center;
  padding: 96px 24px;
}
.ed-empty-num {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.ed-empty-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 16px;
}
.ed-empty-desc {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-weight: 300;
}

/* 内页响应 */
@media (max-width: 960px) {
  .ed-page { padding: 32px 0 64px; }
  .ed-page-title { font-size: 32px; }
  .ed-form-row { grid-template-columns: 1fr; gap: 24px; }
  .ed-card { padding: 24px; }
  .ed-item-row { grid-template-columns: 60px 1fr; }
  .ed-item-price { grid-column: 2; text-align: left; }
  .ed-auth { grid-template-columns: 1fr; }
  .ed-auth-visual { display: none; }
  .ed-auth-form-side { padding: 48px 24px; }
  .ed-user-grid { grid-template-columns: 1fr; gap: 32px; }
  .ed-user-side { position: static; }
  .ed-user-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .ed-user-stat:nth-child(2) { border-right: none; }
  .ed-user-stat:nth-child(1), .ed-user-stat:nth-child(2) { border-bottom: 1px solid var(--color-border); }
  .ed-addr-card { grid-template-columns: 1fr; gap: 16px; }
}
