:root {
  --primary: #1a6b3c;
  --primary-dark: #0d4a27;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --bg: #fafaf7;
  --bg-card: #fff;
  --text: #2c2c2c;
  --text-light: #666;
  --text-muted: #999;
  --border: #e8e5dc;
  --shadow: 0 4px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  font-family: "PingFang SC","Microsoft YaHei","Hiragino Sans GB",sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text);
}
.logo-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon.small { width: 36px; height: 36px; font-size: 18px; border-radius: 8px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 18px; font-weight: 700; letter-spacing: 1px; }
.logo-sub { font-size: 11px; color: var(--text-light); letter-spacing: 2px; }

.nav { display: flex; gap: 32px; }
.nav-link {
  text-decoration: none; color: var(--text-light);
  font-size: 15px; font-weight: 500;
  position: relative; padding: 4px 0;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: var(--transition);
}
.nav-link.active::after, .nav-link:hover::after { width: 100%; }

.menu-toggle {
  display: none; background: none; border: none;
  font-size: 24px; cursor: pointer; color: var(--text);
}

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: url("images/德林沃厂址.jpg") center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,59,30,0.85), rgba(26,92,50,0.75), rgba(45,122,68,0.78), rgba(13,59,30,0.85));
}
.hero-overlay { position: absolute; inset:0; }
.hero-content {
  position: relative; z-index: 1;
  text-align: center; color: #fff;
  padding: 120px 24px;
}
.hero-title {
  font-size: 52px; font-weight: 800; letter-spacing: 4px;
  margin-bottom: 20px; line-height: 1.3;
}
.hero-subtitle {
  font-size: 20px; opacity: .85; line-height: 1.8;
  margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-stats {
  display: flex; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
}
.stat-num {
  display: block; font-size: 32px; font-weight: 800;
  color: var(--gold);
}
.stat-num small { font-size: 16px; font-weight: 400; opacity: .8; }
.stat-label {
  display: block; font-size: 14px; margin-top: 4px;
  opacity: .75; letter-spacing: 1px;
}

/* Sections */
.section { padding: 100px 0; }
.section-title {
  text-align: center; font-size: 36px; font-weight: 700;
  color: var(--primary-dark); margin-bottom: 16px;
  position: relative; padding-bottom: 20px;
}
.section-title::after {
  content: ''; position: absolute; bottom:0; left:50%; transform:translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  border-radius: 2px;
}
.section-desc {
  text-align: center; color: var(--text-light);
  font-size: 16px; max-width: 600px; margin: 0 auto 56px;
}

/* About */
.about-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.about-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.about-icon { font-size: 40px; margin-bottom: 16px; }
.about-card h3 {
  font-size: 18px; color: var(--primary-dark);
  margin-bottom: 12px;
}
.about-card p { font-size: 14px; color: var(--text-light); line-height: 1.8; }
.about-card strong { color: var(--primary); }

/* Products */
.products-showcase { display: flex; flex-direction: column; gap: 40px; }
.load-more-btn {
  display: block; margin: 0 auto; padding: 14px 48px;
  background: #fff; border: 2px solid var(--primary);
  border-radius: 30px; color: var(--primary);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: var(--transition);
}
.load-more-btn:hover {
  background: var(--primary); color: #fff;
}
.product-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  background: var(--bg-card); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.product-feature:hover { box-shadow: var(--shadow-lg); }
.product-feature.reverse { direction: rtl; }
.product-feature.reverse .product-info { direction: ltr; }

.product-img-box {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-img-box img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-placeholder {
  font-size: 48px; font-weight: 700;
  color: var(--primary); opacity: .3;
  letter-spacing: 8px; display: none;
  align-items: center; justify-content: center;
}
.product-img-label {
  font-size: 13px; color: var(--primary); opacity: .6;
  margin-top: 8px; font-weight: 500; position: relative; z-index: 1;
}

.product-info h3 {
  font-size: 28px; color: var(--primary-dark);
  margin-bottom: 8px;
}
.product-tag {
  display: inline-block; padding: 4px 14px;
  background: linear-gradient(135deg, var(--gold-light), #f5e6c8);
  color: #8b6914; font-size: 13px; font-weight: 600;
  border-radius: 20px; margin-bottom: 16px;
}
.product-info > p.intro {
  color: var(--text-light); font-size: 15px;
  margin-bottom: 20px; line-height: 1.8;
}

.product-specs {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 12px;
}
.product-specs li {
  font-size: 14px; color: var(--text); padding: 10px 14px;
  background: var(--bg); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.product-specs li strong { color: var(--primary-dark); }

.product-expand-btn {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 18px; padding: 8px 18px;
  background: none; border: 1.5px solid var(--border);
  border-radius: 20px; color: var(--text-light);
  font-size: 13px; cursor: pointer; transition: var(--transition);
}
.product-expand-btn:hover {
  border-color: var(--primary); color: var(--primary);
}
.product-expand-btn .arrow { display: inline-block; transition: var(--transition); }
.product-expand-btn.open .arrow { transform: rotate(180deg); }

/* inline specs + compare */
.product-specs-inline { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.spec-row { display: flex; align-items: baseline; gap: 8px; padding: 8px 14px; background: var(--bg); border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 14px; }
.spec-row strong { color: var(--primary-dark); font-size: 13px; white-space: nowrap; flex-shrink: 0; }
.spec-row span { color: var(--text); line-height: 1.6; }
.compare-inline { margin-top: 16px; }
.compare-inline h4 { font-size: 14px; color: var(--primary); margin-bottom: 10px; font-weight: 600; }
.compare-inline .compare-table { margin-bottom: 12px; }
.compare-inline .compare-highlights { margin-top: 10px; padding: 12px 16px; }
.compare-inline .compare-highlights h4 { font-size: 13px; margin-bottom: 6px; }
.compare-inline .compare-highlights li { font-size: 13px; padding: 4px 0; }

.product-expand-content {
  display: none; margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.product-expand-content.open { display: block; }
.product-expand-content .pro-detail-block {
  margin-bottom: 16px;
}
.product-expand-content .pro-detail-block h4 {
  font-size: 14px; color: var(--primary-dark);
  margin-bottom: 8px; font-weight: 600;
}
.product-expand-content .pro-detail-block p,
.product-expand-content .pro-detail-block li {
  font-size: 13.5px; color: var(--text-light);
  line-height: 1.85;
}
.product-expand-content .pro-detail-block ul {
  list-style: disc; padding-left: 18px;
}
.pro-compare-box {
  background: linear-gradient(135deg, #fefcf5, #fdf8ee);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-sm);
  padding: 16px;
}

/* Herbs */
.herb-filters {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 24px; border: 1.5px solid var(--border);
  background: #fff; border-radius: 24px;
  font-size: 14px; cursor: pointer; transition: var(--transition);
  color: var(--text-light);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
  background: var(--primary); color: #fff;
  border-color: var(--primary);
}

.herbs-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.herb-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
}
.herb-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.herb-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0; transition: var(--transition);
}
.herb-card:hover::before { opacity: 1; }
.herb-card-img {
  width: 100%; aspect-ratio: 3/2;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  overflow: hidden; position: relative; margin: -28px -24px 16px;
}
.herb-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.herb-img-fallback {
  display: none; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-size: 28px; font-weight: 700;
  color: var(--primary); opacity: .25;
}
.herb-card.expanded { grid-column: 1 / -1; }

.herb-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.herb-num {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gold-light); color: #8b6914;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}
.herb-name {
  font-size: 18px; font-weight: 700; color: var(--primary-dark);
}
.herb-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.herb-badge {
  padding: 2px 10px; font-size: 11px;
  border-radius: 12px; font-weight: 600;
}
.herb-badge.ten { background: #e3f2fd; color: #1565c0; }
.herb-badge.rare { background: #fce4ec; color: #c62828; }
.herb-badge.woody { background: #fff3e0; color: #e65100; }
.herb-badge.di { background: #e8f5e9; color: #2e7d32; }

.herb-value {
  font-size: 13px; color: var(--text-light); margin-bottom: 10px;
  line-height: 1.6;
}
.herb-highlight {
  font-size: 13px; color: var(--primary);
  font-weight: 500; margin-bottom: 6px;
}
.herb-yield {
  font-size: 13px; color: var(--text-muted);
}

.herb-detail {
  display: none; margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.herb-card.expanded .herb-detail { display: block; }

.herb-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.herb-detail-section h4 {
  font-size: 14px; color: var(--primary-dark);
  margin-bottom: 10px;
}
.herb-detail-section p, .herb-detail-section li {
  font-size: 13px; color: var(--text-light); line-height: 1.8;
}
.herb-detail-section ul { list-style: disc; padding-left: 18px; }

.herb-expand-hint {
  font-size: 12px; color: var(--text-muted);
  margin-top: 8px; transition: var(--transition);
}
.herb-card:hover .herb-expand-hint { color: var(--primary); }

/* Advantage */
.advantage-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.advantage-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 36px 28px; position: relative;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: var(--transition);
}
.advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.advantage-num {
  font-size: 48px; font-weight: 800;
  color: var(--gold-light); line-height: 1;
  margin-bottom: 12px;
}
.advantage-card h3 {
  font-size: 18px; color: var(--primary-dark);
  margin-bottom: 12px;
}
.advantage-card p { font-size: 14px; color: var(--text-light); line-height: 1.8; }

/* Market — Competitive Landscape */
.section-desc { text-align: center; color: var(--text-light); font-size: 16px; max-width: 700px; margin: 0 auto 56px; }

/* -- compete blocks -- */
.compete-block { margin-bottom: 64px; }
.compete-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.compete-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.compete-header h3 { font-size: 22px; color: var(--primary-dark); font-weight: 700; }
.compete-lead { font-size: 15px; color: var(--text-light); line-height: 1.9; margin-bottom: 28px; max-width: 800px; }
.compete-lead strong { color: var(--primary); }

.compete-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.compete-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: var(--transition);
}
.compete-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.compete-card-full { grid-column: 1 / -1; }
.compete-card .compete-icon { font-size: 34px; margin-bottom: 10px; }
.compete-card h4 { font-size: 16px; color: var(--primary-dark); margin-bottom: 10px; font-weight: 700; }
.compete-card > p { font-size: 14px; color: var(--text-light); line-height: 1.9; margin-bottom: 12px; }
.compete-card > p strong { color: var(--primary); }

.compete-list { list-style: none; padding: 0; }
.compete-list li { padding: 8px 0 8px 20px; font-size: 13.5px; color: var(--text); line-height: 1.7; border-bottom: 1px solid var(--border); position: relative; }
.compete-list li:last-child { border-bottom: none; }
.compete-list li::before { content: '•'; position: absolute; left: 4px; color: var(--primary); font-weight: 700; }
.compete-list li strong { color: var(--primary-dark); }

/* stats row */
.compete-stats-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-around; margin-bottom: 16px; }
.cstat { text-align: center; flex: 1; min-width: 100px; padding: 16px 12px; background: var(--bg); border-radius: var(--radius-sm); }
.cstat-num { display: block; font-size: 26px; font-weight: 800; color: var(--primary); }
.cstat-num small { font-size: 14px; font-weight: 500; opacity: .7; }
.cstat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.compete-conclusion { margin-top: 16px; padding: 14px 18px; background: linear-gradient(135deg, #e8f5e9, #f0fdf0); border-left: 4px solid var(--primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 14px; line-height: 1.7; color: var(--text); }
.compete-conclusion strong { color: var(--primary-dark); }

/* compete table */
.compete-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.compete-table td, .compete-table th { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; line-height: 1.6; }
.compete-table thead th { background: var(--bg); color: var(--primary-dark); font-weight: 600; font-size: 12px; letter-spacing: 0.5px; }
.compete-table tbody td:first-child { font-weight: 600; white-space: nowrap; }
.compete-table tbody tr:hover td { background: #fafdf7; }

/* compete bars */
.compete-bars { display: flex; flex-direction: column; gap: 12px; }
.cbar { display: flex; flex-direction: column; gap: 4px; }
.cbar-label { font-size: 13px; color: var(--text); font-weight: 500; }
.cbar-track { height: 26px; background: var(--bg); border-radius: 13px; overflow: hidden; }
.cbar-fill {
  height: 100%; border-radius: 13px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; padding-left: 12px;
  min-width: 80px; transition: width .6s ease;
}

/* value chain */
.value-chain { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 16px; }
.vc-node { text-align: center; padding: 12px 16px; background: var(--bg); border-radius: var(--radius-sm); min-width: 100px; font-weight: 600; color: var(--primary-dark); font-size: 14px; }
.vc-node small { display: block; font-size: 11px; font-weight: 400; color: var(--text-muted); margin-top: 2px; }
.vc-arrow { font-size: 20px; color: var(--gold); font-weight: 700; }

/* compete progress */
.compete-progress { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.cprog { display: flex; flex-direction: column; gap: 3px; }
.cprog > span { font-size: 13px; color: var(--text); font-weight: 500; }
.cprog-bar { height: 26px; background: var(--bg); border-radius: 13px; overflow: hidden; }
.cprog-fill {
  height: 100%; border-radius: 13px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff; font-size: 11px; font-weight: 600;
  display: flex; align-items: center; padding-left: 10px;
}

/* market summary cards */
.market-summary { margin-top: 20px; }
.market-summary h3 { font-size: 20px; color: var(--primary-dark); margin-bottom: 24px; text-align: center; }
.market-grid-new { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 0; }
.mcard {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: var(--transition);
}
.mcard:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.mcard-head { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.mcard-icon { font-size: 32px; flex-shrink: 0; }
.mcard-head strong { display: block; font-size: 15px; color: var(--primary-dark); }
.mcard-pct { font-size: 22px; font-weight: 800; color: var(--primary); }
.mcard p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.mcard-bar { height: 6px; background: var(--bg); border-radius: 3px; overflow: hidden; }
.mcard-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--primary), var(--gold)); }

/* Contact */
.contact { background: linear-gradient(180deg, var(--bg) 0%, #f0f5f0 100%); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: stretch;
}
.contact-info {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
}
.contact-info h3 {
  font-size: 24px; color: var(--primary-dark);
  margin-bottom: 24px;
}
.contact-list { list-style: none; }
.contact-list li {
  padding: 12px 0; font-size: 15px;
  color: var(--text-light); border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: none; }
.contact-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.badge {
  padding: 6px 14px; font-size: 12px; font-weight: 600;
  border-radius: 4px;
  background: var(--gold-light); color: #8b6914;
}

.contact-map {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder {
  text-align: center;
  width: 100%; padding: 40px 20px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: var(--radius-sm);
}
.cert-img {
  max-width: 100%; max-height: 280px;
  border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  object-fit: contain;
}
.map-text {
  font-size: 22px; font-weight: 700; color: var(--primary-dark);
  margin-bottom: 8px;
}
.map-note {
  font-size: 14px; color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--primary-dark); color: rgba(255,255,255,.8);
  padding: 48px 0 24px;
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: center; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-name { font-size: 16px; font-weight: 600; color: #fff; }
.footer-sub { font-size: 11px; letter-spacing: 2px; opacity: .6; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: rgba(255,255,255,.6); text-decoration: none;
  font-size: 14px; transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center; padding-top: 24px;
  font-size: 13px; opacity: .5;
}

/* Herb Detail Modal */
.herb-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; animation: fadeIn .2s ease;
}
.herb-modal {
  background: #fff; border-radius: var(--radius);
  max-width: 800px; width: 100%; max-height: 85vh;
  overflow-y: auto; padding: 40px;
  position: relative; animation: slideUp .3s ease;
}
.herb-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); border: none; cursor: pointer;
  font-size: 18px; display: flex; align-items: center;
  justify-content: center; transition: var(--transition);
}
.herb-modal-close:hover { background: #eee; }
.herb-modal h3 { font-size: 28px; color: var(--primary-dark); margin-bottom: 8px; }
.herb-modal .herb-tags { margin-bottom: 20px; }
.herb-modal .herb-tags .herb-badge { font-size: 13px; padding: 4px 14px; }
.herb-modal-section { margin-bottom: 24px; }
.herb-modal-section h4 {
  font-size: 16px; color: var(--primary); margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.herb-modal-section p, .herb-modal-section li {
  font-size: 14px; color: var(--text-light); line-height: 1.9;
}
.herb-modal-section ul { padding-left: 20px; }
.herb-modal-section .compare-table {
  width: 100%; border-collapse: collapse; margin-top: 8px;
  font-size: 13px;
}
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.compare-table th, .compare-table td {
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  text-align: left; font-size: 13.5px;
}
.compare-table thead th {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-weight: 600; font-size: 13px;
  letter-spacing: 0.5px;
}
.compare-table thead th:first-child { border-radius: 8px 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 8px 0 0; }
.compare-table tbody td { color: var(--text); line-height: 1.6; }
.compare-table tbody td:first-child { font-weight: 600; color: var(--primary-dark); }
.compare-table tbody tr:last-child td:first-child { border-radius: 0 0 0 8px; }
.compare-table tbody tr:last-child td:last-child { border-radius: 0 0 8px 0; }
.compare-table tbody tr:nth-child(even) td { background: #fafaf7; }
.compare-table tbody td:last-child { color: var(--primary); font-weight: 500; }
.compare-highlights { margin-top: 20px; padding: 16px 20px; background: linear-gradient(135deg, #fffdf5, #fef9e7); border: 1px solid var(--gold-light); border-radius: var(--radius-sm); }
.compare-highlights h4 { font-size: 14px; color: var(--primary-dark); margin-bottom: 10px; }
.compare-highlights ul { list-style: none; padding: 0; }
.compare-highlights li { padding: 6px 0; font-size: 13.5px; color: var(--text); line-height: 1.7; border-bottom: 1px dotted var(--gold-light); }
.compare-highlights li:last-child { border-bottom: none; }
.compare-highlights li::before { content: '✦ '; color: var(--gold); margin-right: 6px; }

@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes slideUp { from { opacity:0; transform:translateY(20px) } to { opacity:1; transform:translateY(0) } }

/* Responsive */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: repeat(2,1fr); }
  .advantage-grid { grid-template-columns: repeat(2,1fr); }
  .herbs-grid { grid-template-columns: repeat(2,1fr); }
  .products-showcase .product-feature { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .products-showcase .product-feature.reverse { direction: ltr; }
  .product-img-box { aspect-ratio: 2/1; }
}

@media (max-width: 768px) {
  .header-inner { height: 60px; }
  .nav { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: #fff; padding: 16px 24px; border-bottom: 1px solid var(--border);
    gap: 14px; box-shadow: var(--shadow);
  }
  .nav-link { font-size: 16px; padding: 6px 0; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-title { font-size: 32px; letter-spacing: 2px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 32px; }
  .hero-stats { gap: 12px; }
  .stat-item { padding: 12px 14px; flex: 1 1 40%; min-width: 130px; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 12px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 26px; }
  .section-desc { font-size: 15px; margin-bottom: 36px; padding: 0 12px; }
  .container { padding: 0 16px; }
  .about-grid, .advantage-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-card { padding: 24px 20px; }
  .products-showcase .product-feature { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .product-feature.reverse { direction: ltr; }
  .product-info h3 { font-size: 22px; }
  .product-specs { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-specs li { font-size: 13px; padding: 8px 10px; }
  .herbs-grid { grid-template-columns: 1fr; gap: 14px; }
  .herb-card { padding: 20px 16px; }
  .herb-card-img { margin: -20px -16px 12px; }
  .herb-name { font-size: 16px; }
  .market-grid { grid-template-columns: 1fr; gap: 16px; }
  .market-card { padding: 24px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info, .contact-map { padding: 24px 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .herb-detail-grid { grid-template-columns: 1fr; }
  .herb-modal { padding: 24px 20px; max-height: 90vh; }
  .herb-modal h3 { font-size: 22px; }
  .logo-name { font-size: 16px; }
  .logo-icon { width: 36px; height: 36px; font-size: 18px; border-radius: 8px; }
  .herb-filters { gap: 8px; }
  .filter-btn { padding: 6px 16px; font-size: 13px; }
}
