@charset "UTF-8";
/* UI behaviour: /assets/js/main.js (nav, scroll-top, in-page anchors). */
/* ============================================
   PRODUCTION LEVEL CSS - VERSION 2.0
   Consistent Container System | Pros/Cons | SEO Optimized
   Domain: www.moringasuppliersindia.com
============================================ */

/* CSS Reset & Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Fixed header (content row; safe-area adds above on iOS) */
  --nav-height: 58px;
  --nav-safe-top: env(safe-area-inset-top, 0px);
  --nav-offset: calc(var(--nav-height) + var(--nav-safe-top));
  --green-deep: #0a2e15;
  --green-dark: #1a5f2a;
  --green-main: #2d8a3a;
  --green-mid: #4cae5a;
  --green-light: #b8e0c0;
  --green-pale: #eef7f0;
  --green-ultra: #f5fcf6;
  --gold: #d4a53a;
  --gold-dark: #b8860b;
  --gold-light: #fef5e6;
  --text-dark: #1a2e1c;
  --text-body: #2d4a33;
  --text-muted: #6b8d6f;
  --text-light: #9bb89e;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04), 0 4px 12px rgba(45,138,58,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06), 0 12px 32px rgba(45,138,58,0.10);
  --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.15);
  --shadow-xl: 0 35px 60px -15px rgba(0,0,0,0.2);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1280px;
  --container-padding: 2rem;
  --section-spacing: 5rem;
  --section-spacing-mobile: 3rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-offset) + 12px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Fluid images & video (WebP, GIF, etc.) — never wider than the viewport */
img,
video {
  max-width: 100%;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 10000;
  padding: 0.55rem 1rem;
  background: var(--green-deep);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}
.skip-link:focus {
  left: 0.75rem;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--green-main);
  outline-offset: 2px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .serif {
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--green-deep);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

/* Container System - Consistent spacing everywhere */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: max(var(--container-padding), env(safe-area-inset-left, 0px));
  padding-right: max(var(--container-padding), env(safe-area-inset-right, 0px));
  width: 100%;
}

/* Section Spacing - Consistent */
section {
  padding: var(--section-spacing) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--section-spacing-mobile) 0;
  }
  :root {
    --container-padding: 1.25rem;
  }
}

/* Utility Classes */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 1rem;
}

/* ASCII-only marker (avoids mojibake if CSS charset is mis-detected) */
.section-tag::before {
  content: '';
  display: inline-block;
  width: 1.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--green-main), var(--gold));
  border-radius: 2px;
  flex-shrink: 0;
}

.divider-center {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-main), var(--gold));
  border-radius: 3px;
  margin: 1.2rem auto;
}

.divider-left {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-main), var(--gold));
  border-radius: 3px;
  margin: 1rem 0 1.8rem 0;
}

/* Grid Systems */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid rgba(45,138,58,0.12);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all 0.3s ease;
}

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

/* Navigation — single-row desktop; hamburger from 1100px down */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: calc(var(--nav-height) + var(--nav-safe-top));
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 138, 58, 0.12);
  z-index: 1001;
  padding: var(--nav-safe-top) 0 0;
  display: flex;
  align-items: center;
  transition: box-shadow 0.25s, background 0.25s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: max(var(--container-padding), env(safe-area-inset-left, 0px));
  padding-right: max(var(--container-padding), env(safe-area-inset-right, 0px));
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.35rem, 1.2vw, 1rem);
  width: 100%;
  min-width: 0;
  min-height: var(--nav-height);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
  line-height: 0;
}

.logo img {
  width: clamp(26px, 2.2vw, 32px);
  height: clamp(26px, 2.2vw, 32px);
  flex-shrink: 0;
  display: block;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-shrink: 0;
  min-width: 0;
}

.nav-search-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: var(--radius-sm);
  color: var(--green-dark);
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nav-search-ic:hover {
  border-color: var(--green-pale);
  background: var(--green-ultra);
}

.nav-search-ic:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-search-ic svg {
  display: block;
}

.retail-usd-inr-hint {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(45, 138, 58, 0.22);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  max-width: 52rem;
}

.hero .retail-usd-inr-hint {
  background: rgba(255, 255, 255, 0.88);
}

.retail-usd-inr-hint__meta {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(0.35rem, 0.65vw, 1.1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  flex-shrink: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: clamp(0.72rem, 0.55rem + 0.32vw, 0.84rem);
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
  padding: 0.2rem 0.08rem;
  display: inline-block;
}

.nav-links a:hover {
  color: var(--green-main);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  margin: 0;
  line-height: 0;
  border-radius: var(--radius-sm);
  color: inherit;
  min-width: 44px;
  min-height: 44px;
}

.mobile-toggle:focus-visible {
  outline: 2px solid var(--green-main);
  outline-offset: 2px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-ultra) 0%, var(--white) 70%);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-offset) + 12px);
  position: relative;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  max-width: 100%;
  flex-wrap: wrap;
  white-space: normal;
  line-height: 1.35;
}

.hero-lede {
  font-size: clamp(0.98rem, 2.8vw, 1.05rem);
  color: var(--text-muted);
  margin: 1rem 0;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-main);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill {
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  color: var(--green-dark);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.pill:hover {
  background: var(--green-main);
  color: white;
  border-color: var(--green-main);
  transform: translateY(-2px);
}

.pill.pill--buy {
  background: linear-gradient(135deg, var(--green-main) 0%, var(--green-dark) 100%);
  color: #fff;
  border-color: rgba(45, 138, 58, 0.35);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(45, 138, 58, 0.25);
}
.pill.pill--buy:hover {
  color: #fff;
  border-color: transparent;
  filter: brightness(1.05);
}
.pill.pill--bulk {
  background: linear-gradient(135deg, #ee5d3b 0%, #c8451f 100%);
  color: #fff;
  border-color: rgba(181, 61, 26, 0.4);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(200, 69, 31, 0.28);
}
.pill.pill--bulk:hover {
  color: #fff;
  border-color: transparent;
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.pill.pill--bulk:visited { color: #fff; }
.pill.pill--alibaba {
  background: linear-gradient(135deg, #ff8c1a 0%, #e65c00 100%);
  color: #fff;
  border-color: rgba(230, 92, 0, 0.45);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(230, 92, 0, 0.3);
}
.pill.pill--alibaba:hover {
  color: #fff;
  border-color: transparent;
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.pill.pill--alibaba:visited {
  color: #fff;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-image--brand img,
.hero-image img.hero-visual-photo {
  object-fit: contain;
}

.hero-image--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(245, 252, 246, 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(45, 138, 58, 0.12);
}
.hero-visual-photo {
  width: 100%;
  max-width: min(100%, clamp(300px, 42vw, 640px));
  height: auto;
  max-height: min(75vh, clamp(340px, 52vw, 600px));
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 12px 28px rgba(10, 46, 21, 0.14));
}

/* Tablet: hero image scales with column without feeling tiny */
@media (min-width: 901px) and (max-width: 1100px) {
  .hero-visual-photo {
    max-width: min(100%, 480px);
    max-height: min(68vh, 520px);
  }
}

/* Pros & Cons Section */
.proscons-section {
  background: var(--green-ultra);
}

.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pros-card, .cons-card {
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
}

.pros-card {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 1px solid var(--green-light);
}

.cons-card {
  background: linear-gradient(135deg, #fef5e6 0%, #fce4b2 100%);
  border: 1px solid var(--gold-light);
}

.pros-card h3, .cons-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pros-list, .cons-list {
  list-style: none;
}

.pros-list li, .cons-list li {
  padding: 0.6rem 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pros-list li::before {
  content: '\2713';
  color: var(--green-main);
  font-weight: bold;
  font-size: 1.1rem;
}

.cons-list li::before {
  content: '\2717';
  color: var(--gold-dark);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Products Grid */
.product-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* Benefits Section - Dark */
.benefits-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: white;
}

.benefits-section .section-tag {
  color: var(--green-light);
}

.benefits-section h2 {
  color: white;
}

.benefits-section .card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,0.15);
}

.benefits-section .card h3 {
  color: var(--green-light);
}

.benefits-section .card p {
  color: rgba(255,255,255,0.7);
}

/* Supplier Table */
.suppliers-section {
  background: var(--green-ultra);
}

/* Reference list: four columns, fits viewport without forced 520px min-width */
.table-wrapper--suppliers {
  overscroll-behavior-x: contain;
}

.table-wrapper--suppliers .suppliers-reference-table {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}

.suppliers-reference-table th,
.suppliers-reference-table td {
  vertical-align: top;
}

.suppliers-reference-table th:nth-child(1),
.suppliers-reference-table td:nth-child(1) {
  width: 2.6rem;
  text-align: center;
}

.suppliers-reference-table th:nth-child(2),
.suppliers-reference-table td:nth-child(2) {
  width: 24%;
}

.suppliers-reference-table th:nth-child(3),
.suppliers-reference-table td:nth-child(3) {
  width: 16%;
}

.suppliers-reference-table th:nth-child(4),
.suppliers-reference-table td:nth-child(4) {
  min-width: 0;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  hyphens: auto;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .suppliers-section .suppliers-reference-table th,
  .suppliers-section .suppliers-reference-table td {
    padding: 0.55rem 0.4rem;
    font-size: 0.76rem;
  }
  .suppliers-section .suppliers-reference-table th:nth-child(2),
  .suppliers-section .suppliers-reference-table td:nth-child(2) {
    width: 28%;
  }
  .suppliers-section .suppliers-reference-table th:nth-child(3),
  .suppliers-section .suppliers-reference-table td:nth-child(3) {
    width: 18%;
  }
  .suppliers-section .cert-tag {
    font-size: 0.58rem;
    padding: 2px 7px;
    margin: 1px 2px 1px 0;
  }
}

.supplier-table-footnote {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 48rem;
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-sm);
  border: 1px solid var(--green-pale);
}

.supplier-table-footnote a {
  color: var(--green-dark);
  font-weight: 600;
}

.info-box {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
}

.table-wrapper,
.table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-pale);
  margin: 1rem 0;
  background: var(--white);
}
.table-wrapper table,
.table-responsive table {
  margin: 0;
  min-width: 520px;
}

.table-wrapper.table-wrapper--suppliers table.suppliers-reference-table {
  min-width: 0;
}

@media (max-width: 640px) {
  .table-wrapper table,
  .table-responsive table {
    min-width: 480px;
  }
  .table-wrapper.table-wrapper--suppliers table.suppliers-reference-table {
    min-width: 0;
  }
  .table-wrapper th,
  .table-wrapper td,
  .table-responsive th,
  .table-responsive td {
    padding: 0.65rem 0.5rem;
    font-size: 0.8rem;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

th {
  background: var(--green-dark);
  color: var(--green-light);
  padding: 1rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--green-pale);
  font-size: 0.85rem;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: var(--green-ultra);
}

.cert-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  margin: 2px;
}

/* Documents Section */
.doc-item {
  background: var(--green-ultra);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  display: flex;
  gap: 15px;
  transition: all 0.2s;
}

.doc-item:hover {
  transform: translateX(4px);
  border-color: var(--green-light);
}

.doc-check {
  width: 28px;
  height: 28px;
  background: var(--green-main);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.doc-check-opt {
  background: var(--gold);
}

/* FAQ */
.faq-section {
  background: var(--green-ultra);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.faq-question {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 10px;
}

.faq-question::before {
  content: "Q:";
  color: var(--green-main);
  font-weight: 800;
}

.faq-answer {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 28px;
}

/* Disclaimer */
.disclaimer {
  background: var(--green-deep);
  text-align: center;
}

.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  line-height: 1.7;
}

/* Footer */
footer {
  background: #0a2410;
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  color: var(--green-light);
  font-size: 1rem;
}

.footer-logo span {
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green-light);
}

.footer-copyright {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
}

/* Floating row: Help + scroll-to-top (one line) */
.page-tools-dock {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1008;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding-left: max(0.75rem, env(safe-area-inset-left));
  padding-right: max(0.75rem, env(safe-area-inset-right));
  bottom: max(1.35rem, env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  transition: bottom 0.28s ease;
}

.page-tools-dock > * {
  pointer-events: auto;
}

.page-tools-dock .guide-assist {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  flex: 0 1 auto;
  min-width: 0;
  transition: none;
  font-family: Inter, system-ui, sans-serif;
}

/* Scroll-to-top (lives inside .page-tools-dock) */
.scroll-top {
  position: relative;
  bottom: auto;
  right: auto;
  left: auto;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-main);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  z-index: auto;
}

@media (max-width: 639px) {
  .scroll-top {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .page-tools-dock {
    bottom: 1.05rem;
  }
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .page-tools-dock {
    bottom: 1.85rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
}

.scroll-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

.scroll-top.visible:hover {
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-bottom: 2.5rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero-content > div:first-child {
    min-width: 0;
  }
  .hero h1 {
    overflow-wrap: anywhere;
    hyphens: auto;
    line-height: 1.18;
  }
  .hero-image {
    display: block;
    max-width: min(100%, 440px);
    margin: 0 auto;
    justify-self: center;
  }
  .hero-image img {
    max-height: min(62vh, clamp(260px, 55vw, 440px));
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    justify-content: flex-start;
  }
  .hero-pills {
    gap: 0.55rem;
  }
  .hero-pills .pill {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }
  .proscons-grid {
    grid-template-columns: 1fr;
  }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Nav CTA button */
.nav-cta {
  background: var(--green-main);
  color: var(--white) !important;
  padding: 5px 12px;
  border-radius: 100px;
  transition: all 0.2s;
  font-size: clamp(0.7rem, 0.55rem + 0.28vw, 0.8rem) !important;
}
.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.nav-links a.nav-link-buy {
  background: linear-gradient(135deg, var(--green-main) 0%, var(--green-dark) 100%);
  color: #fff !important;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 700;
  font-size: clamp(0.7rem, 0.55rem + 0.28vw, 0.8rem) !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 8px rgba(45, 138, 58, 0.22);
}
.nav-links a.nav-link-buy:hover {
  color: #fff !important;
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--green-ultra) 0%, var(--white) 100%);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  flex-shrink: 0;
}
.contact-icon.email {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
}
.contact-card h3 {
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-main);
  font-family: 'Inter', sans-serif;
  word-break: break-all;
}
.contact-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.contact-cta-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.4rem;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-btn.primary {
  background: var(--green-main);
  color: white;
}
.contact-btn.primary:hover {
  background: var(--green-dark);
}
.contact-btn.secondary {
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-light);
}
.contact-btn.secondary:hover {
  background: var(--green-light);
}

/* ===== PRO COMPONENTS ===== */

/* Trust Strip */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--green-pale);
  border-bottom: 1px solid var(--green-pale);
  padding: 1.5rem 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 1.75rem;
  row-gap: 1.25rem;
}
@media (min-width: 900px) {
  .trust-strip .container {
    gap: 2rem 3rem;
  }
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  min-width: 0;
  max-width: 8.5rem;
}
.trust-item-icon {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  line-height: 1;
  color: var(--green-main);
}

@media (max-width: 520px) {
  .trust-strip .container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    gap: 0.85rem 0.75rem;
  }
  .trust-item {
    max-width: none;
  }
}

/* Section intro paragraph */
.section-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
}

/* Why India - comparison table */
.why-india-section {
  background: var(--white);
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th {
  background: var(--green-deep);
  color: var(--green-light);
  padding: 1rem 0.85rem;
  text-align: left;
  font-size: 0.78rem;
  line-height: 1.35;
  vertical-align: bottom;
  border-bottom: 2px solid rgba(212, 165, 58, 0.35);
}
.compare-table th:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  min-width: 7.5rem;
}
.compare-table th:first-child {
  text-align: left;
  min-width: 9.5rem;
}
.compare-table thead th.highlight-col {
  background: linear-gradient(180deg, #0d3d1c 0%, var(--green-dark) 55%, var(--green-main) 100%);
  color: #f0faf1;
  font-weight: 700;
  box-shadow: inset 0 -2px 0 rgba(212, 165, 58, 0.45);
}
.compare-table td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--green-pale);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-body);
  vertical-align: top;
}
.compare-table td:not(:first-child) {
  border-left: 1px solid rgba(238, 247, 240, 0.95);
  text-align: center;
}
.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--green-deep);
  hyphens: auto;
  -webkit-hyphens: auto;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .highlight-col {
  background: rgba(232, 247, 235, 0.75);
  font-weight: 600;
  color: var(--green-deep);
}
.compare-table tbody tr:nth-child(even) td {
  background: rgba(245, 252, 246, 0.55);
}
.compare-table tbody tr:nth-child(even) td:first-child {
  background: rgba(245, 252, 246, 0.97);
}
.compare-table tbody tr:nth-child(even) td.highlight-col {
  background: rgba(220, 240, 224, 0.85);
}
.compare-table tbody tr:hover td {
  background: var(--green-ultra);
}
.compare-table tbody tr:hover td:first-child {
  background: #eef7f0;
}
.compare-table tbody tr:hover td.highlight-col {
  background: rgba(200, 232, 206, 0.95);
}
.compare-table .check { color: var(--green-main); font-weight: 700; }
.compare-table .cross { color: var(--gold-dark); }

/* Scrollable country comparison: sticky first column + wrapper polish */
.why-india-section .table-wrapper--compare {
  margin: 1.5rem auto 0;
  border: 1px solid rgba(45, 138, 58, 0.18);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.why-india-section .table-wrapper--compare .compare-table {
  min-width: 720px;
  box-shadow: none;
  border-radius: 0;
}
.why-india-section .table-wrapper--compare th:first-child,
.why-india-section .table-wrapper--compare td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  box-shadow: 6px 0 14px -8px rgba(10, 46, 21, 0.22);
}
.why-india-section .table-wrapper--compare th:first-child {
  z-index: 4;
  background: var(--green-deep);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.why-india-section .table-wrapper--compare td:first-child {
  z-index: 2;
  background: var(--white);
  border-right: 1px solid var(--green-pale);
}
.why-india-section .table-wrapper--compare tbody tr:nth-child(even) td:first-child {
  background: rgba(245, 252, 246, 0.98);
}
.why-india-section .table-wrapper--compare tbody tr:hover td:first-child {
  background: #eef7f0;
}
@media (max-width: 768px) {
  .why-india-section .table-wrapper--compare .compare-table {
    min-width: 640px;
  }
  .compare-table th {
    padding: 0.75rem 0.55rem;
    font-size: 0.72rem;
  }
  .compare-table th:first-child {
    min-width: 8.25rem;
  }
  .compare-table td {
    padding: 0.7rem 0.5rem;
    font-size: 0.76rem;
  }
}

/* Production Timeline */
.timeline-section {
  background: var(--green-ultra);
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green-main), var(--gold));
  transform: translateX(-50%);
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem 2rem;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-step {
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.timeline-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.timeline-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.timeline-dot {
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--green-main);
  color: white;
  border: 4px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  top: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.timeline-item:nth-child(odd) .timeline-dot { right: -18px; }
.timeline-item:nth-child(even) .timeline-dot { left: -18px; }
@media (max-width: 768px) {
  .timeline::before { left: 18px; }
  .timeline-item, .timeline-item:nth-child(even) { width: 100%; left: 0; padding-left: 50px; padding-right: 0; text-align: left; }
  .timeline-item:nth-child(odd) { text-align: left; }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { left: 0; right: auto; }
}

/* Stats Dashboard */
.stats-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: white;
}
.stats-section .section-tag { color: var(--green-light); }
.stats-section h2 { color: white; }
.stats-section .section-intro { color: rgba(255,255,255,0.78); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: var(--green-light);
}
.stat-card .big {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.stat-card .label {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.stat-card .source {
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Top Destinations */
.destinations-section { background: var(--white); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.dest-card {
  background: var(--green-ultra);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s;
}
.dest-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-sm);
}
.dest-flag { font-size: 2rem; margin-bottom: 0.4rem; }
.dest-card h3 {
  font-size: 0.95rem;
  margin: 0;
}
.dest-card .dest-share {
  font-size: 0.75rem;
  color: var(--green-main);
  font-weight: 700;
  margin-top: 0.3rem;
}

/* ==========================================================================
   Quick buyer brief — top-of-page evergreen SEO block targeting the exact
   "Moringa Suppliers in India" query. Four equal-weight cards.
   ========================================================================== */
.quick-brief-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--green-ultra) 100%);
  padding: 4rem 0 3rem;
}
.quick-brief-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 2rem;
}
.qb-card {
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.qb-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.qb-icon {
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 0.55rem;
}
.qb-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.55rem;
}
.qb-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}
.qb-card strong { color: var(--green-deep); }
.quick-brief-foot {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.quick-brief-foot a {
  color: var(--green-main);
  font-weight: 600;
  text-decoration: none;
}
.quick-brief-foot a:hover { text-decoration: underline; }

/* ==========================================================================
   Pricing / MOQ / Supplier-margin block (evergreen rewrite)
   - No fixed dollar amounts; explains how Indian moringa suppliers price.
   - Three layers: MOQ cards, margin cards, public price-source links.
   - Cards fluid-collapse to one column under 720px.
   ========================================================================== */
.pricing-section { background: var(--green-ultra); }

.moq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.moq-card {
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.moq-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.moq-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.moq-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}
.moq-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-top: 1px dashed var(--green-pale);
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.5;
}
.moq-row span {
  color: var(--text-muted);
  min-width: 7rem;
}
.moq-row strong {
  text-align: right;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.82rem;
}

.margin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0 1.5rem;
}
@media (max-width: 820px) { .margin-grid { grid-template-columns: 1fr; } }
.margin-card {
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.margin-card h3 {
  font-size: 1.05rem;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.margin-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}
.margin-list li { margin-bottom: 0.45rem; }
.margin-card--highlight {
  background: linear-gradient(135deg, #fff8e7, #fef5e6);
  border-color: var(--gold);
}
.margin-card--highlight h3 { color: var(--gold-dark); }
.margin-card--highlight p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}
.margin-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.price-sources {
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}
.price-sources h3 {
  font-size: 1.05rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}
.price-sources-lead {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.price-sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}
.price-source {
  background: var(--green-ultra);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.95rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-body);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.price-source:hover {
  background: var(--green-pale);
  border-color: var(--green-light);
}
.price-source strong {
  color: var(--green-deep);
  display: inline-block;
  margin-bottom: 2px;
}
.price-source a {
  color: var(--green-main);
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}
.price-source a:hover { text-decoration: underline; }

.price-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: var(--gold-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
}

/* Legacy class retained for any cached pages still rendering the table; new
   home page uses .moq-grid + .margin-grid instead. */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table th {
  background: var(--green-dark);
  color: var(--green-light);
  padding: 1rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
}
.pricing-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--green-pale);
  font-size: 0.85rem;
}
.pricing-table tr:last-child td { border-bottom: none; }
.price-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Sustainability */
.sustain-section { background: var(--white); }
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .sustain-grid { grid-template-columns: 1fr; } }
.sustain-card {
  background: linear-gradient(135deg, var(--green-ultra), var(--green-pale));
  border: 1px solid var(--green-light);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
}
.sustain-card .big-icon {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

/* Industry Insights / Buyer Scenarios */
.insights-section {
  background: linear-gradient(135deg, var(--green-ultra), var(--white));
}
.insight-card {
  background: var(--white);
  border-left: 4px solid var(--green-main);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.insight-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}
.insight-quote::before {
  content: '"';
  position: absolute;
  left: -0.2rem;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
}
.insight-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1rem;
  border-top: 1px solid var(--green-pale);
}
.insight-avatar {
  width: 40px;
  height: 40px;
  background: var(--green-main);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.insight-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
}
.insight-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Glossary */
.glossary-section { background: var(--white); }
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) { .glossary-grid { grid-template-columns: 1fr; } }
.glossary-item {
  background: var(--green-ultra);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--green-main);
}
.glossary-term {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.glossary-def {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* About / Editorial */
.about-section { background: var(--green-ultra); }
.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}
.editorial-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--green-pale);
}
@media (max-width: 600px) { .editorial-meta { grid-template-columns: 1fr; } }
.editorial-meta div {
  text-align: center;
}
.editorial-meta .em-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.editorial-meta .em-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}

/* Legal sections (Privacy / Terms / Cookie) */
.legal-section {
  background: var(--white);
  padding: 4rem 0;
}
.legal-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.legal-section h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--green-dark);
}
.legal-section p, .legal-section li {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.75;
}
.legal-section ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
}
.legal-section .legal-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.8rem 1rem;
  background: var(--green-ultra);
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}
.legal-divider {
  border: none;
  border-top: 1px dashed var(--green-pale);
  margin: 3rem 0;
}

/* Pro footer (multi-column) */
.footer-pro {
  background: #061b0c;
  padding: 4rem 0 1.5rem;
  color: rgba(255,255,255,0.7);
}
.footer-pro-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-cols { gap: 1.75rem; } }
.footer-col h4 {
  color: var(--green-light);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-light); }
.footer-brand-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  line-height: 0;
}
.footer-brand-logo img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
}
.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.55rem;
}
.footer-owner-line {
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 0.7rem;
}
.footer-contact-mini {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-mini a {
  color: var(--green-light);
  text-decoration: none;
}
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .last-updated {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}

/* ===== AMAZON / AFFILIATE COMPONENTS ===== */

/* Affiliate Disclosure box (shown above any affiliate link block) */
.affiliate-disclosure {
  background: linear-gradient(135deg, #fef5e6 0%, #fff 100%);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  margin: 0 auto 2rem;
  max-width: 800px;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.affiliate-disclosure .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.affiliate-disclosure strong {
  color: var(--gold-dark);
}
.affiliate-disclosure--compact {
  padding: 0.85rem 1.15rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
}
.affiliate-disclosure--compact .icon {
  font-size: 1.1rem;
  line-height: 1.2;
}

.affiliate-near-link-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 52rem;
  margin: 0 auto 1rem;
  line-height: 1.55;
}
.affiliate-near-link-note a {
  color: var(--green-dark);
  font-weight: 600;
}

.footer-affiliate-line {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.footer-affiliate-line a {
  color: var(--green-light);
  margin-left: 0.35rem;
}
.footer-affiliate-line .footer-affiliate-sep {
  margin: 0 0.35rem;
  opacity: 0.72;
}
.buyer-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
  margin: 1rem 0 1.35rem;
}
.buyer-action-row .amazon-btn,
.buyer-action-row .indiamart-btn,
.buyer-action-row .alibaba-btn {
  width: auto;
  flex: 1 1 min(260px, 100%);
}

/* Home page: guides grid (isolated layout; do not share broken pill styles) */
.home-authority-section {
  background: linear-gradient(135deg, var(--green-ultra), var(--white));
  padding-bottom: var(--section-spacing-mobile);
  overflow-x: clip;
}
.home-authority-section .section-header {
  margin-bottom: 2rem;
}
.home-authority-section .home-articles-grid {
  display: grid;
  width: 100%;
  align-items: stretch;
  isolation: isolate;
}
.home-authority-section .home-article-item {
  display: flex;
}
.home-authority-section .home-article-card {
  flex: 1;
  width: 100%;
}
.home-authority-lead {
  color: var(--text-muted);
  max-width: 44rem;
  margin: 0 auto 1.25rem;
  line-height: 1.65;
  padding: 0 0.25rem;
}
.home-authority-lead a {
  color: var(--green-main);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.home-authority-lead a:visited {
  color: var(--green-dark);
}
.home-authority-lead a:hover {
  color: var(--green-dark);
}
.home-authority-lead strong {
  color: var(--green-dark);
  font-weight: 600;
}
.home-articles-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem 1.35rem;
}
.home-article-item {
  margin: 0;
  min-width: 0;
}
/* Whole card is an <a>; WebKit defaults to blue link — force site palette */
a.home-article-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  padding: 1.15rem 1.2rem 1.2rem;
  background: var(--white);
  border: 1px solid rgba(45, 138, 58, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text-body);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  -webkit-tap-highlight-color: rgba(45, 138, 58, 0.12);
  touch-action: manipulation;
}
a.home-article-card:visited,
a.home-article-card:active {
  color: var(--text-body);
}
.home-article-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.home-article-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.38;
  color: var(--green-deep);
  overflow-wrap: anywhere;
  word-break: break-word;
}
a.home-article-card:visited .home-article-title,
a.home-article-card:active .home-article-title {
  color: var(--green-deep);
}
.home-article-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
a.home-article-card:visited .home-article-desc,
a.home-article-card:active .home-article-desc {
  color: var(--text-muted);
}
.home-article-cta {
  margin-top: auto;
  padding-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--green-main);
  border-top: 1px solid rgba(45, 138, 58, 0.14);
  align-self: stretch;
  letter-spacing: 0.01em;
}
a.home-article-card:hover .home-article-cta,
a.home-article-card:focus-visible .home-article-cta {
  color: var(--green-dark);
}
a.home-article-card:visited .home-article-cta,
a.home-article-card:active .home-article-cta {
  color: var(--green-main);
}
.home-article-cta-arrow {
  transition: transform 0.2s ease;
}
a.home-article-card:hover .home-article-cta-arrow,
a.home-article-card:focus-visible .home-article-cta-arrow {
  transform: translateX(3px);
}
.home-articles-footer {
  text-align: center;
  margin-top: 2rem;
  padding: 0 0.5rem;
}
.home-articles-hub-link {
  display: inline-block;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 138, 58, 0.35);
  -webkit-tap-highlight-color: rgba(45, 138, 58, 0.12);
}
.home-articles-hub-link:visited {
  color: var(--green-dark);
}
.home-articles-hub-link:hover {
  color: var(--green-main);
  border-bottom-color: var(--green-main);
}

@media (max-width: 640px) {
  .home-authority-section .section-header {
    margin-bottom: 1.35rem;
  }
  .home-authority-lead {
    padding: 0 0.15rem;
    font-size: 0.95rem;
  }
  .home-articles-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    max-width: 100%;
  }
  .home-article-card {
    padding: 0.95rem 1rem 1rem;
    border-radius: var(--radius-sm);
  }
  .home-article-title {
    font-size: 0.96rem;
    line-height: 1.35;
  }
  .home-article-desc {
    font-size: 0.78rem;
    line-height: 1.48;
    -webkit-line-clamp: 4;
  }
  .home-article-cta {
    font-size: 0.78rem;
    padding-top: 0.55rem;
  }
  .home-articles-footer {
    margin-top: 1.35rem;
  }
  .home-articles-hub-link {
    padding: 0.35rem 0.5rem;
    line-height: 1.4;
  }
}

.articles-hub-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.articles-hub-intro {
  max-width: 48rem;
  margin: 0 auto 1.25rem;
}
.articles-hub-intro-tools {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
}
.articles-hub-intro-tools a {
  color: var(--green-main);
  font-weight: 600;
}
.articles-hub-cta-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.articles-hub-more-links {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.55rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.articles-hub-amazon-row {
  margin-top: 0.75rem;
}
.articles-hub-backlinks {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}
.article-mid-cta {
  margin: 1.75rem 0;
  padding: 1rem 1.15rem;
  background: var(--green-ultra);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
}
.article-mid-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.article-mid-cta-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
}
/*
  Article CTA panel — the "Compare on Amazon" block at the end of every article.
  Was un-styled (just a section with raw <a> buttons that visually crammed
  together). Now it has its own card frame and the small "More:" buttons get
  proper flex-wrap with explicit gap so they never touch each other.
*/
.article-cta-panel {
  margin: 2.5rem 0 1.5rem;
  padding: 1.5rem 1.5rem 1.4rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--green-ultra) 100%);
  border: 1px solid var(--green-pale);
  border-left: 4px solid var(--green-main);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
/* B2B-flavored CTA panel for buyer-funnel articles. */
.article-cta-panel--b2b {
  background:
    radial-gradient(120% 180% at 100% 0%, rgba(238, 93, 59, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fff5f0 100%);
  border: 1px solid #f5b69f;
  border-left: 4px solid #ee5d3b;
}
.article-cta-panel--b2b h2 { color: #6e2310; }
.article-cta-panel--b2b .article-cta-lead { color: #5a2410; }
.article-cta-panel--b2b .article-cta-buttons {
  grid-template-columns: 1fr;
  max-width: 360px;
}
.article-cta-panel h2 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  color: var(--green-deep);
}
.article-cta-lead {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 44rem;
}
.article-cta-more {
  margin: 1.2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.55rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.article-cta-more-label {
  font-weight: 700;
  color: var(--green-deep);
  margin-right: 0.15rem;
  flex: 0 0 auto;
}
.article-cta-fineprint {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}
.article-cta-buttons {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.article-cta-buttons > * { width: 100%; }
@media (max-width: 720px) {
  .article-cta-buttons { grid-template-columns: 1fr; }
  .article-cta-panel { padding: 1.25rem 1.1rem; }
}

/* Repeat-visit strip — U.S.-focused shortcuts before Related articles */
.reader-return-strip {
  margin: 2.25rem 0 0;
  padding: 1.35rem 1.4rem 1.25rem;
  background: linear-gradient(135deg, rgba(45, 138, 58, 0.07) 0%, var(--green-ultra) 50%, #fafdff 100%);
  border: 1px solid var(--green-pale);
  border-left: 4px solid var(--green-main);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.reader-return-strip__title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
  color: var(--green-deep);
}
.reader-return-strip__lede {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--text-body);
  max-width: 42rem;
}
.reader-return-strip__list {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.72;
  font-size: 0.9rem;
  color: var(--text-body);
}
.reader-return-strip__list li {
  margin-bottom: 0.35rem;
}
.reader-return-strip__list a {
  font-weight: 600;
  color: var(--green-dark);
}

.buy-strip-note {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.buy-strip-note a {
  color: var(--green-dark);
  font-weight: 600;
}

/* Where-to-Buy section */
.buy-section {
  background: var(--green-ultra);
}

.buy-format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  gap: 0.75rem;
  max-width: 920px;
  margin: 0 auto 1.75rem;
  padding: 0 0.25rem;
}
.buy-format-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 4.75rem;
  padding: 0.75rem 0.6rem;
  background: var(--white);
  border: 2px solid rgba(45, 138, 58, 0.2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.86rem;
  text-align: center;
  line-height: 1.25;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: rgba(45, 138, 58, 0.12);
  touch-action: manipulation;
}
.buy-format-grid a:visited {
  color: var(--green-deep);
}
.buy-format-grid a:hover {
  border-color: var(--green-main);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.buy-format-grid .bf-icon {
  font-size: 1.45rem;
  line-height: 1;
}
.buy-format-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: -0.5rem auto 1.25rem;
  max-width: 36rem;
  line-height: 1.45;
}
@media (max-width: 480px) {
  .buy-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }
  .buy-format-grid a {
    min-height: 4.4rem;
    font-size: 0.8rem;
    padding: 0.65rem 0.45rem;
  }
}

.featured-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #FF9900, #ff6b00);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
}

.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-pale), var(--green-ultra));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
}

.product-body {
  padding: 1.5rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-main);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 1.2rem;
  font-size: 0.82rem;
  color: var(--text-body);
  flex: 1;
}
.product-features li {
  padding: 0.2rem 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.product-features li::before {
  content: '\2713';
  color: var(--green-main);
  font-weight: 700;
  flex-shrink: 0;
}

/* Amazon CTA Button (official Amazon orange/yellow style) */
.amazon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #FFD814 0%, #FFC107 100%);
  color: #0F1111;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid #FCD200;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: all 0.2s;
  width: 100%;
  text-align: center;
}
.amazon-btn:hover {
  background: linear-gradient(180deg, #F7CA00 0%, #F2BC10 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(213, 217, 217, 0.6);
}
.amazon-btn .amz-logo {
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  color: #131A22;
}

.amazon-btn-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: linear-gradient(180deg, #FFD814 0%, #FFC107 100%);
  color: #0F1111 !important;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid #FCD200;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.amazon-btn-small:hover {
  background: linear-gradient(180deg, #F7CA00 0%, #F2BC10 100%);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 4px 10px rgba(0, 0, 0, 0.10);
}
.amazon-btn-small:focus-visible {
  outline: 2px solid #131A22;
  outline-offset: 2px;
}

/* ==========================================================================
   IndiaMART (B2B / bulk) buttons.
   - Brand-distinct from Amazon yellow so users know this is the bulk channel.
   - Uses IndiaMART's signature warm orange/red.
   - Big "indiamart-btn" matches the visual weight of .amazon-btn so the two
     can sit side-by-side on a CTA row without one overpowering the other.
   ========================================================================== */
.indiamart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #ee5d3b 0%, #c8451f 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid #b53d1a;
  box-shadow: 0 2px 5px rgba(200, 69, 31, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  text-align: center;
}
.indiamart-btn:hover {
  background: linear-gradient(180deg, #f06b4c 0%, #b53d1a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(200, 69, 31, 0.32);
  color: #ffffff;
}
.indiamart-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(238, 93, 59, 0.4);
}
.indiamart-btn:visited { color: #ffffff; }

.indiamart-btn-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: linear-gradient(180deg, #ee5d3b 0%, #c8451f 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid #b53d1a;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 6px rgba(200, 69, 31, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.indiamart-btn-small:hover {
  background: linear-gradient(180deg, #f06b4c 0%, #b53d1a 100%);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 4px 10px rgba(200, 69, 31, 0.28);
}
.indiamart-btn-small:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(238, 93, 59, 0.4);
}

/* B2B "Bulk buyer strip" — eye-catching banner section that sits above
   the suppliers table on the home page and on relevant inner pages. */
.b2b-strip {
  margin: 2rem 0;
  padding: 1.5rem 1.6rem 1.4rem;
  background:
    radial-gradient(120% 180% at 100% 0%, rgba(238, 93, 59, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, #fff5f0 0%, #ffe9df 100%);
  border: 1px solid #f5b69f;
  border-left: 4px solid #ee5d3b;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.1rem 1.4rem;
  box-shadow: 0 4px 18px rgba(200, 69, 31, 0.08);
}
.b2b-strip-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #b53d1a;
  margin-bottom: 0.35rem;
}
.b2b-strip h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: #6e2310;
  font-weight: 700;
}
.b2b-strip p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #6e2310;
  max-width: 44rem;
}
.b2b-strip p strong { color: #4a1808; }
.b2b-strip-cta {
  min-width: 220px;
  align-self: center;
}
.b2b-strip-cta .indiamart-btn { width: 100%; }
.b2b-strip-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 220px;
  align-self: center;
}
.b2b-strip-cta-stack .alibaba-btn,
.b2b-strip-cta-stack .indiamart-btn {
  width: 100%;
}

/* Alibaba B2B CTA — distinct from IndiaMART terracotta */
.alibaba-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.62rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: var(--radius-sm, 6px);
  background: linear-gradient(180deg, #ff8c1a 0%, #ff6a00 55%, #e65c00 100%);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 8px rgba(230, 92, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.alibaba-btn:hover {
  filter: brightness(1.04);
  box-shadow: 0 4px 14px rgba(230, 92, 0, 0.35);
}
.alibaba-btn:focus-visible {
  outline: 2px solid #ff9500;
  outline-offset: 2px;
}
.alibaba-btn:visited {
  color: #fff !important;
}
.alibaba-btn-small {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 4px;
  background: #ff6a00;
}
.alibaba-btn-small:hover {
  filter: brightness(1.06);
}
.alibaba-btn-small:focus-visible {
  outline: 2px solid #ff9500;
  outline-offset: 2px;
}

/* Text-first Alibaba shortcuts (value content; partner links in-line) */
.alibaba-topic-nav-wrap {
  padding: 2rem 0 2.25rem;
  background: linear-gradient(180deg, rgba(254, 248, 242, 0.85) 0%, rgba(255, 255, 255, 0.45) 100%);
  border-top: 1px solid rgba(181, 61, 26, 0.08);
  border-bottom: 1px solid rgba(181, 61, 26, 0.08);
}
.alibaba-topic-nav__h {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  color: var(--green-deep);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.alibaba-topic-nav__lede {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 48rem;
}
.alibaba-topic-nav {
  margin: 0;
  padding: 0.85rem 1rem 0.95rem;
  background: #fff;
  border: 1px solid rgba(46, 125, 50, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.alibaba-topic-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem 1.25rem;
}
@media (min-width: 640px) {
  .alibaba-topic-nav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.alibaba-topic-nav a {
  color: #b53d1a;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.alibaba-topic-nav a:hover {
  color: #8a2f12;
}
.alibaba-topic-nav__foot {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.b2b-strip-disclosure {
  grid-column: 1 / -1;
  font-size: 0.74rem;
  color: #8a4a3a;
  margin: 0;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(181, 61, 26, 0.25);
}
@media (max-width: 720px) {
  .b2b-strip {
    grid-template-columns: 1fr;
    padding: 1.25rem 1.1rem;
  }
  .b2b-strip-cta { min-width: 0; }
}

.product-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.7rem;
  line-height: 1.5;
}

.product-meta a {
  color: var(--text-muted);
  text-decoration: underline;
}

.mobile-menu {
  position: fixed;
  top: var(--nav-offset);
  left: 0;
  right: 0;
  max-height: min(70vh, calc(100dvh - var(--nav-offset)));
  overflow-y: auto;
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--green-pale);
  z-index: 1000;
  box-shadow: var(--shadow-md);
  flex-direction: column;
}
.mobile-menu[hidden] {
  display: none !important;
}
.mobile-menu:not([hidden]) {
  display: flex;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  padding-left: max(var(--container-padding), env(safe-area-inset-left, 0px));
  padding-right: max(var(--container-padding), env(safe-area-inset-right, 0px));
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.mobile-menu a {
  display: block;
  padding: 0.65rem 0.25rem;
  color: var(--text-body);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--green-pale);
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--green-main);
}
.mobile-menu a.mobile-menu-buy {
  margin: 0.4rem 0 0.5rem;
  padding: 0.8rem 1rem;
  text-align: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: #fff !important;
  border-bottom: none;
  font-size: 1rem;
  font-weight: 700;
}
.mobile-menu a.mobile-menu-buy:hover,
.mobile-menu a.mobile-menu-buy:focus-visible {
  color: #fff !important;
  filter: brightness(1.06);
}
.nav-mobile-backdrop {
  position: fixed;
  inset: var(--nav-offset) 0 0 0;
  z-index: 999;
  background: rgba(15, 40, 22, 0.45);
  backdrop-filter: blur(2px);
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-backdrop[hidden] {
  display: none !important;
}
body.has-mobile-nav {
  overflow: hidden;
  touch-action: none;
}

/* Inner pages (multi-page site) */
.breadcrumb-nav {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: calc(var(--nav-offset) + 1.25rem) 0 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: max(var(--container-padding), env(safe-area-inset-left, 0px));
  padding-right: max(var(--container-padding), env(safe-area-inset-right, 0px));
}
.breadcrumb-nav a {
  color: var(--green-main);
  text-decoration: none;
}
.breadcrumb-nav a:hover {
  text-decoration: underline;
}
.page-hero {
  padding: 1rem 0 2.5rem;
  background: linear-gradient(135deg, var(--green-ultra) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--green-pale);
}
.page-hero h1 {
  margin-bottom: 0.75rem;
}
.page-hero .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 720px;
}
.page-content {
  padding: 2.5rem 0 4rem;
}
.page-content .container {
  max-width: 900px;
}
.page-content.wide .container {
  max-width: var(--container);
}
.legal-page .container {
  max-width: 800px;
}
.legal-page h2 {
  margin-top: 2rem;
}
.legal-page h3 {
  margin-top: 1.25rem;
}
.product-grid-mini {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.compare-use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.use-case-card {
  background: var(--green-ultra);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  font-size: 0.9rem;
}
.use-case-card strong {
  color: var(--green-dark);
  display: block;
  margin-bottom: 0.35rem;
}

.amazon-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .amazon-compare-row {
    grid-template-columns: 1fr;
  }
}

/* Long-form articles */
.article-prose {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--text-body);
}
.article-prose h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--green-dark);
}
.article-prose h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--green-dark);
}
.article-prose p {
  margin: 0 0 1rem;
}
.article-prose .article-figure {
  margin: 1.75rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--green-pale);
  background: rgba(255, 255, 255, 0.75);
  width: 100%;
  max-width: 100%;
}
.article-prose .article-figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, rgba(248, 252, 248, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}
.article-prose .article-figure img[src$=".gif"] {
  /* Animated GIFs: show full frame, no cropping */
  background: var(--green-ultra);
}
.article-prose .article-figure .article-figure-caption {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted, #4a5560);
  line-height: 1.45;
  border-top: 1px solid var(--green-pale);
}
.article-prose ul,
.article-prose ol {
  margin: 1rem 0 1.25rem;
  padding-left: 1.35rem;
}
.article-prose li {
  margin-bottom: 0.45rem;
}
.article-prose .table-responsive {
  margin: 1.25rem 0;
}
.article-prose table {
  width: 100%;
  margin: 0;
  font-size: 0.92rem;
  border-collapse: collapse;
  background: var(--white);
}
.article-prose .table-responsive table {
  min-width: 100%;
}
.article-prose th,
.article-prose td {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--green-pale);
  vertical-align: top;
}
.article-prose th {
  background: var(--green-ultra);
  color: var(--green-dark);
  font-weight: 600;
  text-align: left;
}
@media (max-width: 640px) {
  .article-prose th,
  .article-prose td {
    padding: 0.45rem 0.4rem;
    font-size: 0.85rem;
  }
}
.related-articles-list {
  columns: 1;
  padding-left: 1.2rem;
}
@media (min-width: 640px) {
  .related-articles-list {
    columns: 2;
    column-gap: 2rem;
  }
}
.articles-hub-toolbar {
  position: relative;
  margin-top: 1.5rem;
  padding: 1.1rem 1.15rem 1.15rem;
  background: linear-gradient(165deg, rgba(248, 252, 248, 1) 0%, var(--white) 60%);
  border: 1px solid rgba(45, 138, 58, 0.18);
  border-radius: var(--radius-sm);
}
.articles-hub-search {
  width: 100%;
  max-width: 28rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.95rem;
  border: 1px solid rgba(45, 138, 58, 0.25);
  border-radius: 8px;
  margin-bottom: 0.85rem;
  font-family: inherit;
}
.articles-hub-search:focus {
  outline: 2px solid var(--green-main);
  outline-offset: 1px;
}
.articles-hub-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
.articles-hub-chip {
  appearance: none;
  border: 1px solid rgba(45, 138, 58, 0.3);
  background: var(--white);
  color: var(--green-deep);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.articles-hub-chip:hover {
  border-color: var(--green-main);
  background: rgba(248, 252, 248, 1);
}
.articles-hub-chip.is-active {
  background: var(--green-main);
  border-color: var(--green-main);
  color: #fff;
}
.articles-hub-toolbar-hint {
  margin: 0.75rem 0 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.articles-hub-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.articles-hub-list li.is-filter-hidden {
  display: none !important;
}

/* /search.html — client-side index */
.site-search-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
  align-items: center;
}
.site-search-quicklink {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--green-pale);
  background: var(--green-ultra);
  color: var(--green-deep) !important;
}
.site-search-quicklink:hover {
  border-color: var(--green-main);
  background: #fff;
}

.site-search-panel {
  margin: 1.25rem 0 1rem;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid rgba(45, 138, 58, 0.18);
  border-radius: var(--radius-sm);
}
.site-search-input {
  width: 100%;
  max-width: 32rem;
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  border: 1px solid rgba(45, 138, 58, 0.28);
  border-radius: 10px;
  font-family: inherit;
}
.site-search-input:focus {
  outline: 2px solid var(--green-main);
  outline-offset: 1px;
}
.site-search-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--green-deep);
}
.site-search-hint {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 40rem;
}
#siteSearchStatus {
  margin: 1rem 0 0.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.site-search-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-search-hit {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(45, 138, 58, 0.12);
}
.site-search-hit:last-child {
  border-bottom: none;
}
.site-search-hit a {
  text-decoration: none;
  color: var(--green-deep);
}
.site-search-hit a:hover .site-search-hit-title {
  text-decoration: underline;
}
.site-search-hit-title {
  font-weight: 700;
  font-size: 1rem;
  display: block;
}
.site-search-hit-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.site-search-hit-desc {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-body);
}
.site-search-empty {
  margin: 1rem 0;
  color: var(--text-muted);
}

.articles-hub-grid {
  margin-top: 1.5rem;
}
.articles-hub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem 1.75rem;
}
@media (min-width: 900px) {
  .articles-hub-list {
    grid-template-columns: 1fr 1fr;
  }
}
.articles-hub-list li {
  padding: 0.85rem 1rem;
  break-inside: avoid;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  background: var(--white);
  border: 1px solid rgba(45, 138, 58, 0.12);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-main);
}
.articles-hub-list li a strong {
  display: inline;
  overflow-wrap: anywhere;
}
.articles-hub-list .articles-hub-desc {
  display: block;
  margin-top: 0.25rem;
  max-width: 100%;
}

/* Topic clusters (hubs + inline article navigation) */
.topic-cluster-nav--inline {
  margin: 1.75rem 0;
  padding: 1.1rem 1.25rem;
  background: var(--accent-ultra);
  border: 1px solid color-mix(in srgb, var(--green-main) 16%, transparent);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--green-main);
}
.topic-cluster-nav--inline h2 {
  font-size: 1.12rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--hero-ink, var(--green-deep));
}
.topic-cluster-lead {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
}
.topic-cluster-list {
  margin: 0;
  padding-left: 1.2rem;
}
.topic-cluster-list li {
  margin: 0.38rem 0;
  line-height: 1.45;
}
.topic-silos {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
@media (min-width: 820px) {
  .topic-silos {
    grid-template-columns: 1fr 1fr;
  }
}
.topic-silo-card {
  padding: 1.05rem 1.15rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 138, 58, 0.12);
  border-left: 3px solid var(--green-main);
}
.topic-silo-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--green-deep);
}
.topic-silo-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-body);
}
.money-pages-strip {
  margin: 1.75rem 0 2rem;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(135deg, var(--accent-soft, #fdf3d8) 0%, var(--white) 100%);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--radius-sm);
}
.money-pages-strip h2 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}
.money-pages-strip ul {
  margin: 0;
  padding-left: 1.15rem;
}
.money-pages-strip li {
  margin: 0.35rem 0;
}
.money-cta-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .money-cta-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.money-cta-card {
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(13, 110, 79, 0.15);
}
.money-cta-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

/* ============================================
   v16 REFRESH — section-themed inner pages
   Each generated page (article / product / brand / compare / legal / about)
   gets its own accent colour set, hero gradient and ornament via
   body[data-section="..."]. Nothing here touches the home page.
============================================ */

body[data-section] {
  --accent: var(--green-main);
  --accent-dark: var(--green-dark);
  --accent-soft: var(--green-pale);
  --accent-ultra: var(--green-ultra);
  --hero-from: #eef7f0;
  --hero-to: #ffffff;
  --hero-ink: var(--green-deep);
}
body[data-section="article"] {
  --accent: #b8860b;
  --accent-dark: #8a5a06;
  --accent-soft: #fdf3d8;
  --accent-ultra: #fffaef;
  --hero-from: #fffaef;
  --hero-to: #f7fbf4;
  --hero-ink: #2a1f05;
}
body[data-section="product"] {
  --accent: #2d8a3a;
  --accent-dark: #1a5f2a;
  --accent-soft: #e3f3e6;
  --accent-ultra: #f3faf4;
  --hero-from: #e8f5ec;
  --hero-to: #ffffff;
  --hero-ink: #0a2e15;
}
body[data-section="brand"] {
  --accent: #6a4e9b;
  --accent-dark: #4a3370;
  --accent-soft: #efe8fb;
  --accent-ultra: #f8f4ff;
  --hero-from: #f4eefe;
  --hero-to: #fbfbff;
  --hero-ink: #231640;
}
body[data-section="compare"] {
  --accent: #0d6e8a;
  --accent-dark: #07506a;
  --accent-soft: #dff1f6;
  --accent-ultra: #f2fafd;
  --hero-from: #e6f3f7;
  --hero-to: #fafdff;
  --hero-ink: #072d3a;
}
body[data-section="legal"] {
  --accent: #4a5a6a;
  --accent-dark: #2f3a46;
  --accent-soft: #e8ecf1;
  --accent-ultra: #f6f8fa;
  --hero-from: #f2f5f8;
  --hero-to: #ffffff;
  --hero-ink: #1b242d;
}
body[data-section="about"] {
  --accent: #c46a2a;
  --accent-dark: #8a4415;
  --accent-soft: #fbe9d7;
  --accent-ultra: #fff6ec;
  --hero-from: #fff1e1;
  --hero-to: #fffaf3;
  --hero-ink: #3a1d05;
}
body[data-section="money"],
body[data-section="topics"] {
  --accent: #0d6e4f;
  --accent-dark: #084d37;
  --accent-soft: #d9f2ea;
  --accent-ultra: #f0faf6;
  --hero-from: #e6f7f0;
  --hero-to: #ffffff;
  --hero-ink: #0a2e1f;
}

/* Pill-style breadcrumb bar (sits just below the sticky nav) */
.breadcrumb-nav--pill {
  padding: calc(var(--nav-offset) + 1rem) 0 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: max(var(--container-padding), env(safe-area-inset-left, 0px));
  padding-right: max(var(--container-padding), env(safe-area-inset-right, 0px));
}
.breadcrumb-nav--pill .breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb-nav--pill .crumb {
  display: inline-flex;
  align-items: center;
}
.breadcrumb-nav--pill .crumb a {
  color: var(--accent-dark);
  text-decoration: none;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.breadcrumb-nav--pill .crumb a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.breadcrumb-nav--pill .crumb--current {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: transparent;
  color: var(--hero-ink);
  font-weight: 600;
}
.breadcrumb-nav--pill .crumb-sep {
  color: color-mix(in srgb, var(--accent) 45%, transparent);
  font-weight: 600;
}

/*
  Upgraded page-hero: full-bleed gradient banner.
  - 100vw width broken out of any wrapping container so the gradient touches the
    left and right edges of the viewport on every page.
  - Lighter top, deeper accent at the bottom edge with a soft separator line.
  - Eyebrow + h1 + lead inside .container keep reading width comfortable.
*/
body[data-section] .page-hero {
  position: relative;
  overflow: hidden;
  padding: 2.4rem 0 3.4rem;
  margin: 0;
  width: 100%;
  background:
    radial-gradient(80% 140% at 100% 0%, color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 60%),
    radial-gradient(60% 110% at 0% 100%, color-mix(in srgb, var(--accent) 9%, transparent) 0%, transparent 60%),
    linear-gradient(140deg, var(--hero-from) 0%, var(--hero-to) 100%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  isolation: isolate;
}
/* True edge-to-edge: even if a parent has padding/margin, the hero breaks out
   to the full viewport width with a calc-shift technique. */
body[data-section] main > .page-hero,
body[data-section] .page-shell > .page-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
body[data-section] .page-hero-ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 22%, color-mix(in srgb, var(--accent) 18%, transparent) 0, transparent 45%),
    radial-gradient(circle at 82% 78%, color-mix(in srgb, var(--accent) 12%, transparent) 0, transparent 50%);
  opacity: 0.95;
  z-index: -1;
}
body[data-section] .page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--accent) 30%,
    var(--accent-dark) 50%,
    var(--accent) 70%,
    transparent 100%);
  opacity: 0.55;
  z-index: 1;
}
body[data-section] .page-hero-inner {
  position: relative;
  z-index: 1;
}
body[data-section] .page-hero h1 {
  color: var(--hero-ink);
  letter-spacing: -0.015em;
  margin-top: 0.85rem;
}
body[data-section] .page-hero .lead {
  color: color-mix(in srgb, var(--hero-ink) 72%, #ffffff 0%);
  max-width: 760px;
  font-size: 1.08rem;
  margin-top: 0.6rem;
}

/* Eyebrow pill above H1 */
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, #ffffff);
  color: var(--accent-dark);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
.page-eyebrow svg {
  flex: none;
  color: var(--accent-dark);
}

/* Hero meta row (published / updated / author / reading time) */
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1.1rem;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--hero-ink) 70%, #ffffff 0%);
}
.page-meta-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  white-space: nowrap;
}
.page-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  font-weight: 700;
}
.page-meta-sep {
  color: color-mix(in srgb, var(--accent) 50%, transparent);
}

/* Stat chips inside hero (used for the Articles and Products hubs) */
.page-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.page-hero-stat {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.55rem 0.95rem;
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 4px 12px color-mix(in srgb, var(--accent) 8%, transparent);
  min-width: 90px;
}
.page-hero-stat .phs-value {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--accent-dark);
  line-height: 1;
}
.page-hero-stat .phs-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Section-specific subtle signatures (keeps sections distinct at a glance) */
body[data-section="article"] .page-hero-ornament {
  background-image:
    radial-gradient(circle at 15% 20%, rgba(212, 165, 58, 0.22) 0, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(184, 134, 11, 0.12) 0, transparent 50%),
    repeating-linear-gradient(-35deg, rgba(184, 134, 11, 0.05) 0 2px, transparent 2px 22px);
}
body[data-section="product"] .page-hero-ornament {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(45, 138, 58, 0.18) 0, transparent 42%),
    radial-gradient(circle at 90% 85%, rgba(76, 174, 90, 0.12) 0, transparent 50%);
}
body[data-section="brand"] .page-hero-ornament {
  background-image:
    radial-gradient(circle at 20% 25%, rgba(106, 78, 155, 0.20) 0, transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(106, 78, 155, 0.10) 0, transparent 55%),
    repeating-linear-gradient(45deg, rgba(106, 78, 155, 0.04) 0 2px, transparent 2px 28px);
}
body[data-section="compare"] .page-hero-ornament {
  background-image:
    linear-gradient(90deg, rgba(13, 110, 138, 0.08) 0 1px, transparent 1px 50%),
    radial-gradient(circle at 15% 20%, rgba(13, 110, 138, 0.15) 0, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(13, 110, 138, 0.10) 0, transparent 55%);
  background-size: 28px 28px, 100% 100%, 100% 100%;
}
body[data-section="legal"] .page-hero-ornament {
  background-image:
    repeating-linear-gradient(0deg, rgba(74, 90, 106, 0.05) 0 1px, transparent 1px 26px),
    radial-gradient(circle at 20% 30%, rgba(74, 90, 106, 0.10) 0, transparent 50%);
}
body[data-section="about"] .page-hero-ornament {
  background-image:
    radial-gradient(circle at 20% 25%, rgba(196, 106, 42, 0.20) 0, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(196, 106, 42, 0.10) 0, transparent 50%);
}

/* Make article h1 feel like a magazine cover without changing size class */
body[data-section="article"] .page-hero h1 {
  font-weight: 800;
  line-height: 1.12;
}
body[data-section="legal"] .page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
body[data-section="legal"] .page-hero {
  padding: 1.25rem 0 2rem;
}

/* Content cards accent — card / article body themed per-section */
body[data-section] .card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
body[data-section] a.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
}
body[data-section] .articles-hub-list li {
  border-left-color: var(--accent);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
body[data-section] .articles-hub-list li:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 15%, transparent);
}

/* Better article long-form prose (drop-cap + refined hr + blockquote) */
body[data-section="article"] .article-prose > p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  line-height: 0.9;
  float: left;
  padding: 0.45rem 0.55rem 0 0;
  color: var(--accent-dark);
  font-weight: 700;
}
body[data-section="article"] .article-prose blockquote {
  margin: 1.5rem 0;
  padding: 0.9rem 1.2rem;
  border-left: 4px solid var(--accent);
  background: var(--accent-ultra);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--hero-ink);
  font-style: italic;
}
body[data-section="article"] .article-prose hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 50%, transparent), transparent);
  margin: 2rem auto;
  max-width: 220px;
}
body[data-section="article"] .article-prose h2 {
  color: var(--accent-dark);
  position: relative;
  padding-left: 0.9rem;
}
body[data-section="article"] .article-prose h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.35em;
  width: 3px;
  background: var(--accent);
  border-radius: 3px;
}
body[data-section="article"] .article-prose h3 {
  color: var(--accent-dark);
}
body[data-section="article"] .article-prose ul li::marker {
  color: var(--accent);
}

/* Legal pages: more paper-white with conservative accent */
body[data-section="legal"] .page-content {
  background: #fcfcfd;
}
body[data-section="legal"] .page-content .container {
  max-width: 780px;
  padding-top: 1rem;
}

/* Brand pages: accent chip label over h1 inside content */
body[data-section="brand"] .page-content h2,
body[data-section="brand"] .page-content h3 {
  color: var(--accent-dark);
}

/* Compare pages: stronger table framing */
body[data-section="compare"] .compare-table {
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: var(--radius);
  overflow: hidden;
}
body[data-section="compare"] .compare-table th {
  background: var(--accent-soft);
  color: var(--accent-dark);
}
body[data-section="compare"] .compare-table tbody tr:nth-child(even) td {
  background: var(--accent-ultra);
}

/* Product pages: featured CTA block gets accent rail */
body[data-section="product"] .prime-buy-block {
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  background: linear-gradient(180deg, var(--accent-ultra) 0%, #ffffff 100%);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin: 1.25rem 0 2rem;
  box-shadow: var(--shadow-sm);
}
body[data-section="product"] .prime-buy-block h3 {
  margin-top: 0;
}

/* About page content — distinct card style */
body[data-section="about"] .about-founder-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-start;
}
body[data-section="about"] .about-founder-photo {
  width: min(220px, 38vw);
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
}
body[data-section="about"] .about-founder-body {
  flex: 1 1 240px;
  min-width: 0;
}
body[data-section="about"] .editorial-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
body[data-section="about"] .em-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
}
body[data-section="about"] .em-value {
  font-size: 0.92rem;
  color: var(--hero-ink);
  margin-top: 0.2rem;
}

/* Improved link focus rings tied to section accent */
body[data-section] a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Print styles — make articles look proper when printed or saved as PDF */
@media print {
  .navbar,
  .mobile-menu,
  .nav-mobile-backdrop,
  .scroll-top,
  .page-tools-dock,
  .guide-assist,
  .footer-pro,
  .amazon-btn,
  .amazon-btn-small,
  .affiliate-disclosure,
  .article-mid-cta,
  .article-cta-panel,
  .related-articles {
    display: none !important;
  }
  body[data-section] .page-hero {
    padding: 0.5rem 0 1rem;
    background: none;
    border: none;
  }
  body[data-section] .page-hero-ornament,
  body[data-section] .page-hero::after {
    display: none;
  }
  body {
    color: #111;
    background: #fff;
  }
  a {
    color: #111;
    text-decoration: underline;
  }
  .page-content {
    padding: 0;
  }
}

/* Mobile spacing tune-up for the upgraded hero */
@media (max-width: 640px) {
  body[data-section] .page-hero {
    padding: 1.5rem 0 2rem;
  }
  .page-hero-stat {
    padding: 0.5rem 0.75rem;
    min-width: 84px;
  }
  .page-hero-stat .phs-value {
    font-size: 1.2rem;
  }
  .breadcrumb-nav--pill .breadcrumb-list {
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   Evergreen / SEO-polish layer (added 2026)
   - Smoother card transitions site-wide.
   - Accessible focus rings tuned for new MOQ + price-source blocks.
   - Hide any leftover "Last updated" stamps that survive in cached pages.
   - Slightly tighter mobile typography for the long-form home guide.
   ========================================================================== */

/* Hide stale "Last updated" footer text if any cached HTML still ships it.
   We replaced it with .footer-evergreen (label-only, no date). */
.last-updated { display: none !important; }
.footer-evergreen {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* Hide the visible date strip in legacy article heroes that still include it.
   The new build no longer emits it; this is purely a cache-safety net. */
.page-meta-item[data-kind="date"],
time[itemprop="datePublished"]:not([data-show]),
time[itemprop="dateModified"]:not([data-show]) {
  display: none;
}

/* Subtle hover lift across content cards for a smoother feel. */
.card,
.product-card,
.brand-card,
.dest-card,
.stat-card,
.faq-item,
.glossary-item,
.insight-card,
.use-case-card,
.home-article-card,
.home-articles-grid .home-article-item {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.25s ease;
}
.card:hover,
.product-card:hover,
.brand-card:hover,
.dest-card:hover,
.faq-item:hover,
.glossary-item:hover,
.insight-card:hover,
.use-case-card:hover,
.home-article-card:hover {
  transform: translateY(-3px);
}

/* Image hover zoom-in only for hero product photos (smoother brand feel). */
.hero-image .hero-visual-photo {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.hero-image:hover .hero-visual-photo {
  transform: scale(1.02);
}

/* Tighter mobile reading rhythm + safe-area padding for notched devices. */
@media (max-width: 640px) {
  :root {
    --container-padding: 1.1rem;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
    line-height: 1.2;
  }
  .moq-grid,
  .price-sources-grid {
    gap: 0.75rem;
  }
  .moq-card { padding: 1rem; }
  .margin-card { padding: 1.15rem; }
  body { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
}

/* Reduce motion: keep the new transitions extremely subtle when requested. */
@media (prefers-reduced-motion: reduce) {
  .card:hover,
  .product-card:hover,
  .brand-card:hover,
  .dest-card:hover,
  .faq-item:hover,
  .glossary-item:hover,
  .insight-card:hover,
  .use-case-card:hover,
  .home-article-card:hover,
  .home-visual-card:hover,
  .home-start-card:hover,
  .moq-card:hover,
  .hero-image:hover .hero-visual-photo {
    transform: none !important;
  }
}

/* Home: visual shortcuts to popular article topics */
.home-visual-topics {
  padding: 2.75rem 0;
  background: linear-gradient(180deg, rgba(248, 252, 248, 1) 0%, var(--white, #fff) 55%);
  border-top: 1px solid var(--green-pale);
  border-bottom: 1px solid var(--green-pale);
}
.home-visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.home-visual-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(45, 138, 58, 0.18);
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, rgba(244, 250, 245, 1) 0%, var(--white, #fff) 45%);
  box-shadow: 0 2px 8px rgba(45, 138, 58, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.home-visual-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(45, 138, 58, 0.12);
}
.home-visual-card img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  display: block;
  background: rgba(248, 252, 248, 0.85);
}
.home-visual-card span {
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-dark, #1a5c2e);
}

/* Home: fold-level visitor lanes (before long orientation copy) */
.visitor-path-strip {
  padding: 2rem 0 2.25rem;
  background: linear-gradient(180deg, rgba(248, 252, 248, 1) 0%, var(--white, #fff) 100%);
  border-bottom: 1px solid var(--green-pale);
}
.visitor-path-strip-heading {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  color: var(--green-deep, #1a5c2e);
}
.visitor-path-strip-lede {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted, #5a6b5f);
  max-width: 46rem;
}
.visitor-path-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
}
.visitor-path-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm, 10px);
  border: 1px solid rgba(45, 138, 58, 0.22);
  background: var(--white, #fff);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(45, 138, 58, 0.07);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.visitor-path-card:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 138, 58, 0.4);
  box-shadow: 0 10px 28px rgba(45, 138, 58, 0.12);
}
.visitor-path-label {
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-main, #2d8a3a);
}
.visitor-path-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-body, #3d4f42);
}
.visitor-path-footnote {
  margin: 1.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted, #5a6b5f);
  max-width: 48rem;
}
.visitor-path-footnote a {
  color: var(--green-main, #2d8a3a);
  font-weight: 600;
}

/* Home: orientation / wayfinding (who this site is for) */
.home-start-here {
  padding: 2.75rem 0;
  background: var(--white, #fff);
  border-bottom: 1px solid var(--green-pale);
}
.home-start-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.home-start-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 1.35rem 1.35rem 1.1rem;
  border: 1px solid rgba(45, 138, 58, 0.2);
  text-decoration: none;
  color: inherit;
  background: linear-gradient(165deg, rgba(248, 252, 248, 1) 0%, var(--white, #fff) 55%);
  box-shadow: 0 2px 10px rgba(45, 138, 58, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.home-start-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 138, 58, 0.12);
  border-color: rgba(45, 138, 58, 0.35);
}
.home-start-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  color: var(--green-deep, #1a5c2e);
  line-height: 1.35;
}
.home-start-card p {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted, #5a6b5f);
}
.home-start-cta {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-main, #2d8a3a);
}

.pill.pill--start {
  border: 2px solid rgba(45, 138, 58, 0.45);
  background: rgba(248, 252, 248, 1);
  color: var(--green-deep, #1a5c2e);
  font-weight: 600;
}
.pill.pill--start:hover {
  background: rgba(45, 138, 58, 0.12);
  border-color: var(--green-main, #2d8a3a);
}

.footer-sub {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
.footer-quick-paths {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-quick-paths li {
  margin: 0.35rem 0;
  padding: 0;
  line-height: 1.4;
}
.footer-quick-paths a {
  font-size: 0.9rem;
}

/* Trust: supplier credential types + coloured cert tags */
.trust-credentials-panel {
  margin: 1.5rem 0 1.5rem;
  padding: 1.5rem 1.35rem 1.4rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), var(--green-ultra));
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.trust-credentials-heading {
  font-size: 1.15rem;
  color: var(--green-deep);
  margin: 0 0 0.65rem;
  font-family: "Playfair Display", Georgia, serif;
}
.trust-credentials-lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 58rem;
}
.trust-credentials-grid {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 1rem;
}
.trust-cred-card {
  margin: 0;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(45, 138, 58, 0.14);
  border-left-width: 4px;
  border-left-style: solid;
}
.trust-cred-card--fssai { border-left-color: #c46a2d; }
.trust-cred-card--gmp { border-left-color: #2874a6; }
.trust-cred-card--organic { border-left-color: var(--green-main); }
.trust-cred-card--fsms { border-left-color: #6c3483; }
.trust-cred-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-deep);
  margin-bottom: 0.35rem;
}
.trust-cred-desc {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cert-tag.cert-tag--fssai {
  background: #fff8f3;
  color: #7a3e12;
  border: 1px solid #e8c9a8;
}
.cert-tag.cert-tag--gmp {
  background: #f0f8ff;
  color: #1b4f72;
  border: 1px solid #aed6f1;
}
.cert-tag.cert-tag--organic {
  background: #eaf7ee;
  color: #0e5c28;
  border: 1px solid #a3d9b1;
}
.cert-tag.cert-tag--fsms {
  background: #f8f0fb;
  color: #512e5f;
  border: 1px solid #d7bde2;
}

/* Export chain: lightweight infographic (no raster image) */
.export-flow-panel {
  margin-top: 2.75rem;
  padding: 1.85rem 1.25rem 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 246, 0.95));
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-lg);
}
.section-header--compact {
  margin-bottom: 0.25rem;
}
.section-header--compact .section-intro {
  max-width: 52rem;
}
.export-flow-track {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem 0.15rem;
}
.export-flow-step {
  flex: 1 1 140px;
  max-width: 220px;
  margin: 0;
  padding: 1rem 0.9rem;
  background: #fff;
  border: 1px solid rgba(45, 138, 58, 0.18);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(45, 138, 58, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.export-flow-step strong {
  font-size: 0.92rem;
  color: var(--green-deep);
  line-height: 1.3;
}
.export-flow-step > span:last-child {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.export-flow-n {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--green-main);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.export-flow-chevron {
  flex: 0 0 auto;
  width: 1.35rem;
  align-self: center;
  position: relative;
  min-height: 3rem;
}
.export-flow-chevron::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--green-main);
  border-bottom: 2px solid var(--green-main);
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0.85;
}

@media (max-width: 720px) {
  .export-flow-step {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .export-flow-chevron {
    flex: 0 0 100%;
    width: 100%;
    min-height: 1.25rem;
  }
  .export-flow-chevron::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .export-flow-chevron::before {
    opacity: 1;
  }
}

/* --- Decision hub: matrix, B2B bridge, market note, purity infographic --- */
.decision-hub-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--green-ultra) 0%, #fff 55%);
  border-top: 1px solid var(--green-pale);
  border-bottom: 1px solid var(--green-pale);
}
.decision-hub-section--subpage {
  padding: 2rem 0 2.5rem;
}
.product-matrix-wrap {
  margin-top: 2rem;
}
.product-matrix-wrap h3 {
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", Georgia, serif;
}
.product-matrix-note {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 50rem;
}
.product-matrix-table td {
  vertical-align: middle;
}
.product-matrix-table .matrix-guide {
  font-size: 0.8rem;
  font-weight: 600;
}
.amazon-btn-table {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 100px;
  background: linear-gradient(135deg, #ff9900 0%, #e47911 100%);
  color: #111 !important;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(228, 121, 17, 0.25);
  white-space: nowrap;
}
.amazon-btn-table:hover {
  filter: brightness(1.05);
  color: #111 !important;
}

.decision-hub-section .product-matrix-wrap .table-wrapper {
  overscroll-behavior-x: contain;
}

@media (max-width: 720px) {
  .product-matrix-table {
    font-size: 0.8rem;
  }
  .product-matrix-table th,
  .product-matrix-table td {
    padding: 0.5rem 0.4rem;
    vertical-align: top;
  }
  .product-matrix-table .amazon-btn-table {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.amazon-tag,
.b2b-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 0.35rem;
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
}
.amazon-tag {
  background: rgba(255, 153, 0, 0.2);
  color: #7a4200;
}
.b2b-tag {
  background: rgba(200, 69, 31, 0.15);
  color: #8b2c12;
}

.bulk-procurement-bridge {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(248, 237, 230, 0.95), #fff);
  border: 1px solid rgba(200, 69, 31, 0.22);
  box-shadow: var(--shadow-sm);
}
.bulk-procurement-bridge h3 {
  font-size: 1.25rem;
  color: var(--green-deep);
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
}
.bulk-procurement-bridge p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 52rem;
}
.bulk-bridge-note {
  margin: 1rem 0 0 !important;
  font-size: 0.85rem;
  color: var(--text-muted) !important;
}

.decision-hub-split {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.market-pulse-card,
.purity-check-card {
  background: #fff;
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 2px 12px rgba(45, 138, 58, 0.06);
}
.market-pulse-card h3,
.purity-check-card h3 {
  font-size: 1.05rem;
  color: var(--green-deep);
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
}
.market-pulse-card p {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body);
}
.market-pulse-disclaimer {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}
.purity-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.purity-steps li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--green-pale);
}
.purity-steps li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.purity-step-n {
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purity-steps strong {
  flex: 1 1 100px;
  color: var(--green-dark);
  font-size: 0.95rem;
}
.purity-steps li > span:last-child {
  flex: 1 1 220px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.purity-more {
  margin: 1rem 0 0;
  font-size: 0.85rem;
}

.guide-assist-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 48px;
  padding: 0.65rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  background: linear-gradient(145deg, var(--green-main) 0%, #237d32 45%, var(--green-dark) 100%);
  color: #fff;
  box-shadow:
    0 4px 16px rgba(26, 95, 42, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.guide-assist-fab:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 22px rgba(26, 95, 42, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.14);
}

.guide-assist-fab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.guide-assist-fab--search {
  text-decoration: none;
  color: #fff !important;
}

.guide-assist-fab--search:hover {
  color: #fff !important;
}

.guide-assist-fab-icon {
  flex-shrink: 0;
}

.guide-assist-fab::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

/* Search FAB uses SVG only — suppress decorative dot (must beat .guide-assist-fab::before cascade). */
.guide-assist-fab.guide-assist-fab--search::before {
  content: none;
  display: none;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.guide-assist-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  right: auto;
  width: min(340px, calc(100vw - 1.5rem - env(safe-area-inset-left, 0px)));
  background: #fff;
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-lg);
}

.guide-assist-lead {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.guide-assist-link {
  display: block;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.45rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--green-pale);
  color: var(--green-deep) !important;
  background: var(--green-ultra);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.guide-assist-link:hover {
  border-color: var(--green-main);
  background: #fff;
}

.guide-assist-link--b2b {
  border-color: rgba(200, 69, 31, 0.25);
  background: rgba(248, 237, 230, 0.6);
}

.guide-assist-close {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--green-pale);
  background: #fff;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.guide-assist-close:hover {
  border-color: var(--green-main);
  color: var(--green-deep);
}

@media (prefers-reduced-motion: reduce) {
  .page-tools-dock {
    transition: none;
  }
  .guide-assist-fab {
    transition: none;
  }
  .guide-assist-fab:hover {
    transform: none;
  }
}

@media (max-width: 639px) {
  .guide-assist-fab {
    min-height: 44px;
    padding: 0.48rem 0.85rem;
    font-size: 0.74rem;
    gap: 0.28rem;
    box-shadow:
      0 3px 12px rgba(26, 95, 42, 0.38),
      0 1px 4px rgba(0, 0, 0, 0.1);
  }

  .guide-assist-panel {
    max-height: min(70vh, 26rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.8rem 0.9rem;
    bottom: calc(100% + 8px);
    width: min(320px, calc(100vw - 1.1rem - env(safe-area-inset-left, 0px)));
  }

  .guide-assist-lead {
    font-size: 0.76rem;
    margin-bottom: 0.65rem;
  }

  .guide-assist-link {
    padding: 0.52rem 0.6rem;
    font-size: 0.76rem;
    margin-bottom: 0.35rem;
  }
}

/* Footer tools column (unit converter) */
.footer-col--tools .unit-converter-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-light);
  margin-bottom: 0.45rem;
}
.unit-converter-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.unit-converter-input {
  flex: 1 1 80px;
  min-width: 0;
  padding: 0.45rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.85rem;
}
.unit-converter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.unit-converter-eq {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}
.unit-converter-hint {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
}

/* --- Printable purity checklist page --- */
.purity-checklist-print-area {
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
  max-width: 42rem;
}
.purity-checklist-print-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: var(--green-deep);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.purity-checklist-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}
.purity-checklist-steps {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.65;
  color: var(--text-body);
}
.purity-checklist-steps li {
  margin-bottom: 0.85rem;
}
.purity-checklist-foot {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media print {
  .page-tools-dock,
  .guide-assist,
  .navbar,
  .scroll-top {
    display: none !important;
  }
  #printChecklistBtn {
    display: none !important;
  }
  .purity-checklist-print-area {
    border: none;
    box-shadow: none;
    padding: 0;
    max-width: none;
  }
}
