/* ========================================
   全源玉通 - 高端新中式轻奢风格
   Design Language: Editorial Luxury
   Color Palette:
   --deep-green: #1A3C34 (深墨绿主色)
   --dark-green: #0F2A24 (更深墨绿)
   --cream: #FAF7F0 (米白底色)
   --gold: #C9A96E (烫金点缀)
   --light-gold: #E8D5B7 (浅金)
   ======================================== */

/* === CSS Variables === */
:root {
  --deep-green: #1A3C34;
  --dark-green: #0F2A24;
  --cream: #FAF7F0;
  --cream-dark: #F2EDE2;
  --gold: #C9A96E;
  --gold-hover: #B8944F;
  --gold-dim: rgba(201, 169, 110, 0.35);
  --light-gold: #E8D5B7;
  --text-dark: #2C2416;
  --text-mid: #5C4F3A;
  --text-light: #8A7E6B;
  --white: #FFFFFF;
  --danger: #C0392B;
  --success: #27AE60;
  --warning: #E67E22;
  --info: #2980B9;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 4px rgba(15, 42, 36, 0.04);
  --shadow-md: 0 2px 12px rgba(15, 42, 36, 0.06);
  --shadow-lg: 0 4px 24px rgba(15, 42, 36, 0.08);
  --font-cn: "Noto Serif SC", "Source Han Serif SC", "STSong", "SimSun", "Songti SC", serif;
  --font-sans: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.cloud-pattern {
  background-color: var(--cream);
  background-image:
    /* 中式云纹暗纹 */
    radial-gradient(ellipse at 20% 10%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(26, 60, 52, 0.04) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 75%, rgba(26, 60, 52, 0.03) 0%, transparent 45%),
    /* 细腻低饱和渐变层 */
    linear-gradient(180deg,
      rgba(250,247,240,1) 0%,
      rgba(250,247,240,0.98) 15%,
      rgba(250,245,235,1) 35%,
      rgba(250,247,240,1) 65%,
      rgba(248,243,232,1) 85%,
      rgba(250,247,240,1) 100%
    );
  background-attachment: fixed;
}

/* === Container === */
.container { max-width: 480px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 32px; border: none; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none;
  letter-spacing: 0.03em; font-family: var(--font-sans);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-gold {
  background: linear-gradient(135deg, #C9A96E, #B8944F);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #B8944F, #A07D3E);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.45);
}
.btn-outline {
  background: transparent; border: 2px solid var(--gold); color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-green {
  background: linear-gradient(135deg, #27AE60, #1E8449);
  color: var(--white);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-block { display: flex; width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }
.btn-cancel {
  display: flex;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.82rem;
  color: #999;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.2s;
}
.btn-cancel:hover { border-color: var(--danger); color: var(--danger); background: #FFF5F5; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(175deg, #0A1F1A 0%, #102A24 30%, #1A3C34 60%, #0F2A24 100%);
  color: var(--cream); padding: 52px 0 64px;
  text-align: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(201, 169, 110, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 169, 110, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 45% 70%, rgba(232, 213, 183, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-brand {
  font-family: var(--font-cn); font-size: 0.85rem;
  letter-spacing: 0.18em; color: var(--light-gold);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-cn); font-size: 2.1rem;
  font-weight: 800; letter-spacing: 0.08em;
  margin-bottom: 8px; color: var(--cream); line-height: 1.2;
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle {
  font-size: 0.86rem; color: rgba(250, 247, 240, 0.75);
  margin-bottom: 24px; letter-spacing: 0.08em;
}

/* Product Image */
.product-img-area {
  width: 220px; height: 220px; margin: 0 auto 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(201, 169, 110, 0.18), rgba(15, 42, 36, 0.6));
  border: 2px solid rgba(201, 169, 110, 0.5);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  box-shadow: 0 0 60px rgba(201, 169, 110, 0.15), inset 0 0 30px rgba(201, 169, 110, 0.05);
}
.product-img-area::after {
  content: ''; position: absolute; inset: -10px;
  border-radius: 50%; border: 1px solid rgba(201, 169, 110, 0.2);
  pointer-events: none;
}
.hero-product-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-desc {
  color: rgba(250, 247, 240, 0.78); font-size: 0.88rem;
  line-height: 1.8; margin-bottom: 18px;
}

.hero-features-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 20px; flex-wrap: wrap;
}
.hf-item {
  font-size: 0.8rem; color: rgba(250, 247, 240, 0.65);
  padding: 0 14px; letter-spacing: 0.04em;
}
.hf-sep {
  width: 1px; height: 12px;
  background: rgba(201, 169, 110, 0.3);
}

.hero-tagline {
  display: inline-block; padding: 4px 20px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 20px; font-size: 0.78rem;
  color: var(--light-gold); letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero-ctas {
  display: flex; gap: 12px; justify-content: center;
  margin-bottom: 16px; flex-wrap: wrap;
}
.btn-hero { padding: 15px 40px; font-size: 1rem; border-radius: 50px; }
.btn-outline-hero {
  padding: 15px 28px; font-size: 0.92rem;
  border-radius: 50px;
  background: transparent; border: 2px solid rgba(201, 169, 110, 0.5);
  color: var(--light-gold); cursor: pointer;
  transition: all 0.3s ease; font-family: var(--font-sans);
  font-weight: 500; letter-spacing: 0.03em;
}
.btn-outline-hero:hover {
  border-color: var(--gold); background: rgba(201, 169, 110, 0.1);
}
.hero-cert {
  font-size: 0.72rem; color: rgba(250, 247, 240, 0.4);
  letter-spacing: 0.06em;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; margin-bottom: 36px; }
.section-title {
  font-family: var(--font-cn); font-size: 1.55rem;
  font-weight: 700; color: var(--deep-green);
  margin-bottom: 8px; letter-spacing: 0.08em; line-height: 1.3;
}
.section-subtitle {
  font-size: 0.85rem; color: var(--text-light);
  letter-spacing: 0.06em; margin-bottom: 14px;
}
.section-divider {
  width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--light-gold));
  margin: 0 auto; border-radius: 1px;
}

/* ============================================
   FEATURE SECTION (新位置) - 含产品功效图 + 三视图
   ============================================ */

/* 产品功效图背景区 - 金色彩色背景 + 缩小 10% 的产品展示图 */
.feature-effect {
  position: relative;
  background: linear-gradient(180deg, #D4B872 0%, #C9A050 50%, #B88838 100%);
  border-radius: var(--radius-lg);
  padding: 36px 20px 28px;
  margin-bottom: 18px;
  box-shadow: 0 4px 24px rgba(184, 148, 79, 0.25);
  text-align: center;
  overflow: hidden;
}
.feature-effect::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.18), transparent 50%);
  pointer-events: none;
}
/* --- 可刷医保徽章已删除 --- */
.feature-effect-product {
  width: 70%;       /* 缩小 10% (原 80% → 70%) */
  max-width: 240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.feature-effect-product img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

/* 配方升级 · 透皮吸收 文本块 */
.feature-headline {
  text-align: center;
  margin-bottom: 24px;
  padding: 8px 0;
}
.fh-title {
  font-family: var(--font-cn);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  line-height: 1.3;
}
.fh-red {
  color: #C0392B;
  -webkit-text-stroke: 1px #C0392B;
  text-shadow: 0 0 2px rgba(192, 57, 43, 0.2);
}
.fh-sub {
  font-size: 0.9rem;
  color: var(--light-gold);
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* 适宜人群 */
.feature-suit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  margin-bottom: 18px;
}
.fs-title {
  font-family: var(--font-cn);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-align: center;
}
.fs-text {
  font-size: 0.82rem;
  color: rgba(250, 247, 240, 0.75);
  line-height: 1.85;
  text-align: justify;
}

/* 三视图产品 - 上 = 产品展示图居中，下 = 左产品正面 / 右产品侧面 */
.feature-threeview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.ft-top {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.12);
}
.ft-top img {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin: 0 auto 8px;
  display: block;
}
.ft-top-cap {
  font-size: 0.78rem;
  color: var(--light-gold);
  letter-spacing: 0.06em;
  font-family: var(--font-cn);
}
.ft-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ft-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.12);
}
.ft-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  display: block;
}
.ft-item-cap {
  font-size: 0.72rem;
  color: rgba(250, 247, 240, 0.65);
  letter-spacing: 0.04em;
  font-family: var(--font-cn);
}

/* 备案号 + 全国服务电话 */
.feature-cert {
  text-align: center;
  padding: 14px 16px;
  background: rgba(201, 169, 110, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 169, 110, 0.15);
}
.fc-line {
  font-size: 0.85rem;
  color: rgba(250, 247, 240, 0.75);
  letter-spacing: 0.06em;
  padding: 2px 0;
}
.fc-line-gold {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 4px;
  font-weight: 600;
}
.fc-line-gold strong {
  color: var(--light-gold);
  letter-spacing: 0.05em;
}

/* ============================================
   IMAGE CARDS & GALLERY
   ============================================ */
.img-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 60, 52, 0.06);
  transition: all 0.3s ease;
}
.img-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.img-full { width: 100%; height: auto; display: block; }
.img-caption {
  text-align: center; padding: 10px 16px; font-size: 0.78rem;
  color: var(--text-light); letter-spacing: 0.06em;
  background: linear-gradient(to bottom, var(--white), #FCFAF5);
  font-family: var(--font-cn);
}
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px;
}
.gallery-grid .img-card { display: flex; flex-direction: column; }
.gallery-grid .img-full { flex: 1; min-height: 0; object-fit: cover; }

.cert-card {
  border: 1px solid rgba(201, 169, 110, 0.4);
  box-shadow: 0 2px 20px rgba(201, 169, 110, 0.1);
  padding: 6px;
  background: linear-gradient(135deg, #FFFDF5, #FAF7F0);
}
.cert-card .img-full { border-radius: var(--radius-sm); }

/* ============================================
   TRUST BADGES ROW
   ============================================ */
.trust-badges {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 16px;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 60, 52, 0.05);
}
.tb-icon { font-size: 1.1rem; }
.tb-text { font-size: 0.8rem; color: var(--text-mid); letter-spacing: 0.04em; }

/* ============================================
   SHOP CARD (关于我们 · 门店)
   ============================================ */
.shop-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.shop-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.shop-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.shop-info {
  padding: 18px 18px 16px;
}
.shop-name {
  font-family: var(--font-cn);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--light-gold);
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}
.shop-tagline {
  font-size: 0.82rem;
  color: rgba(250, 247, 240, 0.6);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.shop-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.ss-tag {
  font-size: 0.74rem;
  color: var(--gold);
  padding: 4px 10px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 14px;
  letter-spacing: 0.04em;
}
.shop-meta {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 10px;
  border-top: 1px dashed rgba(201, 169, 110, 0.15);
}
.sm-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(250, 247, 240, 0.78);
}
.sm-icon { font-size: 0.95rem; }
.sm-text strong { color: var(--gold); }

/* ============================================
   STEPS INDICATOR
   ============================================ */
.steps-indicator {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
}
.si-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.si-circle {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 700;
  background: #E5DED0; color: var(--text-light);
  transition: all 0.3s ease;
}
.si-step.active .si-circle { background: var(--gold); color: var(--white); }
.si-step.done .si-circle { background: var(--deep-green); color: var(--cream); }
.si-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.04em; }
.si-step.active .si-label { color: var(--gold); font-weight: 600; }
.si-line {
  width: 52px; height: 1px; background: #E5DED0; margin: 0 8px; margin-bottom: 20px;
}
.si-line.done { background: var(--deep-green); }

/* ============================================
   PACKAGE CARDS
   ============================================ */
.package-list { display: flex; flex-direction: column; gap: 14px; }
.package-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent; cursor: pointer;
  transition: all 0.3s ease; position: relative;
}
.package-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
  border-color: rgba(201, 169, 110, 0.2);
}
.package-card.selected {
  border-color: var(--gold);
  box-shadow: 0 4px 28px rgba(201, 169, 110, 0.18);
  background: linear-gradient(135deg, #FFFEF9, #FFFDF5);
}
.package-card.selected::after {
  content: '✓'; position: absolute; top: 16px; right: 16px;
  width: 26px; height: 26px; background: var(--gold); color: var(--white);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.8rem; font-weight: 700;
}

.package-save {
  position: absolute; top: 16px; right: 56px;
  font-size: 0.72rem; color: var(--danger); font-weight: 600;
  background: #FFF5F5; padding: 2px 10px; border-radius: 10px;
  letter-spacing: 0.03em;
}
.package-card.selected .package-save { right: 58px; }

.package-badge {
  display: inline-block; padding: 3px 14px; border-radius: 16px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  margin-bottom: 14px; color: var(--white); background: var(--gold);
}
.badge-hot { background: linear-gradient(135deg, #E74C3C, #C0392B); }
.badge-value { background: linear-gradient(135deg, #E67E22, #D35400); }

/* 家庭装卡片 - 产品小图（透明抠图效果） */
.pkg-product-thumb {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(201,169,110,0.15));
  border: 1.5px solid rgba(201,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkg-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: contrast(1.05) brightness(1.02);
  border-radius: 10px;
}
/* 通用选购按钮样式 */
.pkg-buy-btn {
  transition: all 0.25s ease !important;
  border: none !important;
}
.pkg-buy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(201,169,110,0.35);
}
.pkg-buy-btn.bought {
  background: #27AE60 !important;
  color: #fff !important;
  pointer-events: none;
}

/* 套餐卡片底部"+ 选购"标签 - 选购动画过渡 */
.promo-grid-inline .promo-item > span[style*="background"],
.promo-item > span[style*="background"] {
  transition: all 0.3s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.package-name {
  font-family: var(--font-cn); font-size: 1.2rem;
  font-weight: 700; color: var(--deep-green);
  margin-bottom: 6px; letter-spacing: 0.04em;
}
.package-price { margin-bottom: 12px; }
.package-price .current {
  font-size: 1.9rem; font-weight: 700; color: var(--gold);
  font-family: var(--font-cn);
}
.package-price .original {
  font-size: 0.84rem; color: #B0A590;
  text-decoration: line-through; margin-left: 10px;
}
.package-price .unit { font-size: 0.8rem; color: var(--text-mid); }
.package-desc {
  font-size: 0.82rem; color: var(--text-mid);
  line-height: 1.6; margin-bottom: 6px;
}
.package-features { list-style: none; }
.package-features li {
  font-size: 0.8rem; color: var(--text-mid);
  padding: 4px 0; padding-left: 16px; position: relative;
  letter-spacing: 0.02em;
}
.package-features li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 22px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 60, 52, 0.06);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; margin-bottom: 6px; font-size: 0.86rem;
  font-weight: 500; color: var(--text-mid); letter-spacing: 0.02em;
}
.form-label .required { color: var(--danger); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid #E5DED0; border-radius: var(--radius-sm);
  font-size: 0.93rem; font-family: var(--font-sans);
  color: var(--text-dark); background: #FCFAF5;
  transition: all 0.3s ease; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 76px; }
.form-input::placeholder { color: #C4BBA8; }
.form-row { display: flex; gap: 12px; }

.order-summary-strip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; margin: 16px 0;
  background: #FFFDF5; border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.oss-left { font-size: 0.85rem; color: var(--text-mid); }
.oss-right { display: flex; align-items: baseline; gap: 8px; }
.oss-label { font-size: 0.78rem; color: var(--text-light); }
.oss-price {
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
  font-family: var(--font-cn);
}

.notice-card {
  margin-top: 16px; padding: 14px 18px;
  background: #FFFDF5; border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 169, 110, 0.15);
  font-size: 0.78rem; color: var(--text-mid); line-height: 1.7;
}
.notice-card strong { color: var(--warning); }

/* ============================================
   PAYMENT SECTION
   ============================================ */
.summary-title {
  font-family: var(--font-cn); font-size: 1rem;
  color: var(--deep-green); margin-bottom: 12px;
}
.summary-content {
  font-size: 0.88rem; color: var(--text-mid); line-height: 2;
}
.summary-content strong { color: var(--text-dark); }

.pay-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.pay-step {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid rgba(26, 60, 52, 0.06);
}
.ps-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: linear-gradient(135deg, #FCFAF5, #FFFDF8);
  border-bottom: 1px solid #F0EBE0;
}
.ps-num {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700;
  background: var(--gold); color: var(--white);
  flex-shrink: 0;
}
.ps-title {
  font-size: 0.92rem; font-weight: 600; color: var(--deep-green);
  letter-spacing: 0.03em;
}
.ps-body { padding: 20px; }
.ps-hint {
  font-size: 0.85rem; color: var(--text-mid);
  text-align: center; margin-bottom: 16px; line-height: 1.6;
}

/* QR Code Image */
.pay-qr-image {
  width: 220px; height: 220px;
  margin: 0 auto 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  padding: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.15);
}
.pay-qr-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

.pay-amount {
  font-family: var(--font-cn); font-size: 2rem; font-weight: 700;
  color: var(--gold); text-align: center; margin: 12px 0;
  letter-spacing: 0.04em;
}

.pay-note-inline {
  font-size: 0.78rem; color: var(--warning); text-align: center;
  padding: 10px 16px; background: #FFF9F0; border-radius: var(--radius-sm);
  margin-top: 12px; border: 1px solid rgba(230, 126, 34, 0.12);
}
.pay-note-inline strong { color: var(--danger); }

/* Upload */
.upload-area {
  border: 2px dashed #E5DED0; border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center;
  transition: all 0.3s ease; cursor: pointer; background: #FCFAF5;
}
.upload-area:hover { border-color: var(--gold); background: #FFFDF8; }
.upload-icon { font-size: 2.2rem; margin-bottom: 6px; }
.upload-text { font-size: 0.88rem; color: var(--text-mid); }
.upload-hint {
  font-size: 0.72rem; color: var(--text-light); margin-top: 4px;
}
.upload-preview {
  max-width: 100%; max-height: 180px;
  border-radius: var(--radius-sm); margin-top: 10px;
}

/* Loading Spinner */
.loading-spinner {
  width: 40px; height: 40px; margin: 0 auto;
  border: 3px solid #F0EBE0; border-top-color: var(--gold);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.success-icon-wrapper {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 50%; background: #E8F5E9;
  display: flex; align-items: center; justify-content: center;
}
.success-icon {
  font-size: 1.8rem; color: var(--success); font-weight: 700;
}
.success-title {
  font-family: var(--font-cn); font-size: 1.3rem;
  color: var(--deep-green); margin-bottom: 8px;
}
.success-desc {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.8;
}
.verification-code-box {
  display: inline-flex; flex-direction: column; align-items: center;
  margin: 16px 0; padding: 16px 28px;
  background: #FFFDF5; border-radius: var(--radius-md);
  border: 2px solid var(--gold);
}
.vc-label {
  font-size: 0.72rem; color: var(--text-light);
  letter-spacing: 0.08em; margin-bottom: 4px;
}
.vc-code {
  font-family: var(--font-cn); font-size: 1.6rem;
  color: var(--gold); letter-spacing: 0.1em;
}
.success-note {
  font-size: 0.84rem; color: var(--text-mid);
  line-height: 1.8; margin: 12px 0;
}
.success-actions { margin-top: 16px; }
.success-contact {
  font-size: 0.78rem; color: var(--text-light); margin-top: 16px;
}

/* ============================================
   UU跑腿 SECTION
   ============================================ */
.uupt-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.uupt-banner {
  display: flex;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #1A3C34 0%, #0F2A24 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.uupt-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.18), transparent 50%);
  pointer-events: none;
}
.uupt-banner-left { flex: 1; position: relative; z-index: 1; }
.uupt-banner-right { position: relative; z-index: 1; margin-left: 16px; }
.uupt-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.uupt-title {
  font-family: var(--font-cn);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.uupt-desc {
  font-size: 0.78rem;
  color: rgba(250, 247, 240, 0.7);
  line-height: 1.6;
}
.uupt-icon-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.uupt-icon {
  font-size: 1.4rem;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uupt-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px 20px;
  background: var(--cream);
}
.uupt-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.uupt-f-icon {
  font-size: 1.4rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(232, 213, 183, 0.08));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.uupt-f-title {
  font-size: 0.85rem;
  color: var(--deep-green);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.uupt-f-desc {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 1px;
}
.uupt-cta {
  padding: 14px 20px 18px;
  background: var(--cream);
  border-top: 1px dashed rgba(201, 169, 110, 0.2);
}
.uupt-cta-hint {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-mid);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

/* ============================================
   STATUS BADGES
   ============================================ */
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 16px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.03em;
}
.badge-pending { background: #FFF3E0; color: #E67E22; }
.badge-paid { background: #E8F5E9; color: #27AE60; }
.badge-verified { background: #E3F2FD; color: #2980B9; }
.badge-cancelled { background: #FFEBEE; color: #C0392B; }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  padding: 12px 28px; border-radius: var(--radius-md);
  color: var(--white); font-size: 0.88rem; font-weight: 500;
  z-index: 9999; box-shadow: var(--shadow-lg);
  animation: slideDown 0.3s ease; max-width: 90%; text-align: center;
}
.toast-success { background: var(--success); }
.toast-error { background: var(--danger); }
.toast-info { background: var(--info); }
@keyframes slideDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 42, 36, 0.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px; backdrop-filter: blur(4px);
}
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; max-width: 400px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border: none;
  background: transparent; font-size: 1.2rem; cursor: pointer;
  color: var(--text-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.modal-close:hover { background: #F5F5F5; }
.modal-title {
  font-family: var(--font-cn); font-size: 1.3rem;
  font-weight: 700; color: var(--deep-green);
  margin-bottom: 20px; text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, #102A24, var(--dark-green));
  color: rgba(250, 247, 240, 0.65);
  padding: 40px 20px 24px; text-align: center;
  font-size: 0.82rem; line-height: 2;
  margin-bottom: 70px;
}
.footer-brand {
  font-family: var(--font-cn); font-size: 1.05rem;
  color: var(--light-gold); margin-bottom: 6px; letter-spacing: 0.1em;
}
.footer-links {
  margin-top: 4px; font-size: 0.8rem; color: rgba(250,247,240,0.5);
}
.f-sep { margin: 0 8px; opacity: 0.4; }
.footer-disclaimer {
  font-size: 0.7rem; color: rgba(250, 247, 240, 0.35);
  margin-top: 14px; line-height: 1.8;
}

/* ============================================
   FIXED BOTTOM BAR
   ============================================ */
.fixed-bottom {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 10px 20px;
  box-shadow: 0 -2px 20px rgba(15, 42, 36, 0.08);
  z-index: 100; display: flex; gap: 12px; align-items: center;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.fb-left { flex: 1; }
.fb-price-label { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.04em; }
.fb-price {
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
  font-family: var(--font-cn);
}
.fb-btn { flex: 1; max-width: 180px; border-radius: 50px; }

/* ============================================
   FLOATING CUSTOMER SERVICE BUTTON
   ============================================ */
.floating-cs {
  position: fixed;
  right: 14px;
  bottom: 90px;
  z-index: 90;
  cursor: pointer;
  user-select: none;
}
.floating-cs-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 70px;
  background: linear-gradient(135deg, #C9A96E, #B8944F);
  border-radius: 30px 30px 6px 30px;
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.45);
  color: var(--white);
  transition: all 0.3s ease;
}
.floating-cs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.6);
}
.fc-icon { font-size: 1.4rem; margin-bottom: 2px; }
.fc-label {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* 客服弹窗 */
.cs-panel {
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 36, 0.55);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.cs-panel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 22px;
  max-width: 320px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--gold);
}
.cs-panel-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.cs-panel-close:hover { background: #F5F5F5; }
.cs-panel-title {
  font-family: var(--font-cn);
  font-size: 1.15rem;
  color: var(--deep-green);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.cs-panel-qr {
  width: 200px;
  height: 200px;
  margin: 0 auto 12px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-sm);
  padding: 6px;
  background: #fff;
}
.cs-panel-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cs-panel-hint {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 4px;
}
.cs-panel-time {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ============================================
   SECTION BACKGROUND BANDS (dark)
   ============================================ */
.section-band-dark {
  background: linear-gradient(180deg, #0F2620, #132E26, #0F2620);
  color: var(--cream); padding: 56px 0;
  position: relative; overflow: hidden;
}
.section-band-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 169, 110, 0.04), transparent 60%);
  pointer-events: none;
}
.section-band-dark .section-title { color: var(--cream); }
.section-band-dark .section-subtitle { color: rgba(250, 247, 240, 0.6); }

/* ============================================
   ADMIN STYLES
   ============================================ */
.admin-layout { display: flex; }

.admin-sidebar {
  width: 220px; background: var(--dark-green);
  color: var(--cream); padding: 20px 0; min-height: 100vh;
}
.admin-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px; color: rgba(250, 247, 240, 0.7);
  font-size: 0.9rem; cursor: pointer; transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.admin-nav-item:hover,
.admin-nav-item.active {
  background: rgba(201, 169, 110, 0.1);
  color: var(--cream); border-left-color: var(--gold);
}
.admin-main {
  flex: 1; background: #F5F3EE;
  padding: 24px; min-height: 100vh;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 20px; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--deep-green);
}
.stat-card-stage1 { border-top-color: #E67E22; }
.stat-card-stage2 { border-top-color: #2980B9; }
.stat-card-stage3 { border-top-color: #27AE60; }
.stat-label { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 8px; }
.stat-value { font-size: 1.8rem; font-weight: 700; color: var(--deep-green); }
.stat-change { font-size: 0.8rem; margin-top: 4px; }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.card-gold-border { border: 1px solid rgba(201, 169, 110, 0.3); }

.data-table {
  width: 100%; background: var(--white);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.data-table table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--dark-green); color: var(--cream);
  padding: 12px 16px; text-align: left;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em;
}
.data-table td {
  padding: 12px 16px; font-size: 0.85rem;
  border-bottom: 1px solid #F0EBE0; color: var(--text-dark);
}
.data-table tr:hover td { background: #FFFDF8; }
.data-table .actions { display: flex; gap: 8px; flex-wrap: wrap; }

.action-btn {
  padding: 4px 12px; border: none; border-radius: 4px;
  font-size: 0.78rem; cursor: pointer; transition: all 0.2s ease; font-weight: 500;
}
.action-btn-verify { background: #E3F2FD; color: #2980B9; }
.action-btn-verify:hover { background: #BBDEFB; }
.action-btn-view { background: #F3E5F5; color: #7B1FA2; }
.action-btn-view:hover { background: #E1BEE7; }
.action-btn-delete { background: #FFEBEE; color: #C0392B; }
.action-btn-delete:hover { background: #FFCDD2; }

.search-bar { display: flex; gap: 12px; margin-bottom: 20px; }
.search-input {
  flex: 1; padding: 10px 16px; border: 1.5px solid #E0D8CC;
  border-radius: var(--radius-sm); font-size: 0.9rem;
  outline: none; background: var(--white);
}
.search-input:focus { border-color: var(--gold); }
.filter-select {
  padding: 10px 16px; border: 1.5px solid #E0D8CC;
  border-radius: var(--radius-sm); font-size: 0.9rem;
  outline: none; background: var(--white); min-width: 140px;
}

.tabs {
  display: flex; gap: 0; margin-bottom: 24px;
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.tab-item {
  padding: 12px 24px; font-size: 0.9rem; cursor: pointer;
  border: none; background: transparent; color: var(--text-mid);
  transition: all 0.2s ease; border-bottom: 3px solid transparent;
}
.tab-item:hover { color: var(--deep-green); }
.tab-item.active { color: var(--gold); border-bottom-color: var(--gold); font-weight: 600; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero-title { font-size: 1.8rem; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; min-height: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .data-table { overflow-x: auto; }
}

/* ========================================
   V6.0 STYLES - 产品详情重构 + 合并卡片区 + 紧凑流程
   ======================================== */

/* --- 金色背景区内嵌三视图（替代原来的feature-effect-product） --- */
.fe-threeview-inside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 0 4px;
}
.fei-top {
  width: 75%;
  max-width: 200px;
  text-align: center;
}
.fei-top img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25));
}
.fei-bottom {
  display: flex;
  gap: 10px;
  width: 85%;
  max-width: 280px;
}
.fei-item {
  flex: 1;
  text-align: center;
}
.fei-item img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

/* --- 门店自动横向滚动动画 --- */
.shop-gallery-scroll.auto-scroll .shop-scroll-track {
  animation: scrollLeft 12s linear infinite;
}
.shop-gallery-scroll.auto-scroll:hover .shop-scroll-track {
  animation-play-state: paused;
}
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* 产品展示图静态显示 */
.fei-top-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25));
}

/* 需要在JS中复制子项或直接用CSS重复 - 这里用简单方案：加长轨道 */
.auto-scroll-dup .shop-scroll-item {
  /* JS会负责复制 */
}

/* --- 合并购买专区 --- */
.merged-purchase-zone {
  background: linear-gradient(180deg, #FAF7F0, #FFFDF5, #FAF7F0);
  border-radius: var(--radius-xl);
  margin: 0 -20px;
  padding-left: 20px !important;
  padding-right: 20px !important;
  position: relative;
}
.merged-purchase-zone::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* 新客户专享内联网格（居中版 · 单行横排） */
.promo-grid-inline {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* 隐藏滚动条 */
}
.promo-grid-inline::-webkit-scrollbar { display: none; }
.promo-grid-inline .promo-item {
  flex: 0 0 auto;
  width: 105px !important;
  padding: 10px 8px 8px !important;
}
/* 两排布局（能量舱6项 = 3+3，会员专享8项 = 4+4） */
.promo-two-rows {
  flex-wrap: wrap !important;
  overflow-x: visible !important;
}
.promo-3col .promo-item {
  width: calc(33.33% - 7px) !important;
}
.promo-4col .promo-item {
  width: calc(25% - 8px) !important;
}

/* 横排模式下的卡片内容紧凑化 */
.promo-grid-inline .promo-icon-head {
  font-size: 1.3rem !important;
  margin-bottom: 2px !important;
}
.promo-grid-inline .promo-name {
  font-size: 0.72rem !important;
  margin-bottom: 1px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.promo-grid-inline .promo-duration {
  font-size: 0.6rem !important;
  margin-bottom: 2px !important;
}
.promo-grid-inline .promo-price {
  margin-bottom: 2px !important;
}
.promo-grid-inline .promo-price .promo-yen {
  font-size: 0.62rem !important;
}
.promo-grid-inline .promo-price .promo-num {
  font-size: 1.25rem !important;
}
.promo-grid-inline .promo-item > span[style*="background"] {
  font-size: 0.56rem !important;
  padding: 2px 8px !important;
}

/* --- 紧凑步骤指示器 --- */
.steps-indicator-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  gap: 0;
}
.sic-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sic-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  background: #E5DED0;
  color: var(--text-light);
  transition: all 0.3s ease;
}
.sic-step.active .sic-circle { background: var(--gold); color: var(--white); }
.sic-step.done .sic-circle { background: var(--deep-green); color: var(--cream); }
.sic-label {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}
.sic-step.active .sic-label { color: var(--gold); font-weight: 600; }
.sic-line {
  width: 36px;
  height: 1px;
  background: #E5DED0;
  margin: 0 10px;
  margin-bottom: 14px;
}
.sic-line.done { background: var(--deep-green); }

/* --- 套餐价格修复（确保不连写） --- */
.package-price .current {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-cn);
  margin-right: 8px;
}
.package-price .original {
  font-size: 0.84rem;
  color: #B0A590;
  text-decoration: line-through;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0 52px; }
  .hero-title { font-size: 1.55rem; }
  .product-img-area { width: 180px; height: 180px; }
  .section { padding: 44px 0; }
  .section-title { font-size: 1.35rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-hero, .btn-outline-hero { width: 80%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .tabs { flex-wrap: wrap; }
  .fb-price { font-size: 1.2rem; }
  .fb-btn { max-width: 140px; font-size: 0.85rem; padding: 12px 16px; }
  .feature-effect-product { width: 60%; }
  .ft-bottom { gap: 8px; }
  .uupt-features { grid-template-columns: 1fr; }
  .floating-cs { right: 10px; bottom: 80px; }
  .floating-cs-btn { width: 54px; height: 62px; }

  /* v5.0/v6.0 响应式 */
  .shop-scroll-item { min-width: 220px; }
  .exp-grid-3 { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .promo-grid-inline { gap: 8px; }
  .uupt-sa-header { flex-direction: column; text-align: center; }
  .uupt-sa-qrcode { margin-top: 14px; align-self: center; }

  /* v6.0 compact responsive */
  .fei-bottom { max-width: 220px; }
  .fei-item img { height: 110px; }
  .merged-purchase-zone { margin: 0 -16px; padding-left: 16px !important; padding-right: 16px !important; }
  .steps-indicator-compact { gap: 0; }
  .sic-line { width: 24px; margin: 0 6px; margin-bottom: 12px; }
}

/* ============================================
   V5.0 NEW STYLES
   ============================================ */

/* --- 产品详情首图缩小30% --- */
.product-img-shrink30 {
  width: 49%;       /* 原始70% × 0.7 = 49% */
  max-width: 168px;
}

/* --- 门店横向滚动画廊（缩小20%+新增图片） --- */
.shop-gallery-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  padding: 4px 0;
}
.shop-gallery-scroll::-webkit-scrollbar { display: none; }
.shop-scroll-track {
  display: flex;
  gap: 12px;
  padding: 6px 2px;
}
.shop-scroll-item {
  flex-shrink: 0;
  text-align: center;
}
.shop-scroll-item img {
  display: block;
  /* 缩小20%: 原宽100%容器 → 80% */
  width: calc( (100vw - 40px - var(--radius-lg)) * 0.64 );
  max-width: 280px;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shop-scroll-item:hover img {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
.scroll-caption {
  font-size: 0.72rem;
  color: rgba(250,247,240,0.55);
  margin-top: 6px;
  letter-spacing: 0.06em;
  font-family: var(--font-cn);
}

/* --- 养生体验卡片区 --- */
.exp-card {
  background: linear-gradient(135deg, #FFFEF9, #FFFDF5, #FFF9E8);
  border: 1.5px solid rgba(201,169,110,0.35);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  align-items: stretch;
}
.exp-card-gold {
  background: linear-gradient(135deg, #FFFDF5, #FFF8E1, #FFF3CC);
  border-color: var(--gold);
}
.exp-card-left {
  flex-shrink: 0;
  width: 120px;
}
.exp-thumb {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,169,110,0.25);
}
.exp-card-right {
  flex: 1;
  min-width: 0;
}
.exp-badge {
  display: inline-block;
  padding: 2px 10px;
  background: linear-gradient(135deg, #E74C3C, #C0392B);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.exp-title {
  font-family: var(--font-cn);
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.exp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.exp-list li {
  position: relative;
  padding-left: 14px;
}
.exp-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 3px;
}
.exp-note {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(201,169,110,0.2);
}

/* --- 三列设施卡片 --- */
.exp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.exp-facility-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,60,52,0.06);
  transition: all 0.3s ease;
}
.exp-facility-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.exp-facility-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.exp-facility-body {
  padding: 14px 12px;
}
.exp-facility-name {
  font-family: var(--font-cn);
  font-size: 0.92rem;
  color: var(--deep-green);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.exp-facility-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.exp-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.tech-tag {
  font-size: 0.68rem;
  padding: 2px 8px;
  background: linear-gradient(135deg, rgba(201,169,110,0.1), rgba(232,213,183,0.08));
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 10px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* --- 新客户优惠区 --- */
.promo-section {
  background: linear-gradient(180deg, #FAF7F0, #FFFDF5);
  border-radius: var(--radius-xl);
  padding: 48px 20px !important;
  margin: 0 -20px;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.promo-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 16px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.promo-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,110,0.3);
}
.promo-item.promo-hot {
  border-color: #E67E22;
}
.promo-item.promo-best {
  border-color: var(--gold);
}
.promo-icon-head {
  font-size: 2rem;
  margin-bottom: 8px;
}
.promo-name {
  font-family: var(--font-cn);
  font-size: 0.95rem;
  color: var(--deep-green);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.promo-duration {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.promo-price {
  margin-bottom: 12px;
}
.promo-yen {
  font-size: 0.82rem;
  color: var(--gold);
  vertical-align: super;
  font-weight: 600;
}
.promo-num {
  font-family: var(--font-cn);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  background: transparent;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
}
.promo-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* --- UU跑腿独立卡片含uu.png --- */
.uupt-standalone-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(255,165,0,0.3); /* UU橙色边框 */
}
.uupt-sa-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px;
  background: linear-gradient(135deg, #FF6B00, #E85A00);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.uupt-sa-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 40%, rgba(255,255,255,0.15), transparent 50%);
  pointer-events: none;
}
.uupt-sa-text {
  flex: 1;
  position: relative;
  z-index: 1;
}
.uupt-sa-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: #FFE0B2;
  border: 1px solid rgba(255,225,180,0.4);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.uupt-sa-title {
  font-family: var(--font-cn);
  font-size: 1.25rem;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.uupt-sa-desc {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.uupt-sa-qrcode {
  flex-shrink: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.uupt-sa-qrcode img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.6);
  background: var(--white);
  padding: 4px;
  display: block;
}
.uupt-sa-qr-tip {
  font-size: 0.66rem;
  color: #FFE0B2;
  margin-top: 4px;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.uupt-sa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px 20px;
  background: var(--cream);
}

/* ====== 客服微信二维码弹窗（初次体验预约） ====== */
#wechatQRModal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 27, 42, 0.72);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#wechatQRModal.show {
  display: flex;
}
.wechat-qr-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 14px 12px;
  max-width: 240px;
  width: 70%;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  border: 2px solid rgba(201,169,110,0.35);
  animation: fadeInUp 0.3s ease;
}
.close-btn {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.close-btn:hover { background: #e0e0e0; color: #333; }
.wechat-qr-card h3 {
  font-family: var(--font-cn);
  font-size: 0.8rem;
  color: var(--deep-green);
  font-weight: 700;
  margin: 0 0 2px;
}
.wechat-qr-tip {
  font-size: 0.7rem;
  color: var(--text-light);
  margin: 0 0 10px;
}
.wechat-qr-image-wrap {
  display: inline-block;
  padding: 5px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(201,169,110,0.3);
}
.wechat-qr-image-wrap img {
  width: 130px;
  height: 130px;
  display: block;
  border-radius: 5px;
}
.wechat-qr-hint {
  font-size: 0.7rem;
  color: var(--text-mid);
  margin: 10px 0 0;
}
.wechat-qr-hint2 {
  font-size: 0.66rem;
  color: var(--gold);
  font-weight: 600;
  background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(201,169,110,0.15));
  padding: 6px 12px;
  border-radius: 8px;
  margin-top: 8px;
  line-height: 1.4;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== 逐级支付向导 ====== */
.pay-wizard {
  animation: fadeInUp 0.35s ease;
}
.pw-step {
  background: #FFFCF8;
  border-radius: 14px;
  padding: 18px 16px 14px;
  border: 1px solid rgba(201,169,110,0.2);
  animation: pwSlideIn 0.35s ease;
}
@keyframes pwSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.pw-step-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0ebe0;
}
.pw-step-badge {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pw-step-badge.active {
  background: var(--gold);
  color: #fff;
}
.pw-step-badge.done {
  background: #27AE60;
  color: #fff;
}
.pw-step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-green);
}
.pw-step-label.done-label {
  color: #27AE60;
}
.pw-step-arrow {
  color: #ddd;
  font-size: 0.85rem;
  margin: 0 2px;
}
.pw-step-body {
  padding: 0 4px;
}
