/* ============================================================
   广州正合包装 B2B 网站 — 布局 2.0 增强 CSS
   参考: en.boyust.com (开阔单页滚动) + beautystar.cn (专业层级)
   品牌: #1A1A2E深蓝黑 + #C9A84C香槟金 + #E8D5B7浅金
   日期: 2026-05-06
   ============================================================ */

/* ─── 1. 全局间距系统 ────────────────────────────── */
:root {
  --brand-primary: #1A1A2E;
  --brand-accent: #C9A84C;
  --brand-accent-light: #E8D5B7;
  --brand-accent-dark: #B8962E;
  --bg-light: #FAFAFA;
  --bg-cream: #F8F6F0;
  --bg-white: #FFFFFF;
  --text-primary: #1A1A2E;
  --text-body: #333333;
  --text-muted: #666666;
  --text-light: #FFFFFF;
  --section-padding: 90px 0;
  --max-width: 1200px;
  --card-radius: 12px;
  --card-shadow: 0 4px 20px rgba(26,26,46,0.06);
  --card-shadow-hover: 0 12px 40px rgba(26,26,46,0.12);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── 2. Elementor Section Spacing (开阔间距) ──── */
.elementor-top-section {
  padding: var(--section-padding) !important;
}

/* First section (Hero) — no top padding */
.elementor-top-section:first-child {
  padding-top: 0 !important;
}

/* Last section before footer — no bottom padding */
.elementor-top-section:last-of-type {
  padding-bottom: 90px !important;
}

/* ─── 3. Hero Section — 全屏大视觉 ──────────────── */
/* Full-height hero */
.elementor-section.elementor-element:first-child {
  min-height: 85vh !important;
}

/* Hero heading — 大标题 56px */
.hero-heading {
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.5px !important;
  color: #FFFFFF !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2) !important;
}

/* Hero subheading — 20px */
.hero-subheading {
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.85) !important;
  letter-spacing: 2px !important;
}

/* Hero CTA buttons */
.hero-cta-primary {
  background: #C9A84C !important;
  color: #FFFFFF !important;
  padding: 16px 40px !important;
  border-radius: 50px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: none !important;
  transition: var(--transition-base) !important;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3) !important;
}
.hero-cta-primary:hover {
  background: #B8962E !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(201,168,76,0.4) !important;
}

.hero-cta-secondary {
  background: transparent !important;
  color: #FFFFFF !important;
  padding: 14px 38px !important;
  border-radius: 50px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  border: 2px solid rgba(255,255,255,0.4) !important;
  transition: var(--transition-base) !important;
}
.hero-cta-secondary:hover {
  border-color: #C9A84C !important;
  color: #C9A84C !important;
  transform: translateY(-2px) !important;
}

/* ─── 4. Section Titles — 参照beautystar.cn层级 ──── */
.section-title {
  text-align: center;
  margin-bottom: 60px !important;
}
.section-title h2 {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  position: relative;
  padding-bottom: 20px !important;
  margin-bottom: 16px !important;
}

/* Gold underline accent */
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #C9A84C, #E8D5B7);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-title p {
  font-size: 16px !important;
  color: var(--text-muted) !important;
  max-width: 600px;
  margin: 0 auto !important;
  line-height: 1.6 !important;
}

/* ─── 5. Product Category Cards — 参照boyust产品网格 ──── */
.product-category-card {
  background: var(--bg-white) !important;
  border-radius: var(--card-radius) !important;
  box-shadow: var(--card-shadow) !important;
  overflow: hidden !important;
  transition: var(--transition-base) !important;
  border: 1px solid #F0F0F0 !important;
}
.product-category-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--card-shadow-hover) !important;
  border-color: var(--brand-accent-light) !important;
}

.product-category-card .elementor-widget-wrap {
  padding: 30px !important;
  text-align: center !important;
}

.product-category-card h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  margin: 16px 0 8px 0 !important;
}

.product-category-card p {
  font-size: 14px !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
}

/* ─── 6. Why Choose Us — 4列核心优势卡片 ────────── */
.advantage-card {
  background: var(--bg-white) !important;
  border-radius: var(--card-radius) !important;
  padding: 40px 30px !important;
  text-align: center !important;
  box-shadow: var(--card-shadow) !important;
  transition: var(--transition-base) !important;
  border: 1px solid #F0F0F0 !important;
  position: relative !important;
  overflow: hidden !important;
}
.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9A84C, #E8D5B7);
  opacity: 0;
  transition: var(--transition-base);
}
.advantage-card:hover::before {
  opacity: 1;
}
.advantage-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--card-shadow-hover) !important;
}
.advantage-card h3 {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  margin-bottom: 12px !important;
}
.advantage-card p {
  font-size: 14px !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
}

/* ─── 7. About Section — 左图右文双栏 ────────── */
.about-section-left {
  border-radius: var(--card-radius) !important;
  overflow: hidden !important;
  box-shadow: var(--card-shadow) !important;
}
.about-section-right h2 {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  margin-bottom: 20px !important;
  position: relative;
  padding-bottom: 20px;
}
.about-section-right h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #C9A84C;
  margin-top: 16px;
  border-radius: 2px;
}
.about-section-right p {
  font-size: 16px !important;
  color: var(--text-body) !important;
  line-height: 1.8 !important;
  margin-bottom: 16px !important;
}

/* ─── 8. Case Cards — 案例卡片 ──────────────── */
.case-card {
  background: var(--bg-white) !important;
  border-radius: var(--card-radius) !important;
  overflow: hidden !important;
  box-shadow: var(--card-shadow) !important;
  transition: var(--transition-base) !important;
  border: 1px solid #F0F0F0 !important;
}
.case-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--card-shadow-hover) !important;
}
.case-card .case-content {
  padding: 24px !important;
}
.case-card h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  margin-bottom: 8px !important;
}
.case-card p {
  font-size: 14px !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
}

/* ─── 9. CTA Section — 金色/深色CTA ────────── */
.cta-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%) !important;
  padding: 100px 0 !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
}
.cta-section h2 {
  font-size: 42px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin-bottom: 16px !important;
  position: relative !important;
  z-index: 1 !important;
}
.cta-section p {
  font-size: 18px !important;
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 32px !important;
  position: relative !important;
  z-index: 1 !important;
}
.cta-button {
  display: inline-block !important;
  background: #C9A84C !important;
  color: #FFFFFF !important;
  padding: 18px 50px !important;
  border-radius: 50px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: none !important;
  transition: var(--transition-base) !important;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3) !important;
  position: relative !important;
  z-index: 1 !important;
}
.cta-button:hover {
  background: #B8962E !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4) !important;
}

/* ─── 10. Navigation — 6项导航+产品分类下拉 ──── */
/* 白底 + 金边 */
.main-header-bar {
  background: #FFFFFF !important;
  border-bottom: 2px solid #C9A84C !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04) !important;
}

/* 导航项间距、字重 */
.ast-primary-menu .menu-item > a {
  color: #333333 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 0 18px !important;
  letter-spacing: 0.5px !important;
  transition: color 0.25s ease !important;
  position: relative !important;
}
.ast-primary-menu .menu-item > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: #C9A84C;
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ast-primary-menu .menu-item > a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.ast-primary-menu .menu-item > a:hover,
.ast-primary-menu .current-menu-item > a,
.ast-primary-menu .current-menu-ancestor > a {
  color: #C9A84C !important;
}

/* 子菜单 — 白底+金边框+圆角 */
.ast-primary-menu .sub-menu {
  background: #FFFFFF !important;
  border: 1px solid #E8D5B7 !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 30px rgba(26,26,46,0.12) !important;
  padding: 8px 0 !important;
  margin-top: 8px !important;
}
.ast-primary-menu .sub-menu .menu-item {
  border-bottom: 1px solid #F5F0E8 !important;
}
.ast-primary-menu .sub-menu .menu-item:last-child {
  border-bottom: none !important;
}
.ast-primary-menu .sub-menu .menu-item > a {
  padding: 10px 24px !important;
  font-size: 14px !important;
  color: #444 !important;
  transition: all 0.2s ease !important;
}
.ast-primary-menu .sub-menu .menu-item > a:hover {
  color: #C9A84C !important;
  background: #F8F6F0 !important;
  padding-left: 30px !important;
}

/* ─── 11. 面包屑导航 (beautystar.cn风格) ────── */
.ast-breadcrumbs {
  padding: 12px 0 !important;
  font-size: 13px !important;
  color: #999 !important;
}
.ast-breadcrumbs a {
  color: var(--brand-primary) !important;
  transition: color 0.2s;
}
.ast-breadcrumbs a:hover {
  color: var(--brand-accent) !important;
}
.ast-breadcrumbs .breadcrumb_last {
  color: var(--brand-accent) !important;
}

/* ─── 12. 按钮统一品牌色 ──────────────────── */
.elementor-button,
.elementor-button:visited {
  background: #C9A84C !important;
  fill: #FFFFFF !important;
  color: #FFFFFF !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--transition-base) !important;
}
.elementor-button:hover {
  background: #B8962E !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(201,168,76,0.3) !important;
}

/* ─── 13. Footer — 深蓝黑底+金边 ──────────── */
footer, .elementor-location-footer {
  background: #1A1A2E !important;
  border-top: 3px solid #C9A84C !important;
  color: rgba(255,255,255,0.8) !important;
}
footer a, .elementor-location-footer a {
  color: rgba(255,255,255,0.7) !important;
  transition: color 0.2s;
}
footer a:hover, .elementor-location-footer a:hover {
  color: #C9A84C !important;
}
footer h4, .elementor-location-footer h4 {
  color: #C9A84C !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
}

/* ─── 14. 选中文本品牌色 ──────────────────── */
::selection {
  background: #C9A84C !important;
  color: #FFFFFF !important;
}
::-moz-selection {
  background: #C9A84C !important;
  color: #FFFFFF !important;
}

/* ─── 15. 滚动条 ───────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F0F0F0;
}
::-webkit-scrollbar-thumb {
  background: #C9A84C;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B8962E;
}

/* ─── 16. 淡入上移动画 ──────────────────── */
.elementor-element.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.elementor-element.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.elementor-element.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.elementor-element.fade-in-up:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════════════════
   18. Product Grid — 品牌产品网格
   HTML结构: .product-grid > .product-card > .product-card-image + .product-card-body + .product-card-footer
   ════════════════════════════════════════════════════════ */

/* ─── 18a. Product Category Header ─────────────── */
.product-category-header {
  background: #1A1A2E;
  padding: 60px 0;
  text-align: center;
}
.product-category-header h1 {
  color: #C9A84C;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

/* ─── 18b. Product Grid — 3列品牌网格 ─────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 0;
}

/* ─── 18c. Product Card — 白底卡片 ────────────── */
.product-card {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: #C9A84C;
}

/* ─── 18d. Product Card Image ───────────────── */
.product-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F8F6F0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-card-image span,
.product-card-image .no-image {
  color: #C9A84C;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
}

/* ─── 18e. Product Card Body ────────────────── */
.product-card-body {
  padding: 16px 20px 8px;
}
.product-card-body h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.product-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.product-card-body h3 a:hover {
  color: #C9A84C;
}

/* ─── 18f. Product Card Footer — 双按钮 ──────── */
.product-card-footer {
  padding: 8px 20px 20px;
  display: flex;
  gap: 8px;
}
.btn-detail {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #C9A84C;
  border-radius: 50px;
  color: #C9A84C;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  flex: 1;
  transition: var(--transition-base);
}
.btn-detail:hover {
  background: #C9A84C;
  color: #FFFFFF;
}
.btn-inquiry {
  display: inline-block;
  padding: 8px 20px;
  background: #C9A84C;
  border: 1px solid #C9A84C;
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  flex: 1;
  transition: var(--transition-base);
}
.btn-inquiry:hover {
  background: #B8962E;
  border-color: #B8962E;
}

/* ════════════════════════════════════════════════════════
   19. Product Detail Page — 产品详情双栏
   HTML结构: .product-detail-wrapper > .product-detail-gallery + .product-detail-info
   ════════════════════════════════════════════════════════ */

/* ─── 19a. Product Detail Wrapper ────────────── */
.product-detail-wrapper {
  display: flex;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 0;
  align-items: flex-start;
}

/* ─── 19b. Product Detail Gallery ────────────── */
.product-detail-gallery {
  flex: 0 0 45%;
  max-width: 500px;
  position: sticky;
  top: 100px;
}
.product-detail-gallery .main-image {
  background: #F8F6F0;
  border-radius: var(--card-radius);
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.6;
  border: 1px solid #F0F0F0;
}

/* ─── 19c. Product Detail Info ──────────────── */
.product-detail-info {
  flex: 1;
  min-width: 0;
}
.product-detail-info h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px;
  line-height: 1.3;
}

/* ─── 19d. Product Meta Table ───────────────── */
.product-meta {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}
.product-meta tr {
  border-bottom: 1px solid #F0F0F0;
}
.product-meta td {
  padding: 12px 16px;
  vertical-align: top;
}
.product-meta td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  width: 120px;
  border-left: 3px solid #C9A84C;
  background: #FAFAFA;
}
.product-meta td:last-child {
  color: var(--text-body);
}

/* ─── 19e. Product Description ──────────────── */
.product-detail-info > div[style*="font-size"] {
  font-size: 15px;
  line-height: 1.8;
  color: #444 !important;
  margin-bottom: 24px;
}

/* ─── 19f. Product Inquiry Form ─────────────── */
.product-inquiry-form {
  background: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: var(--card-radius);
  padding: 30px;
  border-left: 3px solid #C9A84C;
}
.product-inquiry-form h3 {
  color: #C9A84C;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}
.product-inquiry-form > p {
  font-size: 14px;
  color: #666 !important;
  margin-bottom: 20px;
}
/* Fluent Forms inside product detail */
.product-inquiry-form .fluentform {
  margin-top: 16px;
}
.product-inquiry-form .ff-btn-submit {
  background: #C9A84C !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 32px !important;
  font-weight: 600 !important;
  transition: var(--transition-base) !important;
}
.product-inquiry-form .ff-btn-submit:hover {
  background: #B8962E !important;
}
.product-inquiry-form .ff-el-form-control {
  border-radius: 8px !important;
  border: 1px solid #E0E0E0 !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
}

/* ════════════════════════════════════════════════════════
   20. Pagination — 品牌分页
   HTML结构: .ast-pagination > nav > .nav-links > .page-numbers
   ════════════════════════════════════════════════════════ */

.ast-pagination {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0 40px;
  text-align: center;
}
.ast-pagination .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-body);
  text-decoration: none;
  transition: var(--transition-base);
}
.ast-pagination .page-numbers:hover {
  border-color: #C9A84C;
  color: #C9A84C;
}
.ast-pagination .page-numbers.current {
  background: #C9A84C;
  border-color: #C9A84C;
  color: #FFFFFF;
  font-weight: 600;
}
.ast-pagination .page-numbers.dots {
  border: none;
  color: #999;
  padding: 8px 8px;
}
.ast-pagination .page-numbers.next,
.ast-pagination .page-numbers.prev {
  padding: 8px 20px;
}
.ast-pagination .page-numbers.next:hover,
.ast-pagination .page-numbers.prev:hover {
  background: #C9A84C;
  color: #FFFFFF;
}

/* ════════════════════════════════════════════════════════
   21. Page Header — 统一页面标题区（非首页）
   HTML结构: .page-header-bar > .ast-container > h1 + p.subtitle
   ════════════════════════════════════════════════════════ */
.page-header-bar {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.page-header-bar h1 {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.page-header-bar .subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ─── 22. FAQ Accordion ──────────────────────── */
/* New CSS-only accordion (layout-v2 class) */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

/* Existing inline FAQ structure support (faq-q / faq-a / faq-arrow) */
.faq-item {
  border: 1px solid #EAEAEA;
  border-radius: var(--card-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-base);
}
.faq-item:hover {
  border-color: #C9A84C;
  box-shadow: var(--card-shadow);
}
.faq-q {
  background: #FAFAFA;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-q:hover {
  background: #F5F0E8;
}
.faq-a {
  padding: 18px 24px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 14px;
  border-top: 1px solid #EAEAEA;
}
.faq-arrow {
  color: #C9A84C;
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* ════════════════════════════════════════════════════════
   23. Contact Page — 品牌联系页面增强
   ════════════════════════════════════════════════════════ */
.contact-info-card {
  background: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: var(--card-radius);
  padding: 24px;
  margin-bottom: 16px;
}
.contact-info-card h3 {
  color: #1A1A2E;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-info-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   24. Elementor 页面品牌一致性增强
   针对当前所有Elementor构建的页面自动应用品牌风格
   ════════════════════════════════════════════════════════ */

/* Page第一个Elementor Section作为隐式标题区 — 深色背景+金色标题 */
.elementor-top-section:first-child .elementor-widget-heading .elementor-heading-title {
  color: #1A1A2E;
}
.elementor-top-section:first-child .elementor-widget-text-editor {
  color: #666;
}

/* 内页白色背景区加重 */
.page .elementor-widget-wrap {
  position: relative;
}

/* 区块标题金色下划线（Elementor heading + divider组合） */
.elementor-widget-heading + .elementor-widget-divider {
  --divider-color: #C9A84C !important;
}

/* Icon List 品牌色 */
.elementor-icon-list-item {
  transition: color 0.2s;
}
.elementor-icon-list-item:hover .elementor-icon-list-text {
  color: #C9A84C;
}
.elementor-icon-list-icon i {
  color: #C9A84C !important;
}

/* HTML widget 内链接品牌 */
.elementor-widget-html a {
  color: #C9A84C;
  transition: color 0.2s;
}
.elementor-widget-html a:hover {
  color: #B8962E;
}

/* ════════════════════════════════════════════════════════
   25. Elementor 子页面标题增强 — 首个标题金色装饰
   ════════════════════════════════════════════════════════ */

/* 内页第一个 heading widget 加大+金底装饰 */
.page .elementor-top-section:first-child .elementor-widget-heading:first-child .elementor-heading-title {
  position: relative;
  padding-bottom: 16px;
}
.page .elementor-top-section:first-child .elementor-widget-heading:first-child .elementor-heading-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #C9A84C, #E8D5B7);
  border-radius: 2px;
}

/* ─── 内页首个 section 顶部加金边（非首页） ── */
.page .elementor-top-section:first-child {
  border-top: 3px solid #C9A84C;
}


/* ════════════════════════════════════════════════════════
   26. Product Grid — 3列豆腐块布局（覆盖style.css的4列）
   ════════════════════════════════════════════════════════ */
.product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    width: 100%;
    margin: 30px 0;
}

/* 保证ast-container内full width */
.tax-product_cat .ast-container .product-grid {
    width: 100%;
    max-width: none;
}

/* 无图片卡片占位优化 */
.product-card-image {
    background: linear-gradient(135deg, #F8F6F0, #E8D5B7) !important;
    min-height: 220px;
}
.product-card-image span {
    color: var(--brand-accent, #C9A84C) !important;
    font-weight: 500;
}

/* 卡片flex列布局保证等高 */
.product-card {
    display: flex;
    flex-direction: column;
}
.product-card-body {
    flex: 1;
}

/* ════════════════════════════════════════════════════════
   26. 响应式
   ════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .elementor-container {
    padding: 0 30px !important;
  }
  .product-grid,
  .product-detail-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .product-detail-wrapper {
    flex-direction: column;
  }
  .product-detail-gallery {
    flex: none;
    max-width: 100%;
    position: static;
  }
}
@media (max-width: 768px) {
  .hero-heading {
    font-size: 32px !important;
  }
  .hero-subheading {
    font-size: 16px !important;
  }
  .section-title h2 {
    font-size: 28px !important;
  }
  .about-section-right h2 {
    font-size: 28px !important;
  }
  .cta-section h2 {
    font-size: 30px !important;
  }
  .elementor-top-section {
    padding: 60px 0 !important;
  }
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .product-detail-info h1 {
    font-size: 24px;
  }
  .page-header-bar {
    padding: 60px 0 40px;
  }
  .page-header-bar h1 {
    font-size: 28px;
  }
}
