/* =====================================================
   Subeau Custom CSS - Soft Mint Green (柔和奶绿)
   Referencing globalwidget.com layout style
   ===================================================== */

:root {
  --primary: #8FB5A3;
  --primary-light: #A8C5B8;
  --primary-dark: #6B9585;
  --primary-deep: #4A7566;
  --bg-light: #F7FAF9;
  --bg-white: #FFFFFF;
  --bg-gray: #F0F4F2;
  --text-primary: #2C3E38;
  --text-secondary: #5A6E66;
  --text-light: #8A9E95;
  --border: #E2E8E5;
  --shadow-sm: 0 2px 8px rgba(107,149,133,0.06);
  --shadow-md: 0 8px 24px rgba(107,149,133,0.1);
  --shadow-lg: 0 16px 48px rgba(107,149,133,0.12);
}

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

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

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.text-center { text-align: center; }

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* ========== HERO SECTION ========== */
.subeau-hero {
  background: linear-gradient(135deg, #F0F4F2 0%, #E8EEEB 50%, #DCE6E2 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.subeau-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,181,163,0.15) 0%, transparent 70%);
}

.subeau-hero .subeau-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--primary-dark);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  box-shadow: 0 4px 16px rgba(107,149,133,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,149,133,0.35);
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-dark));
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* ========== TRUST BADGES ========== */
.subeau-trust {
  padding: 50px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.trust-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-4px);
}

.badge-icon {
  width: 64px;
  height: 64px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon svg {
  width: 100%;
  height: 100%;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.3;
}

/* ========== STATS SECTION ========== */
.subeau-stats {
  padding: 100px 0;
  background: var(--bg-light);
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-white);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========== FEATURES ========== */
.subeau-features {
  padding: 100px 0;
  background: var(--bg-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  padding: 40px 32px;
  border-radius: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 56px;
  height: 56px;
  color: var(--primary);
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== SHOWCASE ========== */
.subeau-showcase {
  padding: 100px 0;
  background: var(--bg-light);
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

.showcase-row.reverse .showcase-image {
  order: 2;
}

.showcase-row.reverse .showcase-content {
  order: 1;
}

.showcase-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.showcase-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.showcase-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.showcase-list {
  list-style: none;
  padding: 0;
}

.showcase-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.showcase-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

/* ========== PRODUCT CATEGORIES ========== */
.subeau-products {
  padding: 100px 0;
  background: var(--bg-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.product-card {
  padding: 48px 36px;
  border-radius: 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
  border-color: var(--primary-light);
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.product-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.product-card > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-card ul {
  list-style: none;
  padding: 0;
}

.product-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.product-card ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--primary);
  font-weight: 700;
}

/* ========== CUSTOMIZATION OPTIONS ========== */
.subeau-custom {
  padding: 100px 0;
  background: var(--bg-light);
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.custom-item {
  background: var(--bg-white);
  padding: 32px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.custom-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-light);
}

.custom-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto 16px;
  background: var(--primary);
  border-radius: 50%;
}

.custom-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* ========== PROCESS ========== */
.subeau-process {
  padding: 100px 0;
  background: var(--bg-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 60px;
  position: relative;
}

.step-item {
  text-align: center;
  padding: 32px 16px;
  position: relative;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 16px;
  opacity: 0.5;
}

.step-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== CTA SECTION ========== */
.subeau-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
}

.subeau-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.subeau-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

.subeau-cta .btn-primary {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.subeau-cta .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* ========== J&K FOOTER ========== */
.jk-brand-footer {
  padding: 32px 0;
  background: #2C3E38;
  border-top: 3px solid var(--primary);
}

.jk-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.jk-badge-small {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 2px;
}

.jk-powered {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px 0;
}

.jk-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .subeau-hero .subeau-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title { font-size: 2.5rem; }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .custom-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .showcase-row.reverse .showcase-image { order: 0; }
  .showcase-row.reverse .showcase-content { order: 0; }
}

@media (max-width: 640px) {
  .section-title { font-size: 1.8rem; }
  
  .hero-title { font-size: 2rem; }
  
  .trust-badges { gap: 24px; }
  
  .badge-icon { width: 48px; height: 48px; }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .custom-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-cta-group { flex-direction: column; }
  
  .btn { width: 100%; }
  
  .subeau-cta h2 { font-size: 1.8rem; }
}


/* ============================================
   Subeau Product Page Styles
   Magnesium + Ashwagandha Gummies
   ============================================ */

.subeau-product-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #333;
  line-height: 1.6;
}

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

/* ---- Product Hero ---- */
.product-hero {
  padding: 80px 0 60px;
  background: #F7FAF9;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.product-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #E2E8E5;
  color: #4A7566;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-hero-info h1 {
  font-size: 42px;
  font-weight: 700;
  color: #2D3748;
  margin: 0 0 12px;
  line-height: 1.2;
}

.product-subtitle {
  font-size: 18px;
  color: #6B9585;
  margin: 0 0 32px;
  font-weight: 500;
}

.product-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.highlight-item {
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #E2E8E5;
  text-align: center;
}

.highlight-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #6B9585;
  margin-bottom: 4px;
}

.highlight-label {
  font-size: 13px;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-hero-cta .btn-primary,
.product-hero-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-hero-cta .btn-primary {
  background: #6B9585;
  color: white;
}

.product-hero-cta .btn-primary:hover {
  background: #4A7566;
  transform: translateY(-1px);
}

.product-hero-cta .btn-secondary {
  background: white;
  color: #6B9585;
  border: 2px solid #8FB5A3;
}

.product-hero-cta .btn-secondary:hover {
  background: #F7FAF9;
  border-color: #6B9585;
}

.product-cert-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.product-cert-badges span {
  font-size: 12px;
  color: #718096;
  padding: 4px 10px;
  background: #EDF2F7;
  border-radius: 4px;
  font-weight: 500;
}

/* ---- Section Shared ---- */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8FB5A3;
  margin-bottom: 12px;
}

.section-header {
  margin-bottom: 48px;
  max-width: 640px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2D3748;
  margin: 0 0 16px;
  line-height: 1.25;
}

.section-desc {
  font-size: 17px;
  color: #718096;
  margin: 0;
  line-height: 1.7;
}

/* ---- Key Points ---- */
.product-key-points {
  padding: 80px 0;
  background: white;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.point-card {
  padding: 36px 28px;
  background: #F7FAF9;
  border-radius: 16px;
  border: 1px solid #E2E8E5;
  transition: all 0.3s ease;
}

.point-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(107, 149, 133, 0.12);
  border-color: #8FB5A3;
}

.point-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.point-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2D3748;
  margin: 0 0 12px;
}

.point-card p {
  font-size: 15px;
  color: #718096;
  margin: 0;
  line-height: 1.7;
}

/* ---- Ingredients ---- */
.product-ingredients {
  padding: 80px 0;
  background: #F7FAF9;
}

.ingredients-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.ingredients-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2D3748;
  margin: 0 0 16px;
  line-height: 1.25;
}

.ingredients-text > p {
  font-size: 17px;
  color: #718096;
  margin: 0 0 32px;
  line-height: 1.7;
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ingredient-item {
  padding-left: 20px;
  border-left: 3px solid #8FB5A3;
}

.ingredient-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2D3748;
  margin: 0 0 8px;
}

.ingredient-item p {
  font-size: 15px;
  color: #718096;
  margin: 0;
  line-height: 1.7;
}

.ingredient-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ing-card {
  background: white;
  padding: 28px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid #E2E8E5;
}

.ing-card-1 { border-left: 4px solid #6B9585; }
.ing-card-2 { border-left: 4px solid #8FB5A3; margin-left: 40px; }
.ing-card-3 { border-left: 4px solid #A8C5B8; margin-left: 80px; }

.ing-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #6B9585;
  margin-bottom: 4px;
}

.ing-name {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

/* ---- OEM Section ---- */
.product-oem {
  padding: 80px 0;
  background: white;
}

.oem-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.oem-option-card {
  padding: 32px 28px;
  background: #F7FAF9;
  border-radius: 16px;
  border: 1px solid #E2E8E5;
}

.oem-option-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #2D3748;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #8FB5A3;
  display: inline-block;
}

.oem-option-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.oem-option-card li {
  font-size: 15px;
  color: #4A5568;
  padding-left: 20px;
  position: relative;
}

.oem-option-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6B9585;
  font-weight: 700;
}

.oem-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  padding: 40px;
  background: linear-gradient(135deg, #6B9585 0%, #8FB5A3 100%);
  border-radius: 16px;
}

.spec-item {
  text-align: center;
  color: white;
}

.spec-value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}

.spec-label {
  font-size: 13px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.oem-cta {
  text-align: center;
}

.oem-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: #6B9585;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.oem-cta .btn-primary:hover {
  background: #4A7566;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 149, 133, 0.3);
}

.oem-note {
  margin-top: 12px;
  font-size: 14px;
  color: #A0AEC0;
}

/* ---- Factory Section ---- */
.product-factory {
  padding: 80px 0;
  background: #F7FAF9;
}

.factory-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.factory-img-main {
  margin-bottom: 16px;
}

.factory-img-main img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.factory-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.factory-img-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.factory-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2D3748;
  margin: 0 0 16px;
  line-height: 1.25;
}

.factory-text > p {
  font-size: 16px;
  color: #718096;
  margin: 0 0 28px;
  line-height: 1.7;
}

.factory-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.f-badge {
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #E2E8E5;
  text-align: center;
  min-width: 100px;
}

.f-badge strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #6B9585;
  margin-bottom: 4px;
}

.f-badge span {
  font-size: 11px;
  color: #718096;
}

.link-arrow {
  color: #6B9585;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.link-arrow:hover {
  color: #4A7566;
  text-decoration: underline;
}

/* ---- FAQ ---- */
.product-faq {
  padding: 80px 0;
  background: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  padding: 24px 28px;
  background: #F7FAF9;
  border-radius: 12px;
  border: 1px solid #E2E8E5;
}

.faq-item h4 {
  font-size: 17px;
  font-weight: 600;
  color: #2D3748;
  margin: 0 0 10px;
}

.faq-item p {
  font-size: 15px;
  color: #718096;
  margin: 0;
  line-height: 1.7;
}

/* ---- CTA Section ---- */
.product-cta {
  padding: 60px 0 80px;
  background: #F7FAF9;
}

.cta-box {
  background: linear-gradient(135deg, #6B9585 0%, #4A7566 100%);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
}

.cta-box p {
  font-size: 17px;
  opacity: 0.9;
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-box .btn-primary.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: white;
  color: #6B9585;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-box .btn-primary.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .product-hero-grid,
  .ingredients-row,
  .factory-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .points-grid,
  .oem-options {
    grid-template-columns: 1fr;
  }

  .oem-specs {
    grid-template-columns: 1fr 1fr;
    padding: 32px 20px;
  }

  .ing-card-2,
  .ing-card-3 {
    margin-left: 0;
  }

  .product-hero-info h1 {
    font-size: 32px;
  }

  .section-header h2,
  .ingredients-text h2 {
    font-size: 28px;
  }
}


/* ============================================
   Subeau FAQ Page Styles
   ============================================ */

.subeau-faq-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #333;
  line-height: 1.6;
}

.subeau-faq-page .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- FAQ Hero ---- */
.faq-hero {
  padding: 80px 0 40px;
  background: #F7FAF9;
}

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

.faq-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #2D3748;
  margin: 0 0 16px;
  line-height: 1.2;
}

.faq-hero-desc {
  font-size: 17px;
  color: #718096;
  margin: 0;
  line-height: 1.7;
}

.faq-hero-desc a {
  color: #6B9585;
  text-decoration: underline;
  font-weight: 500;
}

/* ---- FAQ Main ---- */
.faq-main {
  padding: 40px 0 60px;
  background: #F7FAF9;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2D3748;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #8FB5A3;
  display: inline-block;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid #E2E8E5;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #8FB5A3;
  box-shadow: 0 4px 16px rgba(107, 149, 133, 0.08);
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: #2D3748;
  margin: 0 0 12px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 15px;
  color: #4A5568;
  margin: 0;
  line-height: 1.75;
}

.faq-item p strong {
  color: #6B9585;
  font-weight: 600;
}

.faq-item a {
  color: #6B9585;
  text-decoration: underline;
}

/* ---- FAQ CTA ---- */
.faq-cta {
  padding: 40px 0 80px;
  background: #F7FAF9;
}

.faq-cta .cta-box {
  background: linear-gradient(135deg, #6B9585 0%, #4A7566 100%);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.faq-cta .cta-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
}

.faq-cta .cta-box p {
  font-size: 17px;
  opacity: 0.9;
  margin: 0 0 28px;
  line-height: 1.7;
}

.faq-cta .btn-primary.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: white;
  color: #6B9585;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-cta .btn-primary.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .faq-hero h1 {
    font-size: 32px;
  }

  .faq-category h2 {
    font-size: 20px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-cta .cta-box h2 {
    font-size: 26px;
  }
}
