/*
Theme Name: 美冠塔口腔官网
Theme URI: https://5i5y.com.cn
Description: 美冠塔中老年口腔专科官方网站主题 - 沉稳质感型。手机优先、大字号模式、城市筛选、GEO友好。
Version: 1.0.0
Author: AI Assistant
Author URI: https://5i5y.com.cn
Text Domain: megranta-dental
Tags: one-column, two-columns, responsive, accessibility-ready, custom-post-types
License: GPL-2.0-or-later
*/

/* ========== Design Tokens ========== */
:root {
  --primary: #2c4a6e;
  --primary-dark: #1a3352;
  --accent: #b05d2a;
  --accent-light: #c8764a;
  --bg-warm: #f7f2eb;
  --bg-white: #ffffff;
  --text-dark: #1a1a1a;
  --text-body: #3d3d3d;
  --text-light: #7a8fa6;
  --border: #e0d8cc;
  --success: #3d7a5c;
  --shadow: 0 2px 16px rgba(44,74,110,0.08);
  --shadow-hover: 0 6px 24px rgba(44,74,110,0.14);
}

/* ========== Reset & Base ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--bg-warm);
  color: var(--text-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
body.big-font { font-size: 18px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ========== Typography ========== */
.text-hero { font-size: 2.25rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; }
.text-h1 { font-size: 2.125rem; font-weight: 700; line-height: 1.3; }
.text-h2 { font-size: 1.375rem; font-weight: 600; line-height: 1.4; }
.text-h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.5; }
.text-body { font-size: 1rem; font-weight: 400; line-height: 1.8; }
.text-small { font-size: 0.875rem; font-weight: 400; line-height: 1.7; }
.text-label { font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* ========== Top Bar ========== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar a { color: #fff; text-decoration: none; font-weight: 600; }
.top-bar i { margin-right: 0.25rem; }

/* ========== Navbar ========== */
.navbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.125rem;
}
.nav-logo-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.125rem; font-weight: 700;
  color: var(--primary); letter-spacing: 0.05em; line-height: 1.2;
}
.nav-logo-sub { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.1em; }
.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-body);
  font-size: 1rem; font-weight: 600;
  padding: 0.5rem 0.875rem; border-radius: 6px; transition: all 0.2s;
}
.nav-links a:hover, .nav-links .current-menu-item > a, .nav-links a.active { background: var(--primary); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  display: flex; align-items: center; gap: 0.375rem;
  color: var(--primary); font-weight: 600; font-size: 1rem; text-decoration: none;
}
.font-toggle {
  padding: 0.375rem 0.875rem;
  background: var(--bg-warm); border: 1px solid var(--border); border-radius: 6px;
  font-size: 0.8125rem; color: var(--text-body); cursor: pointer; font-weight: 500;
  transition: all 0.2s; display: flex; align-items: center; gap: 0.25rem;
}
.font-toggle:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-nav-appoint {
  background: var(--accent); color: #fff; border: none;
  padding: 0.5rem 1.25rem; border-radius: 6px;
  font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 0.375rem; text-decoration: none;
}
.btn-nav-appoint:hover { background: var(--accent-light); }

/* ========== Children Banner ========== */
.children-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: 0.875rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
}
.children-banner p { color: #fff; font-size: 0.9375rem; font-weight: 500; }
.children-banner-btn {
  padding: 0.5rem 1.25rem; background: #fff; color: var(--accent);
  border: none; border-radius: 6px; font-size: 0.875rem; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
  display: flex; align-items: center; gap: 0.375rem;
}
.children-banner-btn:hover { background: #fef8f4; }

/* ========== Hero ========== */
.hero {
  background: var(--primary-dark); color: #fff;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 960px; margin: 0 auto; padding: 3.5rem 1.5rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero-year {
  font-family: 'Noto Serif SC', serif; font-size: 6rem; font-weight: 900;
  color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: -0.5rem; letter-spacing: -0.04em;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem; border-radius: 100px;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.05em; margin-bottom: 1rem;
  color: rgba(255,255,255,0.8);
}
.hero-title { color: #fff; margin-bottom: 1rem; }
.hero-title em { color: #d4a574; font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.8); font-size: 1.125rem; line-height: 1.8; margin-bottom: 1.75rem;
  border-left: 2px solid rgba(255,255,255,0.25); padding-left: 1rem;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-primary-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: var(--primary); border: none;
  padding: 0.875rem 2rem; border-radius: 8px;
  font-size: 1rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s; min-height: 52px;
}
.btn-primary-hero:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-secondary-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.875rem 2rem; border-radius: 8px;
  font-size: 1rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s; min-height: 48px;
}
.btn-secondary-hero:hover { background: rgba(255,255,255,0.18); }

.hero-quote-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 2rem; backdrop-filter: blur(8px);
}
.hero-quote {
  font-family: 'Noto Serif SC', serif; font-size: 1.0625rem;
  color: rgba(255,255,255,0.9); line-height: 1.8; font-style: italic; margin-bottom: 1.25rem;
  border-left: 2px solid rgba(176,93,42,0.5); padding-left: 1rem;
}
.hero-quote-author { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.hero-stats { display: flex; gap: 1.5rem; }
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Noto Serif SC', serif; font-size: 2rem; font-weight: 900;
  color: #d4a574; line-height: 1;
}
.hero-stat-label { font-size: 0.9375rem; color: rgba(255,255,255,0.55); margin-top: 0.375rem; }

/* ========== Quick Call Bar ========== */
.quick-call-bar {
  background: var(--primary); padding: 0.75rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 2rem;
}
.call-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: #fff; color: var(--primary);
  padding: 0.75rem 1.5rem; border-radius: 8px;
  font-size: 1rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: all 0.2s; border: none;
}
.call-btn:hover { transform: scale(1.02); }
.call-btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.call-btn-outline:hover { background: rgba(255,255,255,0.1); }
.call-label { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }

/* ========== Trust Bar ========== */
.trust-bar {
  background: var(--bg-white); border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem; display: flex; justify-content: center; gap: 2.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; color: var(--text-body); }
.trust-icon {
  width: 32px; height: 32px;
  background: var(--bg-warm); border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0;
}
.trust-icon i { font-size: 0.875rem; }
.trust-text strong { color: var(--text-dark); font-weight: 600; }

/* ========== Section Blocks ========== */
.section { padding: 3.5rem 1.5rem; }
.section-white { background: var(--bg-white); }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--primary-dark); color: #fff; }
.section-dark .text-h1 { color: #fff; }
.section-deep { background: #0e1f2e; color: #fff; }
.section-deep .text-h1 { color: #fff; }
.container { max-width: 960px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: var(--accent); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-title { color: var(--text-dark); margin-bottom: 0.625rem; }
.section-desc { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 1rem; line-height: 1.7; }
.section-dark .section-label, .section-deep .section-label { color: rgba(255,255,255,0.6); }
.section-dark .section-title, .section-deep .section-title { color: #ffffff; }
.section-dark .section-desc, .section-deep .section-desc { color: rgba(255,255,255,0.8); }

/* ========== Problems Grid ========== */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.problem-card {
  background: var(--bg-white); border: 1px solid var(--border);
  padding: 1.5rem; transition: all 0.2s; cursor: pointer; display: block; text-decoration: none;
}
.problem-card:hover { border-color: var(--primary); }
.problem-card:hover .problem-name { color: var(--primary); }
.problem-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.problem-icon i { font-size: 1.5rem; color: var(--primary); }
.problem-name { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; transition: color 0.2s; line-height: 1.4; }
.problem-desc { font-size: 1rem; color: var(--text-body); line-height: 1.7; }
.problem-card + .problem-card { border-left: none; }
.problem-card:nth-child(-n+3) { border-bottom: none; }

/* ========== Disease Cards ========== */
.disease-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.disease-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 1.5rem 1.25rem; transition: all 0.25s; display: block; text-decoration: none;
}
.disease-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(176,93,42,0.5); }
.disease-card-icon {
  width: 48px; height: 48px; background: rgba(240,200,144,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.disease-card-icon i { font-size: 1.5rem; }
.disease-card-title { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.625rem; }
.disease-card-desc { font-size: 1.0625rem; color: rgba(255,255,255,0.92); line-height: 1.7; }
.disease-card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.disease-tag {
  padding: 0.3rem 0.75rem; background: rgba(212,165,116,0.25); border-radius: 100px;
  font-size: 0.875rem; color: #e8c49a;
}

/* ========== Doctor Cards ========== */
.doctor-top-bar {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem;
  gap: 0.75rem; background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.75rem 1rem;
}
.doctor-top-bar-label { font-size: 0.875rem; color: var(--text-light); }
.doctor-top-bar-label strong { color: var(--text-dark); font-weight: 600; }
.doctor-standard-btn {
  display: flex; align-items: center; gap: 0.375rem; color: var(--primary);
  font-size: 0.875rem; font-weight: 500; text-decoration: none;
  border: 1px solid var(--primary); padding: 0.375rem 0.875rem; border-radius: 6px; transition: all 0.2s;
}
.doctor-standard-btn:hover { background: var(--primary); color: #fff; }
.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.doctor-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: all 0.25s; }
.doctor-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.doctor-card-pic { height: 140px; background: linear-gradient(135deg, var(--bg-warm) 0%, #e8e4db 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.doctor-card-pic i { font-size: 3rem; color: #c5bfb3; }
.doctor-rank {
  position: absolute; top: 0.625rem; left: 0.625rem;
  width: 28px; height: 28px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.8125rem; font-weight: 700;
}
.doctor-card-body { padding: 1.25rem; }
.doctor-name { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.doctor-meta { font-size: 1rem; color: var(--text-light); margin-bottom: 0.625rem; }
.doctor-bio { font-size: 1rem; color: var(--text-body); line-height: 1.65; margin-bottom: 0.875rem; }
.doctor-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.doctor-tag {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.875rem; color: var(--primary); background: rgba(44,74,110,0.08);
  padding: 0.25rem 0.625rem; border-radius: 100px;
}
.doctor-tag i { font-size: 0.75rem; }
.doctor-evals { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.doctor-eval {
  padding: 0.2rem 0.5rem; background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: 4px; font-size: 0.8125rem; color: var(--primary); font-weight: 500;
}
.doctor-more { text-align: center; margin-top: 2rem; }
.doctor-more a { color: var(--primary); font-size: 0.9375rem; font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--primary); padding-bottom: 2px; }
.doctor-single-header { background: var(--primary-dark); padding: 3rem 1.5rem; text-align: center; color: #fff; }
.doctor-single-body { max-width: 720px; margin: 0 auto; padding: 2rem 1.5rem; }

/* ========== Member ========== */
.member-intro {
  background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem; margin-bottom: 1.5rem; text-align: center;
}
.member-intro-icon {
  width: 52px; height: 52px; background: var(--primary); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.member-intro-icon i { font-size: 1.375rem; color: #fff; }
.member-intro h2 { font-family: 'Noto Serif SC', serif; font-size: 1.375rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.625rem; }
.member-intro p { color: var(--text-body); max-width: 480px; margin: 0 auto; font-size: 0.9375rem; }
.member-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.member-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.5rem; }
.member-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.member-card-icon { display: flex; align-items: center; }
.member-card-icon i { font-size: 1.5rem; }
.member-card-title { font-size: 1.0625rem; font-weight: 600; color: #fff; }
.member-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.9375rem; color: rgba(255,255,255,0.85); padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.member-list li:last-child { border-bottom: none; }
.member-list li i { color: #d4a574; margin-top: 0.2rem; font-size: 0.875rem; flex-shrink: 0; }
.member-philosophy {
  background: rgba(176,93,42,0.12); border-radius: 8px; padding: 1rem; margin-top: 1rem;
  font-size: 0.9375rem; color: rgba(255,255,255,0.9); line-height: 1.8;
  border-left: 2px solid #d4a574; font-family: 'Noto Serif SC', serif;
}
.member-join { text-align: center; margin-top: 1.5rem; }
.btn-member-join {
  display: inline-flex; align-items: center; gap: 0.5rem; background: #fff;
  color: var(--primary); border: none; padding: 0.75rem 2rem; border-radius: 8px;
  font-size: 0.9375rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-member-join:hover { background: var(--bg-warm); }

/* ========== Services ========== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card {
  background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.25rem; display: flex; gap: 0.875rem; transition: all 0.25s;
}
.service-card:hover { border-color: var(--primary); }
.service-icon {
  width: 40px; height: 40px; background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.125rem; flex-shrink: 0;
}
.service-name { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
.service-desc { font-size: 0.9375rem; color: var(--text-light); line-height: 1.65; }

/* ========== Stories ========== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.story-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; }
.story-result {
  display: inline-block; background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.2rem 0.75rem; font-size: 0.8125rem;
  color: var(--primary); font-weight: 500; margin-bottom: 0.875rem;
}
.story-q {
  font-family: 'Noto Serif SC', serif; font-size: 2rem; color: var(--accent); line-height: 1; margin-bottom: 0.5rem;
}
.story-text { font-size: 1.0625rem; color: var(--text-body); line-height: 1.75; margin-bottom: 1rem; font-style: italic; }
.story-info { display: flex; align-items: center; gap: 0.75rem; }
.story-avatar {
  width: 44px; height: 44px; background: var(--bg-warm); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.story-avatar i { font-size: 1.25rem; }
.story-name { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.story-meta { font-size: 0.9375rem; color: var(--text-light); }

/* ========== Stores ========== */
.city-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.city-tab {
  padding: 0.5rem 1.25rem; border: 1px solid var(--border); border-radius: 6px;
  font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
  background: var(--bg-white); color: var(--text-body);
}
.city-tab:hover { border-color: var(--primary); color: var(--primary); }
.city-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.store-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; transition: all 0.25s; }
.store-card:hover { border-color: var(--primary); }
.store-card.hidden { display: none; }
.store-city { font-size: 0.875rem; color: var(--accent); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.25rem; }
.store-name { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
.store-addr { font-size: 0.875rem; color: var(--text-light); line-height: 1.5; margin-bottom: 0.625rem; }
.store-tel { font-size: 0.9375rem; color: var(--primary); font-weight: 600; margin-bottom: 0.75rem; }
.store-actions { display: flex; gap: 0.5rem; }
.store-btn {
  flex: 1; padding: 0.5rem; border: 1px solid var(--border);
  background: transparent; color: var(--text-body); font-size: 0.875rem; font-weight: 500;
  border-radius: 6px; cursor: pointer; transition: all 0.2s;
  text-align: center; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 0.25rem;
}
.store-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(44,74,110,0.04); }
.store-time { font-size: 0.8125rem; color: var(--text-light); margin-top: 0.5rem; }
.store-branch-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
  padding: 0.4rem 0.9rem;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.store-branch-link:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ========== Booking Form ========== */
.form-section { background: var(--primary-dark); }
.form-section .section-label { color: rgba(255,255,255,0.65); }
.form-section .section-title { color: #fff; }
.form-section .section-desc { color: rgba(255,255,255,0.7); }
.form-card {
  background: var(--bg-white); border-radius: 12px; padding: 2rem; max-width: 600px; margin: 0 auto;
}
.form-title { font-size: 1.25rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.375rem; }
.form-subtitle { font-size: 0.9375rem; color: var(--text-light); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.9375rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.375rem; }
.form-group label span { color: #c0392b; }
.form-input {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 8px;
  font-size: 1rem; color: var(--text-dark); background: var(--bg-warm); transition: all 0.2s; font-family: inherit;
}
.form-input:focus { outline: none; border-color: var(--primary); background: var(--bg-white); }
.form-select {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.9375rem; color: var(--text-body); background: var(--bg-warm); cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; font-family: inherit;
}
.form-select:focus { outline: none; border-color: var(--primary); background-color: var(--bg-white); }
.form-checkbox-group { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.form-checkbox {
  display: flex; align-items: center; gap: 0.375rem; cursor: pointer;
  padding: 0.5rem 0.875rem; background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: 6px; transition: all 0.2s; user-select: none; font-size: 0.875rem;
}
.form-checkbox:hover { border-color: var(--primary); background: rgba(44,74,110,0.04); }
.form-checkbox.checked { background: var(--primary); color: #fff; border-color: var(--primary); }
.form-checkbox i { font-size: 0.875rem; }
.form-textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.9375rem; color: var(--text-dark); background: var(--bg-warm);
  resize: vertical; min-height: 80px; font-family: inherit;
}
.form-textarea:focus { outline: none; border-color: var(--primary); background: var(--bg-white); }
.form-agree { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 1rem; }
.form-agree input { margin-top: 0.2rem; accent-color: var(--primary); }
.form-agree span { font-size: 0.8125rem; color: var(--text-light); }
.form-agree a { color: var(--primary); }
.btn-submit {
  width: 100%; padding: 0.875rem; background: var(--primary); color: #fff;
  border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.btn-submit:hover { background: var(--primary-dark); }
.form-note { text-align: center; margin-top: 0.75rem; font-size: 0.8125rem; color: var(--text-light); display: flex; align-items: center; justify-content: center; gap: 0.375rem; }
.form-note i { color: var(--success); }
.form-msg { padding: 0.75rem; border-radius: 8px; margin-bottom: 1rem; font-size: 0.875rem; display: none; }
.form-msg.success { display: block; background: rgba(61,122,92,0.1); color: var(--success); border: 1px solid rgba(61,122,92,0.2); }
.form-msg.error { display: block; background: rgba(192,57,43,0.1); color: #c0392b; border: 1px solid rgba(192,57,43,0.2); }

/* ========== WeChat ========== */
.wechat-card {
  display: flex; align-items: center; gap: 2rem; max-width: 640px; margin: 0 auto;
  background: var(--bg-warm); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem;
}
.wechat-qr {
  width: 100px; height: 100px; background: #fff; border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wechat-qr i { font-size: 2.5rem; color: #c5bfb3; }
.wechat-qr img { width: 100%; height: 100%; object-fit: contain; }
.wechat-info h3 { font-size: 1.0625rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.375rem; }
.wechat-info p { font-size: 0.875rem; color: var(--text-body); margin-bottom: 0.75rem; }
.wechat-steps { display: flex; flex-direction: column; gap: 0.5rem; }
.wechat-step { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--text-body); }
.wechat-step-num {
  width: 20px; height: 20px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.75rem; font-weight: 600; flex-shrink: 0;
}

/* ========== FAQ ========== */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.faq-card {
  background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.5rem; cursor: pointer; transition: all 0.25s;
}
.faq-card:hover { border-color: var(--primary); }
.faq-q { font-size: 1.0625rem; font-weight: 600; color: var(--text-dark); display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.faq-icon {
  width: 28px; height: 28px; background: var(--bg-warm); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.125rem; flex-shrink: 0; transition: all 0.3s;
}
.faq-card.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a { font-size: 1.0625rem; color: var(--text-body); line-height: 1.75; display: none; margin-top: 0.875rem; }
.faq-card.open .faq-a { display: block; }

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, #1a3352 0%, var(--primary-dark) 100%);
  color: #fff; text-align: center; padding: 3.5rem 1.5rem;
}
.cta-title { font-family: 'Noto Serif SC', serif; font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; }
.cta-sub { font-size: 1.0625rem; opacity: 0.7; margin-bottom: 1.75rem; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; color: var(--primary);
  border: none; padding: 0.875rem 2.5rem; border-radius: 8px;
  font-size: 1.0625rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.cta-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* ========== About Page ========== */
.about-header { background: var(--primary-dark); padding: 4rem 1.5rem 3rem; text-align: center; color: #fff; }
.about-header h2 { font-family: 'Noto Serif SC', serif; font-size: 1.5rem; }
.about-content { max-width: 720px; margin: 0 auto; padding: 2rem 1.5rem; }
.about-content h3 { font-size: 1.25rem; font-weight: 600; color: var(--text-dark); margin: 2rem 0 0.75rem; }
.about-content p { margin-bottom: 1rem; line-height: 1.8; }
.about-timeline { margin: 2rem 0; }
.about-year { font-family: 'Noto Serif SC', serif; font-size: 2rem; font-weight: 900; color: var(--primary); display: flex; align-items: baseline; gap: 1rem; margin-bottom: 0.5rem; }
.about-year span { font-size: 1rem; font-weight: 400; color: var(--text-light); }

/* ========== Branch Theme System（5套配色模板） ========== */
.branch-theme-navy {
  --primary: #1B3A7B;
  --primary-dark: #152d5e;
  --accent: #C06A36;
  --primary-rgb: 27,58,123;
  --accent-rgb: 192,106,54;
}
.branch-theme-forest {
  --primary: #2A6B5A;
  --primary-dark: #1d4a3e;
  --accent: #D4A853;
  --primary-rgb: 42,107,90;
  --accent-rgb: 212,168,83;
}
.branch-theme-terracotta {
  --primary: #8B4513;
  --primary-dark: #6b3410;
  --accent: #D4A853;
  --primary-rgb: 139,69,19;
  --accent-rgb: 212,168,83;
}
.branch-theme-plum {
  --primary: #5B2D8E;
  --primary-dark: #3f1f63;
  --accent: #E8A840;
  --primary-rgb: 91,45,142;
  --accent-rgb: 232,168,64;
}
.branch-theme-teal {
  --primary: #0D7377;
  --primary-dark: #094d50;
  --accent: #F0A050;
  --primary-rgb: 13,115,119;
  --accent-rgb: 240,160,80;
}

/* ========== Branch Column Page（分院专栏） ========== */
.branch-hero {
  background: var(--primary-dark);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.branch-hero-has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.branch-hero-has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
  opacity: 0.88;
}
.branch-hero-has-bg > .container {
  position: relative;
  z-index: 1;
}
.branch-hero-city {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.branch-hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.branch-hero-addr,
.branch-hero-subway {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}
.branch-hero-subway i,
.branch-hero-addr i {
  margin-right: 0.25rem;
}
.branch-hero-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-branch-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}
.btn-branch-hero:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.btn-branch-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-branch-primary:hover {
  background: #a05228;
}

/* Branch sections */
.branch-page {
  background: var(--bg-light);
  padding: 0 0 3rem;
}
.branch-section {
  padding: 2.5rem 0;
}
.branch-section + .branch-section {
  border-top: 1px solid var(--border);
}
.branch-section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.branch-section-body {
  max-width: 720px;
  line-height: 1.85;
  color: var(--text-light);
}
.branch-section-body p {
  margin-bottom: 1rem;
}
.branch-section-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.25rem 0 0.5rem;
}

/* Highlights grid */
.branch-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.branch-highlight-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.branch-highlight-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.branch-highlight-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.branch-highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.branch-highlight-card:hover .branch-highlight-img img {
  transform: scale(1.03);
}
.branch-highlight-info {
  padding: 1rem 1.25rem;
}
.branch-highlight-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.branch-highlight-info p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Doctor cards */
.branch-doctor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}
.branch-doctor-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.branch-doctor-card:hover {
  box-shadow: 0 6px 20px rgba(var(--primary-rgb, 27,58,123), 0.12);
  transform: translateY(-2px);
}
.branch-doctor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.branch-doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.branch-doctor-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.branch-doctor-title {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--primary);
}
.branch-doctor-spec {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}
.branch-doctor-exp {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.branch-doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.branch-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.8125rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: rgba(var(--primary-rgb, 27,58,123), 0.08);
  color: var(--primary);
}
.branch-doctor-quote {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 0.75rem;
  margin: 0;
  line-height: 1.6;
}

/* Story cards */
.branch-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.branch-story-card {
  background: var(--bg-warm);
  border-radius: 10px;
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.branch-story-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.branch-story-name {
  font-weight: 600;
  color: var(--text-dark);
}
.branch-story-age {
  font-size: 0.85rem;
  color: var(--text-light);
}
.branch-story-info {
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.branch-story-quote {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ── Branch Club ── */
.branch-club-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.branch-club-subtitle {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.5rem 0 0.75rem;
}
.branch-club-cta {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.branch-club-cta .btn-branch-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Article cards */
.branch-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.branch-article-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}
.branch-article-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.branch-article-thumb {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--bg-warm);
}
.branch-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.branch-article-text {
  padding: 1rem 1.25rem;
}
.branch-article-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.branch-article-text p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.branch-article-date {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ── Staff Culture（员工文化） ── */
.branch-culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.branch-culture-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.branch-culture-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.branch-culture-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.branch-culture-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.branch-culture-info {
  padding: 1rem 1.25rem;
}
.branch-culture-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.branch-culture-header h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}
.branch-culture-date {
  font-size: 0.8125rem;
  color: var(--accent);
  white-space: nowrap;
  margin-left: 0.5rem;
}
.branch-culture-info p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── Service Stars（服务之星） ── */
.branch-stars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.branch-star-card {
  background: linear-gradient(135deg, #faf7f0, #fff);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.branch-star-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--accent);
}
.branch-star-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.branch-star-info {
  flex: 1;
}
.branch-star-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}
.branch-star-role {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--primary);
  margin-left: 0.5rem;
}
.branch-star-period {
  font-size: 0.8125rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.branch-star-reason {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

/* Contact card */
.branch-contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}
.branch-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.branch-contact-item {
  text-align: center;
}
.branch-contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--primary-rgb, 27,58,123), 0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.branch-contact-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.branch-contact-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
}

/* ── Feedback Form（意见反馈） ── */
.feedback-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  margin-top: 1.5rem;
}
.feedback-widget.feedback-done {
  background: linear-gradient(135deg, #f0faf5, #fff);
  border-color: #a3d9b1;
}
.feedback-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.feedback-header h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.feedback-header p {
  font-size: 0.9375rem;
  color: var(--text-light);
}
.feedback-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.feedback-form-group {
  margin-bottom: 1rem;
}
.feedback-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.fb-optional { color: var(--text-light); font-weight: 400; font-size: 0.8125rem; }
.fb-required { color: #e74c3c; }
.feedback-form-group input,
.feedback-form-group select,
.feedback-form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.feedback-form-group input:focus,
.feedback-form-group select:focus,
.feedback-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 27,58,123), 0.1);
}
.feedback-form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.fb-char-count {
  display: block;
  text-align: right;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* Star rating */
.feedback-rating-group label { margin-bottom: 0.5rem; }
.feedback-star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.25rem;
}
.feedback-star-rating input { display: none; }
.feedback-star-rating label {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s;
}
.feedback-star-rating input:checked ~ label,
.feedback-star-rating label:hover,
.feedback-star-rating label:hover ~ label {
  color: #f59e0b;
}

.feedback-submit-btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.feedback-submit-btn:hover { background: var(--primary-dark); }
.feedback-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.feedback-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

.feedback-success { text-align: center; padding: 1.5rem 0; }
.feedback-success-icon {
  width: 64px; height: 64px;
  background: #27ae60;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.feedback-success h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.feedback-success p {
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* ── Feedback floating button ── */
.fb-float-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 6rem;
  z-index: 999;
  width: 52px; height: 52px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(27,58,123,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(27,58,123,0.4);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .branch-hero {
    padding: 2.5rem 1rem 2rem;
  }
  .branch-hero-title {
    font-size: 1.5rem;
  }
  .branch-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-branch-hero {
    width: 100%;
    justify-content: center;
  }
  .branch-section {
    padding: 1.5rem 0;
  }
  .branch-section-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .branch-highlights-grid {
    grid-template-columns: 1fr;
  }
  .branch-doctor-grid {
    grid-template-columns: 1fr;
  }
  .branch-doctor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .branch-doctor-tags {
    justify-content: center;
  }
  .branch-doctor-quote {
    border-left: none;
    border-top: 3px solid var(--accent);
    padding: 0.5rem 0 0;
    text-align: center;
  }
  .branch-story-grid {
    grid-template-columns: 1fr;
  }
  .branch-article-grid {
    grid-template-columns: 1fr;
  }
  .branch-culture-grid {
    grid-template-columns: 1fr;
  }
  .branch-stars-grid {
    grid-template-columns: 1fr;
  }
  .branch-star-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .branch-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feedback-form-row {
    grid-template-columns: 1fr;
  }
  .feedback-widget {
    padding: 1.25rem;
  }
  .fb-float-btn {
    right: 1rem;
    bottom: 5rem;
    width: 44px; height: 44px;
    font-size: 1.25rem;
  }
}

/* ========== Patient Club Page（患者俱乐部） ========== */
.club-hero {
  background: var(--primary-dark);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  color: #fff;
}
.club-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.club-hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.club-hero-desc {
  font-size: 1.0625rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.club-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.club-stat {
  text-align: center;
  font-size: 0.9375rem;
  opacity: 0.8;
}
.club-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  opacity: 1;
}

/* Club tabs */
.club-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.club-tab {
  padding: 0.6rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.club-tab:hover { background: var(--bg-warm); color: var(--primary); }
.club-tab.active { background: var(--primary); color: #fff; }
.club-tab.highlight { border: 2px solid var(--accent); color: var(--accent); font-weight: 600; }
.club-tab.highlight.active { background: var(--accent); color: #fff; }

.club-tab-panel { display: none; }
.club-tab-panel.active { display: block; }

.club-section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.5rem 0 1rem;
}
.club-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
  font-size: 1rem;
}

/* Creations grid */
.club-creations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.club-creation-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.club-creation-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.club-creation-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.club-creation-img img { width: 100%; height: 100%; object-fit: cover; }
.club-creation-img-placeholder {
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.club-creation-body { padding: 1rem 1.25rem; }
.club-creation-type-badge {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
}
.club-creation-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.35rem 0;
}
.club-creation-body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.club-creation-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px solid var(--border);
}

/* Featured creations */
.club-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.club-creation-card.featured {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.club-creation-card.featured .club-creation-img { height: 240px; }
.club-creation-type {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.club-creation-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.25rem 0 0.5rem;
}
.club-creation-excerpt {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Events grid */
.club-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}
.club-event-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.club-event-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.club-event-img img { width: 100%; height: 100%; object-fit: cover; }
.club-event-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.club-event-body { padding: 1.25rem; }
.club-event-date {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.club-event-date-icon { margin-right: 0.25rem; }
.club-event-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.club-event-location { font-size: 0.875rem; color: var(--text-light); margin-bottom: 0.5rem; }
.club-event-desc { font-size: 0.9375rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.club-event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.club-event-remain {
  font-size: 0.8125rem;
  color: #e74c3c;
  font-weight: 500;
}
.club-event-signup-btn {
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.club-event-signup-btn:hover { background: var(--primary-dark); }

/* Past events */
.club-past-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.club-past-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.club-past-img { width: 100%; height: 140px; overflow: hidden; }
.club-past-img img { width: 100%; height: 100%; object-fit: cover; }
.club-past-info { padding: 0.75rem 1rem; }
.club-past-info h4 { font-size: 0.9375rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.2rem; }
.club-past-info span { font-size: 0.8125rem; color: var(--text-light); }

/* Stories grid */
.club-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.club-story-card {
  background: var(--bg-warm);
  border-radius: 10px;
  padding: 1.25rem;
  border-left: 4px solid var(--accent);
}
.club-story-card-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.club-story-patient { font-size: 1.05rem; font-weight: 600; color: var(--text-dark); }
.club-story-age { font-size: 0.875rem; color: var(--text-light); }
.club-story-condition { font-size: 0.875rem; color: var(--primary); margin-bottom: 0.5rem; }
.club-story-card blockquote {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
  border: none;
  padding: 0;
}

/* Submit CTA */
.club-submit-intro {
  text-align: center;
  margin-bottom: 2rem;
}
.club-submit-intro h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.club-submit-intro p {
  font-size: 0.9375rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 0.35rem;
}

/* ── Submit creation form ── */
.submit-creation-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.sc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.sc-form-group { margin-bottom: 1rem; }
.sc-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.sc-required { color: #e74c3c; }
.sc-optional { color: var(--text-light); font-weight: 400; font-size: 0.8125rem; }
.sc-form-group input,
.sc-form-group select,
.sc-form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sc-form-group input:focus,
.sc-form-group select:focus,
.sc-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 27,58,123), 0.1);
}
.sc-form-group textarea { resize: vertical; min-height: 140px; }
.sc-char-count {
  display: block;
  text-align: right;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}
.sc-form-note {
  font-size: 0.875rem;
  color: var(--text-light);
  background: var(--bg-warm);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.sc-submit-btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.sc-submit-btn:hover { background: var(--primary-dark); }
.sc-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.sc-success { text-align: center; padding: 2rem 1rem; }
.sc-success-icon {
  width: 64px; height: 64px;
  background: #27ae60;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.sc-success h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.sc-success p { font-size: 0.9375rem; color: var(--text-light); margin-bottom: 1rem; }
.sc-success-share-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.sc-success-share-btn:hover { background: var(--primary); color: #fff; }

/* ── Club Mobile ── */
@media (max-width: 768px) {
  .club-hero { padding: 2.5rem 1rem 2rem; }
  .club-hero-title { font-size: 1.5rem; }
  .club-hero-stats { gap: 1.5rem; }
  .club-stat-num { font-size: 1.5rem; }
  .club-tabs { gap: 0.35rem; }
  .club-tab { padding: 0.5rem 1rem; font-size: 0.875rem; }
  .club-creations-grid,
  .club-events-grid,
  .club-stories-grid { grid-template-columns: 1fr; }
  .club-featured-grid { grid-template-columns: 1fr; }
  .sc-form-row { grid-template-columns: 1fr; }
  .submit-creation-widget { padding: 1.25rem; }
  .club-past-grid { grid-template-columns: 1fr 1fr; }
}

/* ========== Breadcrumb ========== */
.breadcrumb { padding: 1rem 1.5rem; background: var(--bg-warm); font-size: 0.875rem; color: var(--text-light); }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 0.5rem; }

/* ── Search form ── */
.search-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  overflow: hidden;
  max-width: 180px;
}
.search-input {
  width: 100%;
  padding: 0.4rem 0.6rem;
  font-size: 0.8125rem;
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
}
.search-input::placeholder { color: rgba(255,255,255,0.5); }
.search-submit {
  padding: 0.4rem 0.6rem;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 1rem;
}
.search-submit:hover { color: #fff; }
.section-header .search-form {
  max-width: 320px;
  margin: 1rem auto 0;
  background: #fff;
  border: 1px solid var(--border);
}
.section-header .search-input { color: var(--text-dark); }
.section-header .search-input::placeholder { color: var(--text-light); }
.section-header .search-submit { color: var(--primary); }
@media (max-width: 768px) {
  .search-form { max-width: 120px; }
}

/* ========== Footer ========== */
.footer { background: #1a3352; color: rgba(255,255,255,0.8); padding: 2.5rem 1.5rem 1.5rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { font-family: 'Noto Serif SC', serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.footer-brand em { color: var(--accent); font-style: normal; }
.footer-tagline { font-size: 0.9375rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-col-title { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.875rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9375rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-tel { font-size: 1.75rem; font-weight: 700; color: #e8c49a; margin-bottom: 0.25rem; }
.footer-tel-label { font-size: 0.9375rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.footer-wechat { display: flex; align-items: center; gap: 0.625rem; margin-top: 0.75rem; }
.footer-wechat-qr { width: 52px; height: 52px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 1px dashed rgba(255,255,255,0.15); }
.footer-wechat-qr i { font-size: 1.25rem; color: rgba(255,255,255,0.3); }
.footer-wechat-text { font-size: 0.9375rem; color: rgba(255,255,255,0.6); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom-left { font-size: 0.875rem; display: flex; flex-direction: column; gap: 0.25rem; }
.footer-certs { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-cert { padding: 0.2rem 0.625rem; background: rgba(255,255,255,0.08); border-radius: 4px; font-size: 0.8125rem; color: rgba(255,255,255,0.55); }

/* ========== Floating CTA ========== */
.float-cta { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; display: flex; flex-direction: column; gap: 0.625rem; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); cursor: pointer; text-decoration: none; transition: all 0.2s; color: #fff; font-size: 1.25rem;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn-phone { background: var(--accent); }
.float-btn-top { background: var(--primary); width: 44px; height: 44px; font-size: 1rem; opacity: 0; transition: opacity 0.3s; }
.float-btn-top.show { opacity: 1; }

/* ========== Modal ========== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.show { display: flex; }
.modal-dialog { background: var(--bg-white); border-radius: 12px; max-width: 480px; width: 100%; text-align: center; padding: 2rem; }
.modal-icon { width: 60px; height: 60px; background: rgba(61,122,92,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--success); font-size: 1.75rem; }
.modal-dialog h2 { font-family: 'Noto Serif SC', serif; font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.modal-dialog p { font-size: 0.875rem; color: var(--text-body); margin-bottom: 1.25rem; }
.modal-wechat { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background: var(--bg-warm); border-radius: 8px; margin-bottom: 1rem; text-align: left; }
.modal-wechat i { font-size: 1.5rem; color: var(--success); flex-shrink: 0; }
.modal-wechat p { margin: 0; font-size: 0.875rem; color: var(--text-body); }
.modal-wechat strong { display: block; color: var(--text-dark); margin-bottom: 0.125rem; font-size: 0.875rem; }
.modal-store { padding: 1rem; border: 1px solid var(--border); border-radius: 8px; text-align: left; margin-bottom: 1.25rem; }
.modal-store h4 { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.375rem; }
.modal-store p { font-size: 0.8125rem; color: var(--text-light); margin-bottom: 0; }
.modal-store-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.modal-store-btn { flex: 1; padding: 0.5rem; background: var(--primary); color: #fff; border: none; border-radius: 6px; font-size: 0.8125rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.25rem; text-decoration: none; }
.modal-store-btn.outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.modal-close { width: 100%; padding: 0.75rem; background: var(--bg-warm); border: none; border-radius: 8px; font-size: 0.9375rem; font-weight: 600; cursor: pointer; color: var(--text-body); }
.modal-close:hover { background: var(--border); }

/* ========== Page Content ========== */
.page-content { max-width: 720px; margin: 0 auto; padding: 2rem 1.5rem; }
.page-content h1 { font-size: 2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; }
.page-content h2 { font-size: 1.5rem; font-weight: 600; color: var(--text-dark); margin: 2rem 0 1rem; }
.page-content h3 { font-size: 1.25rem; font-weight: 600; color: var(--text-dark); margin: 1.5rem 0 0.75rem; }
.page-content p { margin-bottom: 1rem; line-height: 1.8; }
.page-content ul, .page-content ol { margin: 0 0 1rem 1.5rem; }
.page-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.page-content blockquote {
  border-left: 3px solid var(--primary); padding: 0.75rem 1rem;
  background: var(--bg-warm); margin: 1.5rem 0; font-style: italic;
}

/* ========== Disease Single ========== */
.disease-hero { background: var(--primary-dark); padding: 3rem 1.5rem; text-align: center; color: #fff; }
.disease-hero h1 { font-family: 'Noto Serif SC', serif; font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; }
.disease-hero .disease-hero-desc { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }
.disease-body { max-width: 720px; margin: 0 auto; padding: 2rem 1.5rem; }
.disease-body h2 { color: var(--primary); font-size: 1.375rem; font-weight: 600; margin: 2rem 0 0.75rem; }
.disease-body p { margin-bottom: 1rem; line-height: 1.9; }
.disease-body ul { margin: 0 0 1rem 1.5rem; }
.disease-body li { margin-bottom: 0.5rem; line-height: 1.7; }
.disease-meta { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
.disease-meta .disease-tag { background: rgba(212,165,116,0.25); color: #e8c49a; }

/* ========== Blog / Archive ========== */
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.blog-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: all 0.25s; }
.blog-card:hover { box-shadow: var(--shadow-hover); }
.blog-card-body { padding: 1.25rem; }
.blog-card-title { font-size: 1.0625rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.blog-card-excerpt { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0.75rem; }
.blog-card-meta { font-size: 0.8125rem; color: var(--text-light); }

/* ========== Pagination ========== */
.pagination { text-align: center; padding: 2rem 0; }
.pagination a, .pagination span { display: inline-block; padding: 0.5rem 0.875rem; margin: 0 0.25rem; border: 1px solid var(--border); border-radius: 6px; font-size: 0.9375rem; transition: all 0.2s; }
.pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ========== 404 ========== */
.error-404 { text-align: center; padding: 5rem 1.5rem; }
.error-404 h1 { font-size: 4rem; font-weight: 900; color: var(--primary); margin-bottom: 1rem; }
.error-404 p { font-size: 1.25rem; color: var(--text-light); margin-bottom: 2rem; }
.error-404 a { color: var(--primary); font-weight: 600; border: 2px solid var(--primary); padding: 0.75rem 2rem; border-radius: 8px; }

/* ========== Responsive ========== */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .top-bar { flex-direction: column; gap: 0.375rem; }
  .navbar { padding: 0 1rem; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1rem 3rem; }
  .hero-year { font-size: 4rem; }
  .hero-quote-card { display: none; }
  .trust-bar { gap: 1rem; }
  .problems-grid { grid-template-columns: 1fr; }
  .problem-card + .problem-card { border-left: 1px solid var(--border); }
  .problem-card:nth-child(-n+3) { border-bottom: 1px solid var(--border); }
  .disease-grid { grid-template-columns: 1fr; }
  .doctor-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .member-grid { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .wechat-card { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-cta { bottom: 1rem; right: 1rem; }
  .quick-call-bar { flex-direction: column; align-items: stretch; }
  .call-btn { justify-content: center; }
  .archive-grid { grid-template-columns: 1fr; }
  .breadcrumb { padding: 0.75rem 1rem; }
}
