/* ============================================================
   村工厂 (CunGongChang) Theme Stylesheet
   Version: 1.0.0 | 风格：纯自然·零添加·生态循环
   禁止渐变色，使用纯色平面设计 + 微妙阴影
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --cgc-primary:        #528D67;  /* 主色 - 深绿 */
  --cgc-primary-dark:   #3d6e50;
  --cgc-primary-light:  #6ba882;
  --cgc-accent:         #51C1C0;  /* 强调色 - 青绿 */
  --cgc-accent-dark:    #3da8a7;
  --cgc-bg:             #f8faf9;  /* 背景 - 极浅绿 */
  --cgc-surface:        #ffffff;
  --cgc-text:           #1c1c1c;
  --cgc-text-muted:     #6b7280;
  --cgc-border:         #e5e7e0;
  --cgc-shadow:         rgba(0, 0, 0, 0.08);
  --cgc-overlay:        rgba(0, 0, 0, 0.42);
  --cgc-green-light:    #C2EDD9;  /* 浅绿 */
  --cgc-green-pale:     #CFF2F5;  /* 极浅青绿 */
  --cgc-green-medium:   #ABD4BA;  /* 中绿 */
}

/* ─── Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', sans-serif;
  color: var(--cgc-text);
  background: var(--cgc-surface);
  overflow-x: hidden;
  margin: 0; padding: 0;
  max-width: 100vw;
}

img { display: block; max-width: 100%; }

a { transition: color 0.2s; }

/* ─── Navbar ────────────────────────────────────────────── */
.cgc-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1040;
  padding: 0;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.cgc-navbar .w-100 {
  display: flex;
  align-items: center;
  min-height: 72px;
}
.cgc-navbar.scrolled,
.cgc-navbar:hover {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.cgc-navbar .navbar-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 3px;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.35s ease;
  line-height: 1;
  padding: 0;
}
.cgc-navbar.scrolled .navbar-brand,
.cgc-navbar:hover .navbar-brand { color: var(--cgc-primary); }
.cgc-navbar .navbar-brand img { 
  height: 36px; 
  width: auto;
  filter: brightness(0) invert(1); /* 默认白色 */
  transition: filter 0.35s ease;
}
.cgc-navbar.scrolled .navbar-brand img,
.cgc-navbar:hover .navbar-brand img { 
  filter: none; /* 滚动或悬停时恢复原色 */
}
.cgc-navbar .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.93rem; font-weight: 500;
  padding: 8px 14px !important;
  transition: color 0.2s ease;
  line-height: 1;
}
.cgc-navbar.scrolled .nav-link,
.cgc-navbar:hover .nav-link { color: #000 !important; }
.cgc-navbar .nav-link:hover,
.cgc-navbar .nav-link.active      { 
  color: var(--cgc-accent) !important;
}
.cgc-navbar.scrolled .nav-link:hover,
.cgc-navbar.scrolled .nav-link.active,
.cgc-navbar:hover .nav-link:hover,
.cgc-navbar:hover .nav-link.active { 
  color: var(--cgc-primary) !important;
}
.cgc-navbar .dropdown-menu {
  border: 1px solid var(--cgc-border);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 6px 0;
}
.cgc-navbar .dropdown-item { font-size: 0.88rem; padding: 8px 18px; }
.cgc-navbar .dropdown-item:hover { background: var(--cgc-green-light); color: var(--cgc-primary); }
.cgc-navbar .navbar-toggler {
  border: 1px solid rgba(255,255,255,0.5);
  padding: 4px 8px; background: transparent;
}
.cgc-navbar.scrolled .navbar-toggler { border-color: var(--cgc-border); }
/* .cgc-navbar .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } */
.cgc-navbar.scrolled .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833,33,33,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.cgc-nav-cta {
  background: var(--cgc-accent) !important;
  color: #fff !important;
  border-radius: 2px;
  padding: 9px 20px !important;
  font-weight: 600;
  margin-left: 8px;
  line-height: 1;
}
.cgc-nav-cta:hover { background: var(--cgc-accent-dark) !important; }
.cgc-navbar.scrolled .cgc-nav-cta { background: var(--cgc-primary) !important; }
.cgc-navbar.scrolled .cgc-nav-cta:hover { background: var(--cgc-primary-dark) !important; }

/* ─── 移动端导航背景 ─── */
.cgc-navbar .navbar-collapse {
  background: transparent;
}

/* 桌面端隐藏移动端按钮 */
.cgc-mobile-menu-btn {
  display: none;
  margin-left: auto;
}

/* 桌面端隐藏关闭按钮 */
.cgc-menu-close {
  display: none;
}

@media (max-width: 991px) {
  /* 移动端菜单按钮 - 右侧 */
  .cgc-navbar .w-100 .cgc-mobile-menu-btn {
    display: flex !important;
    margin-left: auto;
    order: 999;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    /* border: 2px solid rgba(255,255,255,0.5); */
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
  }
  
  /* .cgc-navbar.scrolled .cgc-mobile-menu-btn,
  .cgc-navbar:hover .cgc-mobile-menu-btn {
    border-color: rgba(82,141,103,0.3);
    background: rgba(82,141,103,0.1);
  } */
  
  .cgc-mobile-menu-btn:hover {
    /* border-color: #528D67; */
    background: rgba(82,141,103,0.2);
    transform: scale(1.2);
  }
  
  .cgc-mobile-menu-btn .navbar-toggler-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }
  
  /* 移动端导航面板 */
  .cgc-navbar .navbar-collapse.cgc-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #198754;
    margin-top: 0;
    padding: 0;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1050;
  }
  .cgc-navbar .navbar-collapse.cgc-nav-menu.show {
    right: 0;
  }
  
  /* 关闭按钮 - 纯自然绿色 */
  .cgc-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: #528D67;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(82,141,103,0.3);
  }
  
  .cgc-menu-close:hover {
    background: #3d6e50;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(82,141,103,0.4);
  }
  
  .cgc-menu-close:active {
    transform: rotate(90deg) scale(0.95);
  }
  
  /* 导航菜单列表 */
  .cgc-navbar .navbar-collapse.cgc-nav-menu .navbar-nav {
    padding: 80px 0 16px;
    border-bottom: none;
    margin-bottom: 0;
  }
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-link {
    color: #ffffff !important;
    padding: 14px 24px !important;
    font-size: 1rem;
    border-bottom: 1px solid #e5e7e0;
  }
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-link:hover,
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-link.active {
    color: #528D67 !important;
    background: #f8faf9;
  }
  .cgc-navbar .navbar-collapse.cgc-nav-menu .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    background: #f8faf9;
    /* 移动端默认展开 */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* 移动端dropdown-toggle箭头旋转 */
  .cgc-navbar .navbar-collapse.cgc-nav-menu .dropdown-toggle::after {
    transition: transform 0.3s;
    transform: rotate(90deg);
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .dropdown-toggle[aria-expanded="false"]::after {
    transform: rotate(0deg);
  }
  .cgc-navbar .navbar-collapse.cgc-nav-menu .dropdown-item {
    padding: 10px 24px;
  }
  .cgc-navbar .navbar-collapse.cgc-nav-menu .dropdown-item:hover {
    background: #e5e7e0;
    color: #528D67;
  }
  
  /* 右侧操作区 */
  .cgc-navbar .navbar-collapse.cgc-nav-menu .mobile-nav-actions {
    padding: 0;
    border-top: none;
  }
  
  /* 第一行：搜索和购物车 */
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-action-row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-action-item {
    flex: 1;
    position: relative;
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-action-item:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-action-item .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: none;
    transition: background 0.2s;
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-action-item .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-action-item .nav-link i {
    font-size: 1.3rem;
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-action-item .nav-link span {
    font-size: 0.85rem;
    font-weight: 500;
  }
  
  /* 第二行：用户信息 */
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-user-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-user-info img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-user-info i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-user-info span {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
  }
  
  /* 用户菜单 */
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-user-menu {
    list-style: none;
    padding: 8px 0;
    margin: 0;
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-user-menu li {
    margin: 0;
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-user-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-user-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-user-menu li a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-user-menu li.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
  }
  
  /* 登录/注册行 */
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-auth-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-auth-row .nav-link {
    padding: 10px 24px !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    border-bottom: none;
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-auth-row .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .nav-auth-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
  }
  
  /* 移除原有的d-flex样式 */
  .cgc-navbar .navbar-collapse.cgc-nav-menu .d-flex {
    padding: 0;
    flex-direction: column;
    align-items: stretch !important;
    gap: 0 !important;
    border-top: none;
    background: transparent;
  }
  
  .cgc-navbar .navbar-collapse.cgc-nav-menu .text-white-50 {
    color: #999 !important;
  }
  
  /* 遮罩层 */
  .cgc-navbar .navbar-collapse.cgc-nav-menu.show::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
  }
}

/* ─── Hero Carousel ─────────────────────────────────────── */
.cgc-hero {
  position: relative;
  width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}
.cgc-hero .carousel,
.cgc-hero .carousel-inner,
.cgc-hero .carousel-item { height: 100%; touch-action: pan-y; }
.cgc-hero .carousel-item {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}

/* 触摸滑动支持 */
.carousel-item-next:not(.carousel-item-start),
.carousel-item-prev:not(.carousel-item-end) {
  display: block;
}

/* 拖拽时的视觉反馈 */
.cgc-hero .carousel {
  user-select: none;
  -webkit-user-select: none;
}

.cgc-hero .carousel:active {
  cursor: grabbing;
}

/* 触摸手势滑动指示 */
.cgc-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}

@media (hover: none) and (pointer: coarse) {
  .cgc-hero::after {
    opacity: 1;
  }
  
  /* 移动端显示滑动提示图标 */
  .cgc-hero::before {
    /* content: '← 滑动查看 →'; */
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
    pointer-events: none;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  }
}
.cgc-hero .carousel-caption {
  position: absolute;
  top: 50%; left: 8%; right: auto;
  transform: translateY(-50%);
  text-align: left;
  padding-bottom: 0; bottom: auto;
  max-width: 560px;
  z-index: 2;
}
.hero-tag {
  display: inline-block;
  background: var(--cgc-accent);
  color: #fff; font-size: 0.76rem;
  letter-spacing: 4px; text-transform: uppercase;
  padding: 4px 14px; margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800; line-height: 1.25;
  color: #fff; margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: 1rem; opacity: 0.88;
  color: #fff; margin-bottom: 32px;
  line-height: 1.75; max-width: 400px;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #198754; color: #fff;
  font-size: 0.95rem; font-weight: 600;
  padding: 12px 28px; border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.hero-btn:hover { background: #3d6e50; color: #fff; transform: translateX(4px); }
.hero-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff; margin-left: 12px;
}
.hero-btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateX(0); }

/* ─── 轮播指示器 ─── */
.cgc-hero .carousel-indicators { bottom: 44px; left: 64px; margin: 0; justify-content: flex-start; }
.cgc-hero .carousel-indicators [data-bs-target] {
  width: 36px; height: 3px;
  background: rgba(255,255,255,0.45);
  border: none; border-radius: 0; margin: 0 5px;
  transition: background 0.3s, width 0.3s;
}
.cgc-hero .carousel-indicators .active { background: #fff; width: 56px; }

/* ─── 下滑指示图标 ─── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 13px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 20px;
    opacity: 0.3;
  }
  100% {
    top: 8px;
    opacity: 1;
  }
}

/* 滚动提示已删除 */
.cgc-scroll-hint { display: none; }
.cgc-scroll-hint .sdot {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 11px; position: relative;
}
.cgc-scroll-hint .sdot::after {
  content: ''; position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.7); border-radius: 2px;
  animation: sdotMove 2.2s ease-in-out infinite;
}
@keyframes hintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes sdotMove {
  0%   { top: 5px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* ─── Section Commons ───────────────────────────────────── */
.cgc-section      { padding: 88px 0; }
.cgc-section-sm   { padding: 64px 0; }
.cgc-section-bg   { background: var(--cgc-bg); }
.cgc-section-dark {
  background: var(--cgc-primary);
  color: #fff;
  padding: 80px 0;
}

/* ─── CTA按钮响应式 ─── */
.cgc-section-dark .d-flex.justify-content-center {
  flex-direction: row;
}

@media (max-width: 576px) {
  .cgc-section-dark .d-flex.justify-content-center {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cgc-section-dark .cgc-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
.cgc-section-ink  { background: #111a14; color: #fff; }

.cgc-section-header {
  text-align: center; margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}
.cgc-section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  max-width: 200px;
  height: 2px;
  background: #19875447;
}
.cgc-section-header::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #0000007a;
  border-radius: 50%;
  z-index: 2;
}
.cgc-section-dark .cgc-section-header::after { background: rgba(255,255,255,0.3); }
.cgc-section-dark .cgc-section-header::before { background: #fff; }
.cgc-section-ink .cgc-section-header::after { background: rgba(255,255,255,0.3); }
.cgc-section-ink .cgc-section-header::before { background: #fff; }
.cgc-section-header .label {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.06);
  text-transform: uppercase;
  letter-spacing: 8px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.cgc-section-dark .cgc-section-header .label { color: rgba(255,255,255,0.04); }
.cgc-section-ink .cgc-section-header .label  { color: rgba(255,255,255,0.04); }
.cgc-section-header h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--cgc-text);
  margin: 0;
  line-height: 1.3;
}
.cgc-section-dark .cgc-section-header h2,
.cgc-section-ink .cgc-section-header h2  { color: #fff; }
.cgc-section-header p { display: none; }
.cgc-divider { display: none; }
.cgc-section-dark .cgc-section-header p,
.cgc-section-ink .cgc-section-header p { color: rgba(255,255,255,0.65); }
.cgc-divider {
  width: 44px; height: 3px;
  background: var(--cgc-accent); margin: 14px auto;
}
.cgc-divider-left { margin: 14px 0; }

/* ─── 精选产品模块（新样式） ─────────────────────────── */
.cgc-product-card-new {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 1px solid #f0f0f0;
}
.cgc-product-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.cgc-product-card-new:hover .product-card-img img {
  transform: scale(1.08);
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cgc-accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.product-badge-new {
  background: var(--cgc-primary);
}
.product-card-body {
  padding: 24px;
}
.product-card-cat {
  font-size: 0.78rem;
  color: var(--cgc-primary);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.4;
  min-height: 44px;
}
.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.price-current {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff4d4f;
}
.price-original {
  font-size: 0.95rem;
  color: #999;
  text-decoration: line-through;
}
.product-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #528D67;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.product-card-btn:hover {
  background: #3d6e50;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(82, 141, 103, 0.3);
}

/* ─── 核心理念模块 ───────────────────────────────────── */
.cgc-core-concept {
  padding: 100px 0;
  background: #fff;
}
.core-concept-header {
  margin-bottom: 32px;
}
.core-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--cgc-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}
.core-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.2;
}
.core-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--cgc-primary) 0%, var(--cgc-accent) 100%);
  margin-bottom: 16px;
}
.core-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}
.core-content-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
.core-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 16px;
}
.core-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0;
}
.core-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}
.feature-icon {
  width: 24px;
  height: 24px;
  background: var(--cgc-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.core-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #528D67;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 12px;
}
.core-btn:hover {
  background: #3d6e50;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82, 141, 103, 0.3);
}
.core-concept-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.core-concept-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}
.core-concept-image:hover img {
  transform: scale(1.05);
}
.core-image-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--cgc-accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.badge-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ─── 概念模块（新样式） ─────────────────────────────── */
.cgc-concept-wrapper {
  display: flex;
  min-height: 420px;
  background: #fff;
  margin: 0 -15px;
  width: calc(100% + 30px);
}
.cgc-concept-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid #e8e8e8;
}
.cgc-concept-item:last-child { border-right: none; }

/* 悬停时：当前展开，其他收缩 */
.cgc-concept-wrapper:hover .cgc-concept-item {
  flex: 0.8;
}
.cgc-concept-wrapper .cgc-concept-item:hover {
  flex: 1.2;
}

/* 默认状态 */
.concept-default {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  transition: opacity 0.4s, transform 0.4s;
}
.concept-icon-box {
  width: 52px;
  height: 52px;
  background: #528D67;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.concept-default h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.concept-brief {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.6;
  margin: 0;
}
.concept-dots {
  margin-top: 20px;
  display: flex;
  gap: 6px;
  justify-content: center;
}
.concept-dots span {
  width: 6px;
  height: 6px;
  background: #528D67;
  border-radius: 50%;
}

/* 悬停展开状态 */
.concept-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.cgc-concept-item:hover .concept-hover {
  opacity: 1;
  visibility: visible;
}
.concept-hover-bg {
  position: absolute;
  inset: 0;
  background-color: #393939;
  background-image: url('/public/template/cungc/assets/image/18.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.concept-hover-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  color: #fff;
}
.concept-hover-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}
.concept-hover-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.concept-hover-line {
  width: 40px;
  height: 2px;
  background: #fff;
  margin-bottom: 20px;
}
.concept-hover-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex: 1;
}
.concept-hover-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}
.concept-hover-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}
.concept-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.3s;
  align-self: flex-start;
}
.concept-more-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}

/* 悬停时隐藏默认内容 */
.cgc-concept-item:hover .concept-default {
  opacity: 0;
  transform: translateY(-10px);
}

/* 旧样式（已废弃） */
.cgc-concept-card { display: none; }

/* ─── 分类模块（新样式） ─────────────────────────────── */
.cgc-cat-card-new {
  position: relative;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cgc-cat-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(82, 141, 103, 0.5); */
  background: #528D67;
  transition: background 0.3s;
}
.cgc-cat-card-new:hover .cat-card-overlay {
  background: rgba(82, 141, 103, 0.7);
}
.cat-card-content {
  position: absolute;
  z-index: 1;
  padding: 32px 28px;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.cat-card-icon {
  width: 56px;
  height: 56px; 
  background: #ffffff;
  color: #000000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.cat-card-tag {
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.cat-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.3;
}

/* ─── 分类模块旧样式（已废弃） ────────────────────────── */
.cgc-cat-grid { display: none; }

/* ─── 概念模块 (Concept) ─────────────────────────────────── */
.cgc-concept-card {
  text-align: center; padding: 44px 28px;
  border: 1px solid var(--cgc-border);
  background: var(--cgc-surface);
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}
.cgc-concept-card:hover {
  box-shadow: 0 10px 40px rgba(42, 96, 73, 0.12);
  transform: translateY(-6px);
}
.concept-icon {
  width: 74px; height: 74px;
  background: var(--cgc-green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 2rem; color: var(--cgc-primary);
}
.cgc-concept-card h4 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--cgc-text); margin-bottom: 12px;
}
.cgc-concept-card p {
  color: var(--cgc-text-muted);
  font-size: 0.88rem; line-height: 1.85; margin: 0;
}

/* ─── 分类模块 (Categories) ──────────────────────────────── */
.cgc-cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 768px) { .cgc-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cgc-cat-grid { grid-template-columns: 1fr; } }

.cgc-cat-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer; background: #2a4030;
}
.cgc-cat-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.cgc-cat-card:hover img { transform: scale(1.07); }
.cgc-cat-card .cat-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.38);
  transition: background 0.3s;
}
.cgc-cat-card:hover .cat-overlay { background: rgba(0, 0, 0, 0.52); }
.cgc-cat-card .cat-info {
  position: relative; z-index: 2;
  padding: 18px 20px; color: #fff;
}
.cgc-cat-card .cat-tag {
  font-size: 0.7rem; letter-spacing: 2px;
  opacity: 0.7; margin-bottom: 5px;
}
.cgc-cat-card .cat-name {
  font-size: 1.05rem; font-weight: 700; margin: 0;
}
.cgc-cat-card .cat-arrow {
  position: absolute; top: 16px; right: 18px; z-index: 2;
  color: rgba(255,255,255,0.55); font-size: 1.1rem;
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
}
.cgc-cat-card:hover .cat-arrow { opacity: 1; transform: translate(3px,-3px); }

/* ─── 平台溯源 (Platform) ───────────────────────────────── */
.cgc-platform-steps {
  display: flex; gap: 0; counter-reset: step-c;
}
.cgc-p-step {
  flex: 1; padding: 44px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  counter-increment: step-c;
  transition: background 0.3s;
  position: relative;
}
.cgc-p-step:last-child { border-right: none; }
.cgc-p-step:hover { background: rgba(255,255,255,0.06); }
.cgc-p-step-num {
  font-size: 3rem; font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1; margin-bottom: 4px;
}
.cgc-p-step-icon {
  font-size: 1.9rem; color: var(--cgc-accent);
  margin-bottom: 14px;
}
.cgc-p-step h4 {
  font-size: 0.95rem; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.cgc-p-step p {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; margin: 0;
}
.cgc-platform-stat {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 32px 0 0;
  flex-wrap: wrap;
}
.cgc-stat-item { text-align: center; padding: 0 24px; }
.cgc-stat-item .stat-num {
  font-size: 2.2rem; font-weight: 800; color: var(--cgc-accent);
  line-height: 1;
}
.cgc-stat-item .stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.cgc-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ─── 精选产品 (Products) ───────────────────────────────── */
.cgc-product-card {
  background: var(--cgc-surface);
  border: 1px solid var(--cgc-border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.cgc-product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.cgc-product-card .prod-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--cgc-bg);
}
.cgc-product-card .prod-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.cgc-product-card:hover .prod-img img { transform: scale(1.06); }
.cgc-product-card .prod-body { padding: 20px; }
.cgc-product-card .prod-cat {
  font-size: 0.72rem; color: var(--cgc-primary);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.cgc-product-card .prod-name {
  font-size: 1rem; font-weight: 600; color: var(--cgc-text); margin-bottom: 9px;
}
.cgc-product-card .prod-desc {
  font-size: 0.84rem; color: var(--cgc-text-muted);
  line-height: 1.75; margin-bottom: 16px;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.prod-link {
  color: var(--cgc-primary); font-size: 0.84rem; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  border-bottom: 1px solid var(--cgc-primary); padding-bottom: 1px;
  transition: gap 0.2s, color 0.2s, border-color 0.2s;
}
.prod-link:hover { gap: 9px; color: var(--cgc-accent); border-bottom-color: var(--cgc-accent); }

/* ─── 新闻资讯 (News) ──────────────────────────────────── */
.cgc-news-card {
  background: var(--cgc-surface);
  border: 1px solid var(--cgc-border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.cgc-news-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.09); }
.cgc-news-card .news-img {
  aspect-ratio: 16/9; overflow: hidden; background: var(--cgc-bg);
  display: flex; align-items: center; justify-content: center;
}
.cgc-news-card .news-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.cgc-news-card:hover .news-img img { transform: scale(1.05); }
.cgc-news-card .news-img .news-list-text-thumb {
  width: 100%; height: 100%;
}
.cgc-news-card .news-img .news-list-text-thumb-inner {
  font-size: 0.9rem;
}
.cgc-news-card .news-body { padding: 20px; }
.cgc-news-card .news-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.76rem; color: var(--cgc-text-muted); margin-bottom: 10px;
}
.news-cat-tag {
  background: var(--cgc-green-light); color: var(--cgc-primary);
  padding: 2px 8px; font-size: 0.7rem; font-weight: 600;
}
.cgc-news-card .news-title {
  font-size: 0.93rem; font-weight: 600; color: var(--cgc-text);
  margin-bottom: 8px; line-height: 1.55;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.cgc-news-card a { text-decoration: none; color: inherit; }
.cgc-news-card a:hover .news-title { color: var(--cgc-primary); }

/* ─── 品质保障 (Quality) ───────────────────────────────── */
.cgc-quality-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 26px; border: 1px solid var(--cgc-border);
  background: var(--cgc-surface);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cgc-quality-item:hover {
  border-color: var(--cgc-primary);
  box-shadow: 0 4px 20px rgba(42, 96, 73, 0.09);
}
.q-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--cgc-green-light); color: var(--cgc-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
}
.cgc-quality-item h5 {
  font-size: 0.93rem; font-weight: 700; color: var(--cgc-text); margin-bottom: 6px;
}
.cgc-quality-item p {
  font-size: 0.83rem; color: var(--cgc-text-muted); line-height: 1.75; margin: 0;
}

/* ─── 合作伙伴 (Partners) ───────────────────────────────── */
.cgc-partner-list {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.cgc-partner-item {
  flex: 0 0 16.666%; padding: 24px 20px;
  border-right: 1px solid var(--cgc-border);
  border-bottom: 1px solid var(--cgc-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 600; color: var(--cgc-text-muted);
  text-align: center; min-height: 80px;
  transition: background 0.2s, color 0.2s;
}
.cgc-partner-item:hover { background: var(--cgc-green-light); color: var(--cgc-primary); }
@media (max-width: 768px) { .cgc-partner-item { flex: 0 0 33.333%; } }
@media (max-width: 480px) { .cgc-partner-item { flex: 0 0 50%; } }

/* ─── 通用按钮 ──────────────────────────────────────────── */
.cgc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 600;
  padding: 12px 28px;
  border: 2px solid transparent; border-radius: 2px;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.cgc-btn-primary { background: #528D67; color: #fff; border-color: #528D67; }
.cgc-btn-primary:hover { background: #3d6e50; color: #fff; border-color: #3d6e50; transform: translateY(-2px); }
.cgc-btn-accent  { background: #528D67; color: #fff; border-color: #528D67; }
.cgc-btn-accent:hover  { background: #3d6e50; color: #fff; border-color: #3d6e50; transform: translateY(-2px); }
.cgc-btn-outline { background: transparent; color: #528D67; border-color: #528D67; }
.cgc-btn-outline:hover { background: #528D67; color: #fff; }
.cgc-btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.cgc-btn-outline-white:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ─── 新闻列表页 ───────────────────────────────────────── */
.cgc-news-list-card {
  display: flex; gap: 20px;
  background: var(--cgc-surface);
  border: 1px solid var(--cgc-border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  margin-bottom: 20px;
}
.cgc-news-list-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.news-list-img {
  width: 260px; flex-shrink: 0;
  aspect-ratio: 4/3;
  overflow: hidden; background: var(--cgc-bg);
  display: flex; align-items: center; justify-content: center;
}
.news-list-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.cgc-news-list-card:hover .news-list-img img { transform: scale(1.05); }
/* 无缩略图时显示文字缩略图 */
.news-list-text-thumb {
  width: 100%; height: 100%;
  background: #528D67;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  text-align: center;
}
.news-list-text-thumb-inner {
  font-size: 0.95rem; font-weight: 700; color: #fff;
  line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; word-break: break-all;
}
.news-list-body { padding: 20px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.news-list-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.76rem; color: var(--cgc-text-muted); margin-bottom: 10px;
}
.news-list-title {
  font-size: 1.1rem; font-weight: 700; color: var(--cgc-text);
  margin-bottom: 10px; line-height: 1.5;
}
.news-list-desc {
  font-size: 0.88rem; color: var(--cgc-text-muted);
  line-height: 1.75;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}

/* ─── 侧边栏 ───────────────────────────────────────────── */
.cgc-sidebar-card {
  background: var(--cgc-surface);
  border: 1px solid var(--cgc-border);
  padding: 24px;
  margin-bottom: 20px;
}
.cgc-sidebar-title {
  font-size: 1rem; font-weight: 700; color: var(--cgc-text);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--cgc-primary);
}
.cgc-sidebar-list { list-style: none; padding: 0; margin: 0; }
.cgc-sidebar-list li { margin-bottom: 8px; }
.cgc-sidebar-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  color: var(--cgc-text); text-decoration: none;
  border: 1px solid var(--cgc-border);
  transition: all 0.2s;
}
.cgc-sidebar-list a:hover {
  background: var(--cgc-green-light);
  border-color: var(--cgc-primary);
  color: var(--cgc-primary);
}
.cgc-sidebar-list a.active {
  background: var(--cgc-primary);
  border-color: var(--cgc-primary);
  color: #fff;
  font-weight: 600;
}
.cgc-sidebar-list a.active i {
  color: #fff;
}

/* ─── 热门列表 ─────────────────────────────────────────── */
.cgc-hot-list { list-style: none; padding: 0; margin: 0; }
.cgc-hot-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cgc-border);
}
.cgc-hot-list li:last-child { border-bottom: none; }
.hot-num {
  width: 24px; height: 24px;
  background: var(--cgc-bg); color: var(--cgc-text-muted);
  font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cgc-hot-list li:nth-child(1) .hot-num { background: var(--cgc-accent); color: #fff; }
.cgc-hot-list li:nth-child(2) .hot-num { background: var(--cgc-primary); color: #fff; }
.cgc-hot-list li:nth-child(3) .hot-num { background: var(--cgc-primary-light); color: #fff; }
.cgc-hot-list a {
  flex: 1; color: var(--cgc-text); text-decoration: none;
  font-size: 0.9rem;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 1; -webkit-box-orient: vertical;
}
.cgc-hot-list a:hover { color: var(--cgc-primary); }

/* ─── 文章详情页 ───────────────────────────────────────── */
.news-detail-meta {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 0.85rem; color: var(--cgc-text-muted);
  margin-bottom: 16px;
}
.news-detail-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--cgc-text);
  line-height: 1.4; margin-bottom: 0;
}
.news-detail-lead {
  font-size: 1rem; color: var(--cgc-text-muted);
  line-height: 1.8; margin-top: 16px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.news-detail-cover {
  margin-bottom: 32px;
  overflow: hidden;
}
.news-detail-cover img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
}
.news-detail-content {
  font-size: 1.05rem; line-height: 1.9;
  color: var(--cgc-text);
}
.news-detail-content p { margin-bottom: 1.5em; }
.news-detail-content img { max-width: 100%; height: auto; margin: 20px 0; }
.news-detail-content h2, .news-detail-content h3 {
  margin-top: 2em; margin-bottom: 1em;
  font-weight: 700;
}

/* ─── 标签 & 分享 ─────────────────────────────────────── */
.news-detail-tags {
  margin: 32px 0;
  padding-top: 20px;
  border-top: 1px solid var(--cgc-border);
  font-size: 0.9rem; color: var(--cgc-text-muted);
}
.news-tag {
  display: inline-block;
  background: var(--cgc-green-light);
  color: var(--cgc-primary);
  padding: 4px 12px; margin-right: 8px; margin-bottom: 8px;
  font-size: 0.8rem;
}
.news-detail-share {
  display: flex; align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--cgc-border);
}
.share-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--cgc-bg); color: var(--cgc-text-muted);
  margin-right: 10px;
  transition: all 0.2s;
}
.share-icon:hover {
  background: var(--cgc-primary);
  color: #fff;
}

/* ─── 上下篇导航 ───────────────────────────────────────── */
.news-detail-nav {
  display: flex; gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--cgc-border);
}
.nav-prev, .nav-next {
  flex: 1;
  display: flex; align-items: center; gap: 12px;
  padding: 20px;
  background: var(--cgc-bg);
  text-decoration: none;
  color: var(--cgc-text);
  transition: all 0.2s;
}
.nav-prev:hover, .nav-next:hover {
  background: var(--cgc-green-light);
}
.nav-prev i, .nav-next i { font-size: 1.5rem; color: var(--cgc-primary); }
.nav-prev span, .nav-next span {
  font-size: 0.75rem; color: var(--cgc-text-muted);
}
.nav-title {
  font-size: 0.9rem; font-weight: 600;
  margin-top: 4px;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 1; -webkit-box-orient: vertical;
}
.nav-disabled {
  flex: 1;
  display: flex; align-items: center; gap: 12px;
  padding: 20px;
  background: var(--cgc-bg);
  opacity: 0.5;
}
.nav-disabled i { font-size: 1.5rem; color: var(--cgc-text-muted); }

/* ─── 工厂平台模块 ───────────────────────────────────── */
.cgc-platform-section { background: #fff; }
.cgc-section .cgc-platform-grid {
  display: flex;
  min-height: 480px;
  margin: 0 -15px;
  width: calc(100% + 30px);
}
.cgc-platform-blue {
  flex: 0 0 32%;
  background: linear-gradient(135deg, #528D67 0%, #528D67 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}
.platform-blue-bg {
  position: absolute;
  inset: 0;
  background-image: url('/public/template/cungc/assets/image/15.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.platform-blue-content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.platform-label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.platform-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}
.platform-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.platform-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.3s;
}
.platform-more-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}

/* 右侧网格 */
.cgc-platform-grid-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  background: var(--cgc-border);
}
.platform-grid-item {
  background: #fff;
  padding: 40px 32px;
  transition: background 0.3s;
}
.platform-grid-item:hover {
  background: #f3f3f3;
}
.platform-item-icon {
  width: 48px;
  height: 48px;
  background: var(--cgc-green-light);
  color: var(--cgc-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.platform-grid-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cgc-text);
  margin-bottom: 12px;
}
.platform-grid-item p {
  font-size: 0.88rem;
  color: var(--cgc-text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ─── 工厂平台旧样式（已废弃，保留以防冲突） ───────────── */
.cgc-platform-steps { display: none; }
.cgc-platform-stat { display: none; }
.cgc-p-step { display: none; }
.cgc-stat-item { display: none; }
.cgc-stat-divider { display: none; }

/* ─── Footer ────────────────────────────────────────────── */
.cgc-footer { background: #111a14; color: rgba(255,255,255,0.6); }
.cgc-footer-top { padding: 64px 0 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cgc-footer-bottom { padding: 20px 0; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-brand {
  font-size: 1.3rem; font-weight: 800; color: #fff;
  letter-spacing: 3px; margin-bottom: 14px; display: block; text-decoration: none;
}
.footer-desc { font-size: 0.86rem; line-height: 1.85; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.cgc-footer h6 { font-size: 0.88rem; font-weight: 700; color: #fff; letter-spacing: 1px; margin-bottom: 18px; }
.cgc-footer ul { list-style: none; padding: 0; margin: 0; }
.cgc-footer ul li { margin-bottom: 9px; }
.cgc-footer ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.cgc-footer ul a:hover { color: var(--cgc-accent); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; font-size: 0.85rem; }
.footer-contact-item i { color: var(--cgc-accent); font-size: 0.9rem; }

/* ─── 滚动动效 (Scroll Animations) ─────────────────────── */
[data-animate] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate="fade-left"]  { transform: translateX(-30px); }
[data-animate="fade-right"] { transform: translateX(30px); }
[data-animate="zoom"]       { transform: scale(0.94); opacity: 0; }
[data-animate].animated     { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ─── Section More Link ─────────────────────────────────── */
.more-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--cgc-primary); font-size: 0.86rem; font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--cgc-primary); padding-bottom: 1px;
  transition: gap 0.2s, color 0.2s, border-color 0.2s;
}
.more-link:hover { gap: 10px; color: var(--cgc-accent); border-bottom-color: var(--cgc-accent); }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 992px) {
  .cgc-section { padding: 64px 0; }
  .cgc-section-header { margin-bottom: 44px; }
  .cgc-hero .carousel-caption { left: 5%; right: 5%; max-width: 100%; }
  .cgc-hero .carousel-indicators { left: 30px; }
  .cgc-navbar .navbar-collapse {
    background: #fff; padding: 16px; margin-top: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .cgc-navbar .nav-link { color: #000 !important; }
  .cgc-platform-steps { flex-wrap: wrap; }
  .cgc-p-step { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .cgc-p-step:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  
  /* 新闻列表响应式 */
  .cgc-news-list-card { flex-direction: column; }
  .news-list-img { width: 100%; aspect-ratio: 16/9; }
  .news-detail-nav { flex-direction: column; }
  
  /* 工厂平台响应式 */
  .cgc-platform-grid { flex-direction: column; min-height: auto; }
  .cgc-platform-blue { flex: none; padding: 48px 24px; }
  .cgc-platform-grid-right { grid-template-columns: 1fr; }
  
  /* 工厂概念响应式 */
  .cgc-concept-wrapper { 
    flex-direction: column; 
    min-height: auto;
    margin: 0;
    width: 100%;
  }
  .cgc-concept-item { 
    border-right: none; 
    border-bottom: 1px solid #e8e8e8;
    min-height: 200px;
  }
  .cgc-concept-item:last-child { border-bottom: none; }
  /* 移动端禁用展开效果 */
  .cgc-concept-wrapper:hover .cgc-concept-item,
  .cgc-concept-wrapper .cgc-concept-item:hover {
    flex: 1;
  }
  
  /* 核心理念响应式 */
  .cgc-core-concept { padding: 60px 0; }
  .core-concept-image { margin-top: 40px; }
  .core-image-badge { top: 16px; left: 16px; padding: 10px 16px; font-size: 0.88rem; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.9rem; max-width: 100%; }
  .hero-btn { padding: 10px 20px; font-size: 0.88rem; }
  .cgc-hero .carousel-caption { left: 5%; right: 5%; max-width: 90%; }
  .cgc-hero .carousel-indicators { left: 20px; bottom: 30px; }
  .cgc-hero .carousel-indicators [data-bs-target] { width: 24px; }
  .cgc-hero .carousel-indicators .active { width: 40px; }
  .cgc-p-step { flex: 0 0 100%; border-right: none !important; }
  .cgc-stat-divider { display: none; }
  .cgc-core-concept { padding: 50px 0; }
  .core-title { font-size: 1.8rem; }
  .core-desc { font-size: 0.88rem; line-height: 1.8; }
  .core-feature-item { font-size: 0.88rem; }
  .core-btn { padding: 12px 24px; font-size: 0.88rem; }
  
  /* 移动端通用溢出控制 */
  .cgc-section { padding: 50px 0; }
  .container { padding-left: 16px; padding-right: 16px; }
  .row.g-4 { --bs-gutter-x: 16px; }
  
  /* Hero区域移动端高度调整 */
  .cgc-hero { min-height: 500px; }
}

/* ═══════════════════════════════════════════════════════════
   首页模块响应式优化
   ═══════════════════════════════════════════════════════════ */

/* ─── 平板适配 (768px - 991px) ─── */
@media (max-width: 991px) and (min-width: 768px) {
  /* 核心理念模块 */
  .cgc-core-concept {
    padding: 80px 0;
  }
  
  .core-concept-header {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .core-features {
    justify-content: center;
  }
  
  .core-btn {
    display: flex;
    justify-content: center;
  }
  
  /* 工厂分类模块 */
  .cgc-cat-card-new {
    min-height: 220px;
  }
  
  .cat-card-content {
    padding: 24px 20px;
  }
  
  .cat-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  
  .cat-card-title {
    font-size: 1.1rem;
  }
  
  .cat-card-tag {
    font-size: 0.68rem;
  }
  
  /* 精选产品模块 */
  .cgc-product-card-new {
    margin-bottom: 24px;
  }
  
  /* 合作伙伴 */
  .cgc-partner-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cgc-partner-item {
    flex: 0 0 33.333%;
    padding: 12px;
  }
  
  /* 合作伙伴 */
  .cgc-partner-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cgc-partner-item {
    flex: 0 0 33.333%;
    padding: 12px;
  }
}

/* ─── 手机适配 (小于768px) ─── */
@media (max-width: 767px) {
  /* 核心理念模块 */
  .cgc-core-concept {
    padding: 60px 0;
  }
  
  .core-concept-header {
    text-align: center;
    margin-bottom: 24px;
  }
  
  .core-label {
    font-size: 0.65rem;
    letter-spacing: 4px;
  }
  
  .core-title {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }
  
  .core-content-title {
    font-size: 1.2rem;
  }
  
  .core-desc {
    font-size: 0.9rem;
    text-align: justify;
  }
  
  .core-features {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .core-feature-item {
    width: 100%;
    justify-content: center;
  }
  
  .core-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
  }
  
  .core-concept-image {
    margin-top: 32px;
  }
  
  .core-concept-image img {
    border-radius: 12px;
  }
  
  .core-image-badge {
    top: 12px;
    left: 12px;
    padding: 8px 14px;
  }
  
  .badge-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .core-image-badge span {
    font-size: 0.8rem;
  }
  
  /* 工厂概念模块 */
  .cgc-concept-wrapper {
    border-radius: 0;
    margin: 0;
    width: 100%;
  }
  
  .cgc-concept-item {
    min-height: 180px;
    padding: 24px 20px;
  }
  
  .concept-icon-box {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .cgc-concept-item h4 {
    font-size: 1.1rem;
  }
  
  .concept-brief {
    font-size: 0.85rem;
  }
  
  /* 工厂分类模块 */
  .cgc-section {
    padding: 60px 0;
  }
  
  .cgc-section-header {
    margin-bottom: 32px;
  }
  
  .cgc-section-header .label {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }
  
  .cgc-section-header h2 {
    font-size: 1.5rem;
  }
  
  .cgc-section-header p {
    font-size: 0.9rem;
  }
  
  .cgc-cat-card-new {
    min-height: 200px;
  }
  
  .cat-card-content {
    padding: 20px 16px;
  }
  
  .cat-card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    margin-bottom: 12px;
    border-radius: 10px;
  }
  
  .cat-card-tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  
  .cat-card-title {
    font-size: 1rem;
  }
  
  .text-center.mt-5 {
    margin-top: 24px !important;
  }
  
  .cgc-btn-outline {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  /* 工厂平台模块 */
  .cgc-platform-grid {
    border-radius: 0;
    margin: 0;
    width: 100%;
  }
  
  .cgc-platform-blue {
    padding: 40px 20px;
    text-align: center;
  }
  
  .platform-label {
    font-size: 0.65rem;
  }
  
  .platform-title {
    font-size: 1.6rem;
  }
  
  .platform-desc {
    font-size: 0.9rem;
  }
  
  .platform-more-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .cgc-platform-grid-right {
    padding: 20px;
    gap: 16px;
  }
  
  .platform-grid-item {
    padding: 20px;
  }
  
  .platform-item-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .platform-grid-item h4 {
    font-size: 1rem;
  }
  
  .platform-grid-item p {
    font-size: 0.85rem;
  }
  
  /* 精选产品模块 */
  .cgc-product-card-new {
    margin-bottom: 20px;
  }
  
  .product-card-img {
    aspect-ratio: 4/3;
  }
  
  .product-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
  
  .product-card-body {
    padding: 16px;
  }
  
  .product-card-cat {
    font-size: 0.7rem;
  }
  
  .product-card-name {
    font-size: 0.95rem;
    -webkit-line-clamp: 2;
  }
  
  .product-card-price {
    margin: 8px 0;
  }
  
  .price-current {
    font-size: 1.2rem;
  }
  
  .price-original {
    font-size: 0.8rem;
  }
  
  .product-card-btn {
    padding: 10px;
    font-size: 0.85rem;
  }
  
  /* 合作伙伴 */
  .cgc-partner-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .cgc-partner-item {
    flex: 0 0 45%;
    padding: 10px 8px;
    font-size: 0.75rem;
  }
  
  /* CTA行动召唤 */
  .cgc-section-dark {
    padding: 60px 0;
  }
  
  .cgc-section-dark h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .cgc-section-dark p {
    font-size: 0.9rem;
    padding: 0 10px;
    margin-bottom: 24px;
  }
  
  .d-flex.justify-content-center.flex-wrap {
    flex-direction: column;
    gap: 12px;
  }
  
  .cgc-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    justify-content: center;
  }
  
  .cgc-btn-outline-white {
    padding: 10px 20px;
  }
}

/* ─── 小屏手机 (小于480px) ─── */
@media (max-width: 480px) {
  /* 核心理念模块 */
  .core-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
  }
  
  .core-title {
    font-size: 1.6rem;
  }
  
  .core-subtitle {
    font-size: 0.9rem;
  }
  
  .core-divider {
    width: 40px;
    height: 2px;
    margin: 0 auto 12px;
  }
  
  .core-features {
    gap: 10px;
  }
  
  .core-feature-item {
    font-size: 0.85rem;
  }
  
  .feature-icon {
    font-size: 1rem;
  }
  
  /* 工厂分类 */
  .row.g-4 {
    --bs-gutter-y: 16px;
    --bs-gutter-x: 12px;
  }
  
  .cgc-cat-card-new {
    min-height: 180px;
    border-radius: 10px;
  }
  
  .cat-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  /* 精选产品 */
  .cgc-product-card-new {
    border-radius: 12px;
  }
  
  .product-card-img {
    aspect-ratio: 1/1;
  }
  
  /* 合作伙伴 */
  .cgc-partner-item {
    flex: 0 0 50%;
    font-size: 0.7rem;
    padding: 8px 6px;
  }
  
  /* 容器调整 */
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════
   功能特色页面样式 (Features Page)
   ═══════════════════════════════════════════════════════════ */

/* ─── 功能特色页头部 ─────────────────────────────────── */
.cgc-features-hero {
  padding: 140px 0 80px;
  background: #528D67;
  overflow: hidden;
  color: #fff;
}

.features-hero-content {
  margin-bottom: 24px;
}

.features-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.features-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.features-divider {
  width: 60px;
  height: 4px;
  background: #fff;
  margin: 0 auto 16px;
  border-radius: 2px;
}

.features-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.features-hero-desc p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.features-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cgc-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.features-divider {
  width: 60px;
  height: 3px;
  background: #528D67;
  margin-bottom: 16px;
}

.features-subtitle {
  font-size: 1.1rem;
  color: var(--cgc-text-muted);
  font-weight: 500;
}

.features-hero-desc {
  margin-bottom: 32px;
}

.features-hero-desc p {
  color: var(--cgc-text-muted);
  line-height: 1.85;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.features-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #528D67;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--cgc-text-muted);
  font-weight: 500;
}

.features-hero-image {
  position: relative;
}

.features-hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.features-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.badge-icon {
  width: 44px;
  height: 44px;
  background: #528D67;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.features-image-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cgc-text);
}

/* ─── 核心特色卡片 ─────────────────────────────────── */
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--cgc-border);
  transition: all 0.3s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: #528D67;
}

.feature-icon-box {
  width: 72px;
  height: 72px;
  background: #528D67;
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cgc-text);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--cgc-text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

/* ─── 产品品类卡片 ─────────────────────────────────── */
.category-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--cgc-border);
  transition: all 0.3s;
}

.category-card:hover {
  transform: translateX(8px);
  border-color: #528D67;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.category-icon {
  width: 56px;
  height: 56px;
  background: #528D67;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.category-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cgc-text);
  margin-bottom: 4px;
}

.category-info p {
  font-size: 0.85rem;
  color: var(--cgc-text-muted);
  margin: 0;
}

/* ─── 成就数据卡片 ─────────────────────────────────── */
.cgc-section-green {
  background: var(--cgc-green-pale);
}

.achievement-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--cgc-border);
  transition: all 0.3s;
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(82, 141, 103, 0.15);
  border-color: #528D67;
}

.achievement-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #528D67;
  line-height: 1;
  margin-bottom: 8px;
}

.achievement-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cgc-text);
  margin-bottom: 8px;
}

.achievement-desc {
  font-size: 0.85rem;
  color: var(--cgc-text-muted);
}

/* ─── 响应式调整 ─────────────────────────────────── */
@media (max-width: 991px) {
  .cgc-features-hero {
    padding: 120px 0 60px;
  }
  
  .features-hero-image {
    margin-top: 40px;
  }
  
  .features-hero-stats {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .cgc-features-hero {
    padding: 100px 0 40px;
  }
  
  .features-hero-stats {
    justify-content: center;
  }
  
  .stat-item {
    flex: 1;
    min-width: 100px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .feature-card {
    padding: 28px 20px;
  }
  
  .category-card {
    padding: 20px;
  }
  
  .category-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  
  .achievement-number {
    font-size: 2.2rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   微小店页面样式 (Shop Page)
   ═══════════════════════════════════════════════════════════ */

.cgc-shop-hero {
  padding: 120px 0 60px;
  background: #528D67;
  text-align: center;
  color: #fff;
}

.shop-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.shop-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.shop-divider {
  width: 60px;
  height: 4px;
  background: #fff;
  margin: 0 auto 16px;
  border-radius: 2px;
}

.shop-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.shop-search-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.shop-search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--cgc-border);
  border-radius: 50px;
  padding: 8px 8px 8px 24px;
  transition: border-color 0.3s;
}

.shop-search-box:focus-within {
  border-color: #528D67;
}

.shop-search-box i {
  color: var(--cgc-text-muted);
  margin-right: 12px;
  font-size: 1.1rem;
}

.shop-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  background: transparent;
}

.shop-search-btn {
  background: #528D67;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.shop-search-btn:hover {
  background: var(--cgc-primary-dark);
}

.cgc-shop-categories {
  padding: 60px 0;
  background: #fff;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.shop-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: var(--cgc-primary-light);
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #f7f7f7;
}

.shop-cat-item:hover {
  transform: translateY(-4px);
  background: #528D67;
  color: #fff;
}

.shop-cat-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  color: #528D67;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.shop-cat-item:hover .shop-cat-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.shop-cat-item span {
  font-size: 0.9rem;
  font-weight: 600;
}

.cgc-shop-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cgc-border);
  transition: all 0.3s;
  height: 100%;
}

.cgc-shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: #528D67;
}

.shop-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.cgc-shop-card:hover .shop-card-img img {
  transform: scale(1.05);
}

.shop-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #528D67;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.shop-badge-new {
  background: #ff9800;
}

.shop-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.cgc-shop-card:hover .shop-card-overlay {
  opacity: 1;
}

.shop-view-btn {
  background: #fff;
  color: var(--cgc-primary);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.shop-view-btn:hover {
  background: #528D67;
  color: #fff;
}

.shop-card-body {
  padding: 20px;
}

.shop-card-cat {
  font-size: 0.75rem;
  color: var(--cgc-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 600;
}

.shop-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cgc-text);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card-price {
  margin-bottom: 16px;
}

.shop-price-current {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ff4d4f;
  margin-right: 8px;
}

.shop-price-original {
  font-size: 0.9rem;
  color: var(--cgc-text-muted);
  text-decoration: line-through;
}

.shop-card-actions {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

/* 商品卡片邮费标签 */
.shop-card-shipping {
  margin-bottom: 12px;
}

.shipping-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--cgc-green-light);
  color: var(--cgc-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.shop-view-detail-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #528D67;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  box-shadow: 0 2px 8px rgba(82, 141, 103, 0.25);
}

.shop-view-detail-btn:hover {
  background: #4a7d5c;
  box-shadow: 0 4px 12px rgba(82, 141, 103, 0.4);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.shop-view-detail-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(82, 141, 103, 0.3);
}

.shop-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: auto;
  min-height: 42px;
  background: #fff;
  color: #528D67;
  border: 2px solid #528D67;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(82, 141, 103, 0.15);
}

.shop-add-cart:hover {
  background: #528D67;
  color: #fff;
  box-shadow: 0 4px 12px rgba(82, 141, 103, 0.3);
  transform: translateY(-2px);
}

.shop-add-cart:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(82, 141, 103, 0.25);
}

.shop-add-cart-sm {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  flex: none;
}

.shop-view-detail-btn-sm {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-width: 1.5px;
}

.cgc-shop-card-sm .shop-card-img {
  aspect-ratio: 1/1;
}

.cgc-shop-card-sm .shop-card-body {
  position: relative;
  padding-bottom: 50px;
}

.cgc-shop-card-sm .shop-card-actions {
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.shop-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
}

.shop-filter-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.shop-filter-label {
  font-size: 0.9rem;
  color: var(--cgc-text-muted);
  margin-right: 8px;
}

.shop-filter-btn {
  background: transparent;
  border: 1px solid var(--cgc-border);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--cgc-text);
  cursor: pointer;
  transition: all 0.3s;
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
  background: #528D67;
  color: #fff;
  border-color: #528D67;
}

.shop-filter-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-sort-label {
  font-size: 0.9rem;
  color: var(--cgc-text-muted);
}

.shop-sort-select {
  border: 1px solid var(--cgc-border);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--cgc-text);
  background: #fff;
  cursor: pointer;
}

.shop-pagination {
  margin-top: 48px;
}

.pagination {
  gap: 8px;
}

.page-link {
  color: var(--cgc-text);
  border: 1px solid var(--cgc-border);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s;
}

.page-link:hover {
  background: #528D67;
  color: #fff;
  border-color: #528D67;
}

.pagination .page-item.active .page-link {
  background: #528D67;
  color: #fff;
  border-color: #528D67;
}

.pagination .page-item.disabled .page-link {
  color: var(--cgc-text-muted);
  pointer-events: none;
}

.cgc-shop-breadcrumb {
  padding: 100px 0 20px;
  background: #528D67;
  color: #fff;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
  color: #dbdbdb;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-item a:hover {
  color: #528D67;
}

.breadcrumb-item.active {
  color: #ffffff;
  font-weight: bold;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--cgc-text-muted);
}

.cgc-shop-detail {
  padding: 60px 0;
  background: #fff;
}

.shop-detail-gallery {
  position: sticky;
  top: 100px;
}

.shop-gallery-main {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--cgc-bg);
}

.shop-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #528D67;
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.shop-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.shop-thumb {
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s;
  background: var(--cgc-bg);
}

.shop-thumb.active {
  border-color: #528D67;
}

.shop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-detail-info {
  padding-left: 20px;
}

.shop-detail-cat {
  font-size: 0.8rem;
  color: var(--cgc-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  font-weight: 600;
}

.shop-detail-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--cgc-text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.shop-detail-desc {
  padding: 16px;
  background: var(--cgc-green-pale);
  border-radius: 8px;
  margin-bottom: 24px;
}

.shop-detail-desc p {
  margin: 0;
  color: var(--cgc-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.shop-detail-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #fff5f5;
  border: 1px solid #ffcccc;
  border-radius: 12px;
  margin-bottom: 24px;
}

.shop-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.shop-price-label {
  font-size: 0.9rem;
  color: var(--cgc-text-muted);
}

.shop-detail-sales {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--cgc-text-muted);
}

.shop-sales-icon {
  color: #ff9800;
}

/* 邮费信息 */
.shop-detail-shipping {
  padding: 16px;
  background: #f8faf9;
  border: 1px solid var(--cgc-border);
  border-radius: 12px;
  margin-bottom: 24px;
}

.shipping-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.shipping-info-item:not(:last-child) {
  border-bottom: 1px solid var(--cgc-border);
}

.shipping-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--cgc-text-muted);
}

.shipping-label i {
  font-size: 1.1rem;
  color: var(--cgc-primary);
}

.shipping-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cgc-text);
}

.shipping-value.shipping-free {
  color: var(--cgc-primary);
  background: var(--cgc-green-light);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
}

.shop-detail-spec {
  margin-bottom: 24px;
}

.shop-spec-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cgc-text);
  margin-bottom: 12px;
}

.shop-spec-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-spec-btn {
  padding: 10px 24px;
  border: 2px solid var(--cgc-border);
  border-radius: 8px;
  background: #fff;
  font-size: 0.9rem;
  color: var(--cgc-text);
  cursor: pointer;
  transition: all 0.3s;
}

.shop-spec-btn:hover:not(.disabled) {
  border-color: #528D67;
}

.shop-spec-btn.active {
  border-color: #528D67;
  background: #528D67;
  color: #fff;
}

.shop-spec-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.shop-detail-number {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.shop-number-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cgc-text);
}

.shop-number-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--cgc-border);
  border-radius: 8px;
  overflow: hidden;
}

.shop-number-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--cgc-bg);
  color: var(--cgc-text);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.shop-number-btn:hover {
  background: var(--cgc-border);
}

.shop-number-input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cgc-text);
}

.shop-number-input:focus {
  outline: none;
}

.shop-number-tip {
  font-size: 0.85rem;
  color: var(--cgc-accent);
}

.shop-detail-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.shop-buy-now {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ff4d4f;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.shop-buy-now:hover {
  background: #e60000;
}

.shop-add-cart-detail {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #528D67;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.shop-add-cart-detail:hover {
  background: var(--cgc-primary-dark);
}

.shop-collect {
  width: 52px;
  height: 52px;
  border: 2px solid var(--cgc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--cgc-text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.shop-collect:hover {
  border-color: #ff4d4f;
  color: #ff4d4f;
}

.shop-detail-promises {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--cgc-border);
}

.shop-promise-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--cgc-text-muted);
}

.shop-promise-item i {
  color: #528D67;
  font-size: 1.35rem;
}

.cgc-shop-tabs {
  padding: 60px 0;
  background: var(--cgc-bg);
}

.shop-tabs-header {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.shop-tab-btn {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cgc-text-muted);
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.shop-tab-btn:hover {
  color: var(--cgc-text);
}

.shop-tab-btn.active {
  color: #528D67;
  border-bottom-color: #528D67;
}

.shop-tabs-content {
  background: #fff;
  border-radius: 0 0 12px 12px;
  padding: 40px;
}

.shop-tab-panel {
  display: none;
}

.shop-tab-panel.active {
  display: block;
}

.shop-detail-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cgc-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cgc-border);
}

.shop-detail-content p {
  color: var(--cgc-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.shop-detail-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.shop-detail-content li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--cgc-text-muted);
}

.shop-detail-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #528D67;
  font-weight: bold;
}

.shop-detail-images {
  margin-top: 32px;
}

.shop-detail-images img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.shop-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.shop-spec-table tr {
  border-bottom: 1px solid var(--cgc-border);
}

.shop-spec-table tr:last-child {
  border-bottom: none;
}

.shop-spec-table th {
  width: 140px;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: var(--cgc-text);
  background: var(--cgc-bg);
}

.shop-spec-table td {
  padding: 16px;
  color: var(--cgc-text-muted);
}

.shop-reviews-summary {
  display: flex;
  gap: 40px;
  padding: 24px;
  background: var(--cgc-green-pale);
  border-radius: 12px;
  margin-bottom: 32px;
}

.shop-reviews-score {
  text-align: center;
  padding-right: 40px;
  border-right: 1px solid var(--cgc-border);
}

.score-number {
  font-size: 3rem;
  font-weight: 800;
  color: #ff9800;
  line-height: 1;
}

.score-label {
  font-size: 0.85rem;
  color: var(--cgc-text-muted);
  margin-top: 8px;
}

.shop-reviews-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.review-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  width: 70px;
  font-size: 0.85rem;
  color: var(--cgc-text-muted);
}

.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #ff9800;
  border-radius: 4px;
}

.bar-score {
  width: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff9800;
}

.shop-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.shop-review-item {
  padding: 24px;
  background: var(--cgc-bg);
  border-radius: 12px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: #528D67;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.review-user-info {
  flex: 1;
}

.review-username {
  font-weight: 600;
  color: var(--cgc-text);
}

.review-date {
  font-size: 0.8rem;
  color: var(--cgc-text-muted);
}

.review-content p {
  margin: 0 0 8px;
  color: var(--cgc-text);
  line-height: 1.6;
}

.review-rating {
  color: #ff9800;
  margin-bottom: 8px;
}

.review-spec {
  font-size: 0.8rem;
  color: var(--cgc-text-muted);
}

@media (max-width: 991px) {
  .cgc-shop-hero {
    padding: 100px 0 40px;
  }
  
  .shop-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .shop-detail-gallery {
    position: static;
    margin-bottom: 40px;
  }
  
  .shop-detail-info {
    padding-left: 0;
  }
  
  .shop-filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .shop-detail-promises {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .shop-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .shop-cat-item {
    padding: 16px 12px;
  }
  
  .shop-cat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  
  .shop-cat-item span {
    font-size: 0.8rem;
  }
  
  .shop-tabs-header {
    flex-direction: column;
  }
  
  .shop-tab-btn {
    border-bottom: 1px solid var(--cgc-border);
  }
  
  .shop-tab-btn.active {
    border-bottom-color: var(--cgc-border);
    background: var(--cgc-green-light);
  }
  
  .shop-tabs-content {
    padding: 24px 16px;
  }
  
  .shop-reviews-summary {
    flex-direction: column;
    gap: 24px;
  }
  
  .shop-reviews-score {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: none;
    border-bottom: 1px solid var(--cgc-border);
  }
  
  .shop-detail-actions {
    flex-wrap: wrap;
  }
  
  .shop-buy-now,
  .shop-add-cart-detail {
    flex: 1 1 100%;
  }
  
  .shop-collect {
    flex: none;
  }
}

@media (max-width: 576px) {
  .shop-filter-left {
    width: 100%;
  }
  
  .shop-filter-btn {
    padding: 4px 12px;
    font-size: 0.8rem;
  }
  
  .shop-spec-options {
    gap: 8px;
  }
  
  .shop-spec-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .shop-detail-number {
    flex-wrap: wrap;
  }
}

/* ============================================================
   关于我们页面样式
   ============================================================ */

/* 页头 Hero (小) */
.cgc-hero-sm {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.cgc-hero-sm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.8);
  z-index: 0;
}

.hero-sm-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 120px 0 60px;
}

.hero-sm-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-sm-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-sm-subtitle {
  font-size: 1.1rem;
  margin-bottom: 24px;
  opacity: 0.95;
}

.hero-sm-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-sm-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.hero-sm-breadcrumb a:hover {
  text-decoration: underline;
}

.hero-sm-breadcrumb i {
  font-size: 0.75rem;
}

/* 品牌故事图片 */
.about-image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px var(--cgc-shadow);
}

.about-image-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(82, 141, 103, 0.95);
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  text-align: center;
}

.badge-year {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  margin-top: 4px;
  opacity: 0.9;
}

/* 品牌故事内容 */
.about-content-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--cgc-primary);
}

.about-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cgc-text-muted);
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--cgc-border);
}

.about-feature-item {
  text-align: center;
}

.feature-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cgc-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--cgc-text-muted);
}

/* 核心理念卡片 */
.about-philosophy-card {
  background: var(--cgc-surface);
  padding: 40px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px var(--cgc-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.about-philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px var(--cgc-shadow);
}

.philosophy-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--cgc-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--cgc-primary);
}

.about-philosophy-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--cgc-text);
}

.about-philosophy-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cgc-text-muted);
  margin: 0;
}

/* 发展历程时间轴 */
.about-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cgc-border);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--cgc-primary);
  border: 4px solid var(--cgc-surface);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--cgc-green-pale);
  z-index: 1;
}

.timeline-content {
  width: calc(50% - 40px);
  background: var(--cgc-surface);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--cgc-shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  margin-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: calc(50% + 40px);
}

.timeline-year {
  display: inline-block;
  background: var(--cgc-primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--cgc-text);
}

.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cgc-text-muted);
  margin: 0;
}

/* 团队卡片 */
.about-team-card {
  background: var(--cgc-surface);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px var(--cgc-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.about-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px var(--cgc-shadow);
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--cgc-green-pale);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--cgc-text);
}

.team-position {
  font-size: 0.9rem;
  color: var(--cgc-primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--cgc-text-muted);
  margin: 0;
}

/* 数据卡片 */
.about-stat-card {
  background: var(--cgc-surface);
  padding: 40px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px var(--cgc-shadow);
  transition: transform 0.3s;
  height: 100%;
}

.about-stat-card:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--cgc-primary);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 1rem;
  color: var(--cgc-text-muted);
}

/* CTA */
.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

/* 响应式 */
@media (max-width: 991px) {
  /* 确保遮罩覆盖全屏 */
  .cgc-hero-sm {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 350px;
  }
  
  .cgc-hero-sm::before {
    width: 100%;
    height: 100%;
  }
  
  .hero-sm-title {
    font-size: 2.5rem;
  }
  
  .about-timeline::before {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
  }
  
  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
    margin-right: 0;
  }
  
  .about-features {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  /* 确保遮罩覆盖全屏 */
  .cgc-hero-sm {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 300px;
  }
  
  .cgc-hero-sm::before {
    width: 100%;
    height: 100%;
  }
  
  .hero-sm-title {
    font-size: 2rem;
  }
  
  .hero-sm-subtitle {
    font-size: 1rem;
  }
  
  .about-image-box img {
    height: 250px;
  }
  
  .about-image-badge {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
  }
  
  .badge-year {
    font-size: 1.5rem;
  }
  
  .badge-text {
    font-size: 0.75rem;
  }
  
  .about-content-title {
    font-size: 1.3rem;
  }
  
  .about-desc {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .about-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .about-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  
  .feature-number {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  
  .feature-text {
    font-size: 0.9rem;
  }
  
  /* 核心理念卡片 */
  .about-philosophy-card {
    padding: 32px 20px;
  }
  
  .philosophy-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  
  .about-philosophy-card h4 {
    font-size: 1.1rem;
  }
  
  .about-philosophy-card p {
    font-size: 0.9rem;
  }
  
  /* 团队卡片 */
  .about-team-card {
    padding: 24px 16px;
  }
  
  .team-avatar {
    width: 100px;
    height: 100px;
  }
  
  .about-team-card h4 {
    font-size: 1.1rem;
  }
  
  .team-position {
    font-size: 0.85rem;
  }
  
  .team-desc {
    font-size: 0.85rem;
  }
  
  /* 数据卡片 */
  .about-stat-card {
    padding: 32px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.95rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-desc {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-sm-content {
    padding: 100px 0 40px;
  }
  
  .hero-sm-title {
    font-size: 1.75rem;
  }
  
  .about-image-badge {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
  }
  
  .badge-year {
    font-size: 1.5rem;
  }
  
  .philosophy-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  
  .team-avatar {
    width: 100px;
    height: 100px;
  }
}

/* ─── 页面二维码模块 ────────────────────────────────────── */
.cgc-page-qrcode {
  padding: 40px 0;
  text-align: center;
}
.qrcode-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  border: 2px solid var(--cgc-border);
  border-radius: 50px;
  color: var(--cgc-text);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.qrcode-toggle-btn:hover {
  border-color: var(--cgc-accent);
  color: var(--cgc-accent);
  box-shadow: 0 4px 12px rgba(81, 193, 192, 0.15);
  transform: translateY(-2px);
}
.qrcode-toggle-btn i:first-child {
  font-size: 1.3rem;
  color: var(--cgc-accent);
}
.qrcode-toggle-btn .toggle-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.qrcode-content {
  max-width: 400px;
  margin: 30px auto 0;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.qrcode-header {
  margin-bottom: 20px;
}
.qrcode-header i {
  font-size: 2.2rem;
  color: var(--cgc-accent);
  margin-bottom: 10px;
  display: block;
}
.qrcode-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cgc-text);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.qrcode-header p {
  font-size: 0.85rem;
  color: var(--cgc-text-muted);
  margin: 0;
}
.qrcode-container {
  display: inline-block;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--cgc-border);
}
.qrcode-container img {
  display: block;
  border-radius: 4px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .cgc-page-qrcode {
    padding: 30px 0;
  }
  .qrcode-toggle-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
  .qrcode-content {
    margin-top: 24px;
  }
  .qrcode-header h3 {
    font-size: 1.3rem;
  }
  .qrcode-container {
    padding: 8px;
  }
  .qrcode-container img {
    width: 160px !important;
    height: 160px !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   合作加盟与联系我们页面样式
   ═══════════════════════════════════════════════════════════ */

/* ─── 乡村拓展卡片 ────────────────────────────────────────── */
.expansion-card {
  background: var(--cgc-surface);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--cgc-shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.expansion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px var(--cgc-shadow);
}

.expansion-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--cgc-green-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

.expansion-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cgc-primary-dark);
  margin-bottom: 12px;
}

.expansion-card p {
  font-size: 0.9rem;
  color: var(--cgc-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── 合作加盟页面 ───────────────────────────────────────── */
.coop-mode-card {
  background: var(--cgc-surface);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--cgc-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  text-align: center;
}

.coop-mode-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px var(--cgc-shadow);
}

.coop-mode-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--cgc-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--cgc-primary);
}

.coop-mode-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--cgc-text);
}

.coop-mode-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cgc-text-muted);
  margin-bottom: 24px;
}

.coop-mode-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.coop-mode-list li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--cgc-text);
  border-bottom: 1px solid var(--cgc-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.coop-mode-list li:last-child {
  border-bottom: none;
}

.coop-mode-list li i {
  color: var(--cgc-primary);
  font-size: 1rem;
}

/* 合作流程 */
.coop-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  flex: 0 0 180px;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--cgc-green-pale);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--cgc-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--cgc-text);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--cgc-text-muted);
  margin: 0;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--cgc-primary);
}

/* 合作申请 */
.coop-apply-info {
  padding: 30px;
  background: var(--cgc-surface);
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--cgc-shadow);
}

.coop-apply-info .info-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cgc-text-muted);
  margin-bottom: 32px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--cgc-primary);
  flex-shrink: 0;
}

.info-item h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--cgc-text);
}

.info-item p {
  font-size: 0.9rem;
  color: var(--cgc-text-muted);
  margin: 0;
}

/* 表单样式 */
.coop-apply-form,
.contact-message-form {
  padding: 40px;
  background: var(--cgc-surface);
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--cgc-shadow);
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cgc-text);
  margin-bottom: 8px;
}

.form-label .required {
  color: #e74c3c;
  margin-left: 4px;
}

.form-control {
  padding: 12px 16px;
  border: 1px solid var(--cgc-border);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--cgc-primary);
}

.btn-submit {
  width: 100%;
  padding: 14px 32px;
  background: var(--cgc-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--cgc-primary-dark);
}

/* FAQ */
.faq-item {
  padding: 24px;
  background: var(--cgc-surface);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--cgc-shadow);
  height: 100%;
}

.faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--cgc-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h4 i {
  color: var(--cgc-primary);
}

.faq-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--cgc-text-muted);
  margin: 0;
}

/* ─── 联系我们页面 ───────────────────────────────────────── */
.contact-info-card {
  background: var(--cgc-surface);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--cgc-shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px var(--cgc-shadow);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--cgc-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--cgc-primary);
}

.contact-info-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--cgc-text);
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cgc-primary);
  margin-bottom: 8px;
}

.contact-time {
  font-size: 0.85rem;
  color: var(--cgc-text-muted);
  margin: 0;
}

/* 详细信息卡片 */
.contact-detail-card {
  background: var(--cgc-surface);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--cgc-shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.contact-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px var(--cgc-shadow);
}

.contact-detail-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--cgc-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--cgc-primary);
}

.contact-detail-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--cgc-text);
}

.contact-detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cgc-primary);
  margin-bottom: 8px;
}

.contact-detail-desc {
  font-size: 0.85rem;
  color: var(--cgc-text-muted);
  margin: 0;
}

/* 留言说明 */
.contact-message-info {
  padding: 30px;
  background: var(--cgc-surface);
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--cgc-shadow);
}

.contact-message-info .message-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cgc-text-muted);
  margin-bottom: 32px;
}

.message-tips {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tip-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tip-item i {
  font-size: 1.5rem;
  color: var(--cgc-primary);
  flex-shrink: 0;
}

.tip-item h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--cgc-text);
}

.tip-item p {
  font-size: 0.9rem;
  color: var(--cgc-text-muted);
  margin: 0;
}

/* 地图 */
.contact-map {
  margin-top: 40px;
}

.map-placeholder {
  background: var(--cgc-surface);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 4px 12px var(--cgc-shadow);
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--cgc-primary);
  margin-bottom: 20px;
}

.map-placeholder h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--cgc-text);
}

.map-placeholder p {
  font-size: 0.95rem;
  color: var(--cgc-text-muted);
  margin-bottom: 24px;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--cgc-primary);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-map:hover {
  background: var(--cgc-primary-dark);
  color: #fff;
}

/* 工作时间 */
.work-time-card {
  background: var(--cgc-surface);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px var(--cgc-shadow);
}

.time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--cgc-border);
}

.time-row:last-child {
  border-bottom: none;
}

.time-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cgc-text);
}

.time-label i {
  font-size: 1.3rem;
  color: var(--cgc-primary);
}

.time-value {
  font-size: 0.95rem;
  color: var(--cgc-text-muted);
}

/* 响应式 */
@media (max-width: 991px) {
  .coop-process {
    flex-direction: column;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .process-step {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  .coop-mode-card,
  .coop-apply-form,
  .contact-message-form {
    padding: 24px 20px;
  }
  
  .contact-info-card {
    padding: 24px 20px;
  }
  
  .work-time-card {
    padding: 24px 20px;
  }
  
  .time-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════
   移动端溢出修复 · Mobile Overflow Fix
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* 确保所有section不会溢出 */
  .cgc-section,
  .cgc-section-sm {
    overflow: hidden;
  }
  
  /* 修复flex布局可能的溢出 */
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  /* 确保图片不会溢出 */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* 修复按钮组溢出 */
  .d-flex.flex-wrap {
    flex-wrap: wrap !important;
  }
  
  /* 确保carousel caption在小屏幕上正常显示 */
  .cgc-hero .carousel-caption {
    padding: 0;
  }
  
  /* 修复platform-grid在移动端的布局 */
  .cgc-platform-grid {
    display: flex;
    flex-direction: column;
  }
  
  .cgc-platform-blue {
    flex: none;
  }
  
  .cgc-platform-grid-right {
    grid-template-columns: 1fr;
  }
}
