
  .custom-hero-slider-wrapper {
    --brand: #256643;
    --brand-deep: #1b4c32;
    --bg-main: #FAF8F5;
    --accent: #EAA484;
    --subtitle: #e2ede8;
    
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background-color: var(--brand);
    /* 融入 Jardin & Brique 专属字体系统 */
    font-family: 'Karla', -apple-system, sans-serif;
  }

  .custom-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .custom-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding-left: 8%;
    box-sizing: border-box;
  }

  .custom-slide.active {
    opacity: 1;
    visibility: visible;
  }

  .custom-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
  }
  
  /* 为大屏 PC 端也增加一层优雅的暗色植物渐变，提高文字可读性 */
  .custom-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(27, 76, 50, 0.75) 0%, rgba(27, 76, 50, 0.2) 100%);
    z-index: 1;
  }

  .custom-hero-inner { 
    position: relative;
    z-index: 2;
    max-width: 580px; 
    text-align: left;
  }

  .custom-slide.active .custom-hero-inner {
    animation: sliderFadeUp 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
  }

  /* 优雅的复古英文小标签 */
  .custom-hero-tag {
    color: var(--accent); 
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.18em;
    display: inline-block;
    margin-bottom: 16px;
  }

  .custom-hero-tag.tag-valentines {
    color: #F5C6B3; /* 更柔和低饱和度的植物浪漫粉 */
  }

  /* 雕刻感大标题 (Fraunces 体) */
  .custom-hero-title { 
    font-family: 'Fraunces', Georgia, serif;
    color: #ffffff; 
    font-size: 56px; 
    font-weight: 450; /* 标志性 450 细微粗度 */
    line-height: 1.1; 
    margin: 0 0 20px 0; 
    letter-spacing: -0.01em;
    text-shadow: 0 2px 14px rgba(0,0,0,0.12);
  }
  
  .custom-hero-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }

  .custom-hero-subtitle {
    color: var(--subtitle); 
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 34px 0;
    font-weight: 400;
  }

  /* 极简高级圆角按钮 */
  .custom-hero-btn { 
    background-color: var(--brand); 
    color: #FAF8F5 !important; 
    text-decoration: none !important; 
    padding: 15px 36px; 
    font-weight: 700; 
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px; /* 扁平微圆角，比 12px 更加具有高级现代感 */
    display: inline-block; 
    border: 1px solid var(--brand);
    transition: all 0.25s ease; 
  }

  .custom-hero-btn:hover { 
    background-color: var(--brand-deep); 
    border-color: var(--brand-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27,76,50,0.35);
  }

  /* 特别版的陶土橘色按钮，呼应整体色调 */
  .custom-hero-btn.btn-valentines {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #4A2E20 !important; /* 深咖色文字更显复古高贵 */
  }
  .custom-hero-btn.btn-valentines:hover {
    background-color: #df9372;
    border-color: #df9372;
    box-shadow: 0 8px 24px rgba(234,164,132,0.3);
  }

  /* 磨砂玻璃质感的侧边箭头 */
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(250, 248, 245, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(250, 248, 245, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slider-arrow:hover { 
    background: #FAF8F5; 
    color: var(--brand); 
    border-color: #FAF8F5;
  }
  .prev-arrow { left: 24px; }
  .next-arrow { right: 24px; }

  /* 底部胶囊指示圆点 */
  .slider-dots-container {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
  }
  .slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(250, 248, 245, 0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .slider-dot.active, .slider-dot:hover {
    background: #FAF8F5;
    transform: scale(1.25);
  }

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

  /* ==========================================================================
     📱 响应式手机端 UI 极限优化
     ========================================================================== */
  @media (max-width: 992px) {
    .custom-hero-slider-wrapper { 
      height: 520px; 
    }
    
    .custom-slide {
      padding: 24px;
      text-align: center;
      justify-content: center;
    }

    /* 手机端改用深邃的植物森林绿遮罩，确保大太阳下看手机也能清晰认字 */
    .custom-hero-bg::before {
      background: rgba(27, 76, 50, 0.72) !important;
    }

    .custom-hero-inner { 
      max-width: 100%; 
      padding: 0 8px;
    }
    .custom-hero-title { 
      font-size: 36px; 
      line-height: 1.15;
    }
    .custom-hero-subtitle { 
      font-size: 14px; 
      margin-bottom: 28px;
      color: #FAF8F5;
    }
    .slider-arrow { 
      width: 38px; 
      height: 38px; 
      font-size: 13px; 
    }
    .prev-arrow { left: 12px; }
    .next-arrow { right: 12px; }
    
    .slider-dots-container {
      bottom: 20px;
    }
  }
