/**
 * ========================================
 * ECherry Inc 公司简介页面 - CSS样式
 * ========================================
 * 
 * 使用说明：
 * 1. 复制下面的全部CSS代码（从这一行开始到文件末尾）
 * 2. 在WordPress后台 → 外观 → 自定义 → 额外CSS
 * 3. 粘贴CSS代码并保存
 * 
 * ========================================
 */

/* ========== 全局设置 ========== */
.echerry-company-profile {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.echerry-company-profile * {
  box-sizing: border-box;
}

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

/* ========== 动画效果 ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  background-color: #2d5d3f;
  padding: 6rem 1rem;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.hero-blur-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-blur-right {
  background-color: #4ade80;
  top: 0;
  right: 0;
}

.hero-blur-left {
  background-color: #22c55e;
  bottom: 0;
  left: 0;
}

.hero-container {
  position: relative;
  z-index: 10;
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.icon-building {
  width: 16px;
  height: 16px;
  stroke: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title-highlight {
  color: #86efac;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

/* ========== Company Introduction Section ========== */
.intro-section {
  padding: 5rem 1rem;
  background-color: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f0fdf4;
  border: 2px solid #86efac;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.intro-badge span {
  color: #2d5d3f;
  font-size: 0.875rem;
  font-weight: 700;
}

.intro-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.intro-image-wrapper {
  position: relative;
}

.intro-image-container {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: white;
  border: 2px solid #86efac;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.floating-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #2d5d3f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card-icon svg {
  stroke: white;
}

.floating-card-year {
  font-size: 1.875rem;
  font-weight: 900;
  color: #2d5d3f;
}

.floating-card-label {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 600;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
  
  .intro-title {
    font-size: 2rem;
  }
  
  .intro-floating-card {
    bottom: 1rem;
    left: 1rem;
  }
}

/* ========== Advantages Section ========== */
.advantages-section {
  padding: 5rem 1rem;
  background-color: #f9fafb;
}

.advantages-header {
  text-align: center;
  margin-bottom: 4rem;
}

.advantages-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2d5d3f;
  margin-bottom: 1rem;
}

.advantages-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.icon-award {
  width: 20px;
  height: 20px;
}

.advantages-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 1rem;
}

.advantages-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.advantage-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-8px);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #2d5d3f 0%, #22c55e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.advantage-icon svg {
  stroke: white;
}

.advantage-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.advantage-description {
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-title {
    font-size: 2.25rem;
  }
}

/* ========== Stats Section ========== */
.stats-section {
  padding: 5rem 1rem;
  background-color: white;
}

.stats-container {
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  background: linear-gradient(90deg, #1e5a3c 0%, #5ebd7a 100%);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.stat-year {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .stat-year {
    font-size: 3rem;
  }
}

/* ========== Contact Section ========== */
.contact-section {
  padding: 5rem 1rem;
  background-color: #f9fafb;
}

.contact-container {
  max-width: 900px;
}

.contact-content {
  text-align: center;
}

.contact-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #2d5d3f;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: white;
  color: #2d5d3f;
  border: 2px solid #2d5d3f;
}

.btn-secondary:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: #4b5563;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  color: #2d5d3f;
}

.contact-info-item span {
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }
.btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 18px 28px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
}
/**
 * ECherry Inc 产品展示页面 - CSS样式
 * 使用说明：
 * 1. 复制下面的全部CSS代码
 * 2. 在WordPress后台 → 外观 → 自定义 → 额外CSS
 * 3. 粘贴CSS代码并保存
 */

/* ========== Products Page Global Settings ========== */
.echerry-products-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.echerry-products-page * {
  box-sizing: border-box;
}

/* ========== Hero Section ========== */
.products-hero-section {
  position: relative;
  background-color: #2d5d3f;
  padding: 5rem 1rem;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.products-hero-section .hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.products-hero-section .hero-blur-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
}

.products-hero-section .hero-blur-right {
  background-color: #4ade80;
  top: 0;
  right: 0;
}

.products-hero-section .hero-blur-left {
  background-color: #22c55e;
  bottom: 0;
  left: 0;
}

.products-hero-section .hero-container {
  position: relative;
  z-index: 10;
}

.products-hero-section .hero-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.products-hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.products-hero-section .icon-package {
  width: 16px;
  height: 16px;
  stroke: white;
}

.products-hero-section .hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.products-hero-section .hero-title-highlight {
  color: #86efac;
}

.products-hero-section .hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .products-hero-section {
    padding: 3rem 1rem;
  }
  
  .products-hero-section .hero-title {
    font-size: 2.5rem;
  }
  
  .products-hero-section .hero-subtitle {
    font-size: 1.125rem;
  }
}

/* ========== Product Section ========== */
.product-section {
  padding: 5rem 1rem;
  background-color: white;
}

.product-section-alt {
  background-color: #f9fafb;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.product-grid-reverse {
  direction: rtl;
}

.product-grid-reverse > * {
  direction: ltr;
}

@media (max-width: 968px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-grid-reverse {
    direction: ltr;
  }
}

/* Product Image */
.product-image-wrapper {
  position: relative;
}

.product-image-container {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: #f9fafb;
  padding: 2rem;
}

.product-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Product Details */
.product-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f0fdf4;
  border: 2px solid #86efac;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.product-badge span {
  color: #2d5d3f;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product-description {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Features */
.product-features {
  margin-bottom: 2rem;
}

.features-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d5d3f;
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #4b5563;
}

.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #86efac;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-icon svg {
  width: 12px;
  height: 12px;
  stroke: #2d5d3f;
  stroke-width: 3;
}

/* Specifications */
.product-specs {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.product-section-alt .product-specs {
  background-color: white;
}

.specs-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d5d3f;
  margin-bottom: 1rem;
}

.specs-list {
  margin: 0;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.spec-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.spec-item dt {
  font-weight: 600;
  color: #1f2937;
}

.spec-item dd {
  color: #4b5563;
  text-align: right;
  margin: 0;
}

/* Product CTA */
.product-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #2d5d3f;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .product-title {
    font-size: 2rem;
  }
  
  .product-description {
    font-size: 1.125rem;
  }
}

/* ========== Why Choose Section ========== */
.why-choose-section {
  padding: 5rem 1rem;
  background-color: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.advantage-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-8px);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #2d5d3f 0%, #22c55e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.advantage-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.advantage-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.advantage-description {
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}

/* ========== Products CTA Section ========== */
.products-cta-section {
  padding: 5rem 1rem;
  background-color: white;
}

.cta-card {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #2d5d3f 0%, #22c55e 100%);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-cta-primary {
  background-color: white;
  color: #2d5d3f;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1.125rem;
  }
  
  .cta-card {
    padding: 3rem 1.5rem;
  }
}

/* ========== 动画效果 ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}


