/** Shopify CDN: Minification failed

Line 211:16 Expected identifier but found whitespace
Line 211:17 Unexpected "50%"

**/

/* ── Reset ──────────────────────────────────────────────────── */
.km-spb *,
.km-spb *::before,
.km-spb *::after { box-sizing: border-box; margin: 0; padding: 0; }
.km-spb img { display: block; max-width: 100%; }
.km-spb a   { color: inherit; text-decoration: none; }
/* ── Design tokens ──────────────────────────────────────────── */
.km-spb {
  --red:     #C52F30;
  --red-dark:  #A22526;
  --gold:    #F5C06A;
  --gold-lt: #FAE0A8;
  --green:   #4A6741;
  --dark:    #1E1210;
  --surface: #F5F0EB;
  --muted:   #6B5249;
  --white:   #FFFFFF;
  --border:  #E3D8CF;


  --r-sm:   var(--radius-sm, 6px);
  --r-md:   var(--radius-md, 10px);
  --r-lg:   var(--radius-lg, 16px);
  --r-pill: var(--radius-full, 9999px);

  --max-w:  1200px;
  --pad-x:  clamp(16px, 5vw, 80px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Shared layout ──────────────────────────────────────────── */
.km-spb__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 40px 16px;
}

/* ── Typography helpers ─────────────────────────────────────── */
.km-spb__eyebrow {
   
  font-size: clamp(0.6875rem, 0.65rem + 0.18vw, 0.75rem) !important;
  font-weight: 600 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.km-spb__h1 {

  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: var(--dark);
}

.km-spb__h2 {
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: var(--dark);
}

.km-spb__h3 {
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: var(--dark);
}

.km-spb__body {
  line-height: 1.7 !important;
  color: var(--muted);
}

/* ── Buttons ────────────────────────────────────────────────── */
.km-spb__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  -webkit-user-select: none;
  user-select: none;
}
.km-spb__btn:active { transform: scale(.97); }

.km-spb__btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.km-spb__btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.km-spb__btn--primary:disabled { opacity: .5; pointer-events: none; }

.km-spb__btn--ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}
.km-spb__btn--ghost:hover { border-color: var(--muted); color: var(--dark); }

.km-spb__btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.km-spb__btn--outline-white:hover { background: rgba(255,255,255,.12); }

.km-spb__btn--white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.km-spb__btn--white:hover { background: var(--surface); }

/* ── Spinner ────────────────────────────────────────────────── */
.km-spb__spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spb-spin .7s linear infinite;
  flex-shrink: 0;
}
.km-spb__spinner.hidden { display: none; }
@keyframes spb-spin { to { transform: rotate(360deg); } }


/* ══════════════════════════════════════════════════════════════
   §1  HERO
   ══════════════════════════════════════════════════════════════ */
.km-spb__hero {
  position: relative;
  height: 55vh;
  min-height: 450px;
  max-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .km-spb__hero {
    height: 65vh;
    max-height: 520px;
  }
}

.km-spb__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.km-spb__hero-overlay {
  position: absolute;
  inset: 0;
   background: linear-gradient(
  180deg,
  rgba(0, 0, 0, 0.5) 0%,
  rgba(91, 86, 86, 0.16) 100%
)!important;
}

.km-spb__hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(30px, 5vh, 60px);
  max-width: 100%;
}

.km-spb__hero-content .km-spb__eyebrow { color: var(--gold-lt); }
.km-spb__hero-content .km-spb__h1 { color: var(--white); margin-bottom: 16px; }

.km-spb__hero-sub {
  color: rgba(255,255,255,.82);
  line-height: 1.7 !important;
  margin-bottom: 28px;
}

.km-spb__hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.km-spb__hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.6875rem, 0.65rem + 0.18vw, 0.75rem) !important;
  font-weight: 600 !important;
  letter-spacing: .03em;
  color: var(--dark);
  background: var(--gold);
  padding: 6px 14px;
  border-radius: var(--radius-xs, 3px);
}
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════════
   §2  VALUE CARDS
   ══════════════════════════════════════════════════════════════ */
.km-spb__values{
  padding-block: clamp(30px, 5vw, 60px);
}

.km-spb__values-head {
  text-align: center;
  margin-bottom: 48px;
}
.km-spb__values-head .km-spb__h2 {color:var(--red-dark);margin-top: 8px; }

.km-spb__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.km-spb__value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.km-spb__value-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.07); transform: translateY(-3px); }

.km-spb__value-icon {
  width: 70px; height: 70px;
  margin-inline: auto;
  margin-bottom: 16px;
  object-fit: contain;
   filter: brightness(0) saturate(100%) invert(22%) sepia(88%) saturate(2200%) hue-rotate(340deg) brightness(90%) contrast(95%);
}

.km-spb__value-title {
  color: var(--red);
  font-weight:600;
  margin-bottom: 8px;
}

.km-spb__value-desc {
  line-height: 1.65;
  color: var(--muted);
}
.km-spb__values.km-spb__values {
  background: linear-gradient(
    to bottom,
     #FDF4EE 15%,
  #FEF8F4 60%,
  #FFFFFF 100%
  ) !important;
}

/* ══════════════════════════════════════════════════════════════
   §3  STEPPER INQUIRY FORM
   ══════════════════════════════════════════════════════════════ */
.km-spb__form-section {
  padding-block: clamp(30px, 5vw, 60px);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Subtle background texture blobs */
.km-spb__form-section::before,
.km-spb__form-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.km-spb__form-section::before {
  width: 500px; height: 500px;
  top: -150px; left: -150px;
  background: radial-gradient(circle, rgba(197,47,48,.12) 0%, transparent 65%);
}
.km-spb__form-section::after {
  width: 400px; height: 400px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(245,192,106,.08) 0%, transparent 65%);
}

.km-spb__form-section-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.km-spb__form-section-head .km-spb__eyebrow { color: var(--gold-lt); }
.km-spb__form-section-head .km-spb__h2 { color: var(--white); margin-top: 8px; }
.km-spb__form-section-head p {
     
  font-size: 16px;
  color: rgba(255,255,255,.6);
  margin-top: 12px;
}

/* ── Stepper card ───────────────────────────────────────────── */
.km-spb__stepper-card {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
}

/* ── Progress bar ───────────────────────────────────────────── */
.km-spb__progress {
  display: flex;
  align-items: center;
  padding: 28px 36px 0;
  gap: 0;
}

.km-spb__progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.km-spb__progress-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: background .3s, border-color .3s, color .3s;
  position: relative;
}

.km-spb__progress-step.is-active .km-spb__progress-dot {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(197,47,48,.35);
}

.km-spb__progress-step.is-done .km-spb__progress-dot {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.km-spb__progress-step.is-done .km-spb__progress-dot::after {
  content: '✓';
  font-size: 14px;
}
.km-spb__progress-step.is-done .km-spb__progress-num { display: none; }

.km-spb__progress-label {
     
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color .3s;
}
.km-spb__progress-step.is-active .km-spb__progress-label { color: var(--dark); }
.km-spb__progress-step.is-done .km-spb__progress-label { color: var(--green); }

.km-spb__progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.km-spb__progress-line-fill {
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.km-spb__progress-line.is-done .km-spb__progress-line-fill { transform: scaleX(1); }

/* ── Steps container ────────────────────────────────────────── */
.km-spb__steps-wrap {
  padding: 36px;
  position: relative;
  min-height: 360px;
}

@media (max-width: 520px) {
  .km-spb__progress { padding: 20px 20px 0; }
  .km-spb__steps-wrap { padding: 24px 20px; }
}

/* Each step panel */
.km-spb__step {
  display: none;
  flex-direction: column;
  gap: 24px;
  animation: spb-step-in .35s var(--ease-out) both;
}
.km-spb__step.is-active { display: flex; }
.km-spb__step.is-exit-left  { animation: spb-step-out-left  .25s var(--ease-out) both; }
.km-spb__step.is-enter-right { animation: spb-step-enter-right .35s var(--ease-out) both; }
.km-spb__step.is-enter-left  { animation: spb-step-enter-left  .35s var(--ease-out) both; }

@keyframes spb-step-in           { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes spb-step-enter-right  { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes spb-step-enter-left   { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: none; } }

/* Step heading */
.km-spb__step-title {
    
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--dark);
  line-height: 1.2;
}
.km-spb__step-sub {
     
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Form fields ────────────────────────────────────────────── */
.km-spb__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.km-spb__field label {
     
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--dark);
}

.km-spb__field input,
.km-spb__field select,
.km-spb__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
     
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.km-spb__field input:focus,
.km-spb__field select:focus,
.km-spb__field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197,47,48,.1);
}
.km-spb__field input.is-error,
.km-spb__field select.is-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197,47,48,.12);
}

.km-spb__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5249' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.km-spb__field textarea { resize: vertical; min-height: 88px; }

.km-spb__error-msg {
     
  font-size: 12px;
  color: var(--red);
  display: none;
}
.km-spb__field.has-error .km-spb__error-msg { display: block; }

.km-spb__fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) { .km-spb__fields-row { grid-template-columns: 1fr; } }

/* ── Spice picker (hybrid search + dropdown) ────────────────── */
.km-spb__picker-wrap {
  position: relative;
}

.km-spb__picker-input-row {
  position: relative;
  display: flex;
  align-items: center;
}

.km-spb__picker-input-row svg {
  position: absolute;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
  flex-shrink: 0;
}

.km-spb__picker-input {
  width: 100%;
  padding: 12px 40px 12px 40px !important;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
     
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.km-spb__picker-input:focus,
.km-spb__picker-wrap.is-open .km-spb__picker-input {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197,47,48,.1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.km-spb__picker-input.is-error { border-color: var(--red); }

.km-spb__picker-clear {
  position: absolute;
  right: 12px;
  width: 20px; height: 20px;
  border: none;
  background: var(--border);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  color: var(--muted);
  line-height: 1;
  transition: background .15s;
}
.km-spb__picker-clear:hover { background: var(--red); color: var(--white); }
.km-spb__picker-wrap.has-value .km-spb__picker-clear { display: flex; }

/* Dropdown list */
.km-spb__picker-dropdown {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  border: 1.5px solid var(--red);
  border-top: none;
  border-bottom-left-radius: var(--r-sm);
  border-bottom-right-radius: var(--r-sm);
  max-height: 240px;
  overflow-y: auto;
  z-index: 50;
  display: none;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
.km-spb__picker-wrap.is-open .km-spb__picker-dropdown { display: block; }

.km-spb__picker-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background .12s;
     
  font-size: 14px;
  color: var(--dark);
}
.km-spb__picker-option:hover,
.km-spb__picker-option.is-focused { background: var(--surface); }
.km-spb__picker-option.is-selected { background: rgba(197,47,48,.06); color: var(--red); font-weight: 600; }

.km-spb__picker-option-img {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
}

.km-spb__picker-empty {
  padding: 16px 14px;
     
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* Selected chip */
.km-spb__selected-chip {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(197,47,48,.07);
  border: 1.5px solid rgba(197,47,48,.25);
  border-radius: var(--r-sm);
  margin-top: 8px;
}
.km-spb__picker-wrap.has-value .km-spb__selected-chip { display: flex; }

.km-spb__selected-chip-img {
  width: 36px; height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
}

.km-spb__selected-chip-name {
     
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  flex: 1;
}

.km-spb__selected-chip-badge {
     
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(197,47,48,.1);
  padding: 3px 8px;
  border-radius: var(--r-pill);
}

/* ── Step nav row (Back / Next) ─────────────────────────────── */
.km-spb__step-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.km-spb__step-nav .km-spb__btn--primary { flex: 1; justify-content: center; }
.km-spb__step-nav .km-spb__btn--ghost   { padding: 14px 20px; }

/* ── Success state ──────────────────────────────────────────── */
.km-spb__form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 48px 36px;
  animation: spb-step-in .4s var(--ease-out) both;
}
.km-spb__form-success.is-visible { display: flex; }

.km-spb__success-icon {
  width: 72px; height: 72px;
  background: #D6E8D4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--green);
}

.km-spb__form-success .km-spb__h3 { color: var(--dark); }
.km-spb__form-success p {
     
  font-size: 15px;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.65;
}

/* Summary card inside success */
/* ── Success summary card ── */
.km-sb__summary-card {
  width: 100%;
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: left;
  border: 1px solid var(--border);
  margin-top: 8px;
}
.km-sb__summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}
.km-sb__summary-row:last-child { border-bottom: none; }
.km-sb__summary-row span:first-child { color: var(--sb-muted); }
.km-sb__summary-row span:last-child  { font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
   §4  QUALITY & CERTIFICATIONS
   ══════════════════════════════════════════════════════════════ */
.km-spb__quality {
    padding-block: clamp(30px, 5vw, 60px);
  background: var(--white);
}

.km-spb__quality-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 768px) { .km-spb__quality-inner { grid-template-columns: 1fr; } }

.km-spb__quality-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.km-spb__quality-content { display: flex; flex-direction: column; gap:8px; }
.km-spb__quality-content .km-spb__h2 { margin: 8px 0 16px; }

.km-spb__cert-list {  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; }
@media (max-width: 768px) { .km-spb__cert-list { grid-template-columns: 1fr; } }
.km-spb__cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content:center;
  gap: 12px;
  padding: 20px 16px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}

.km-spb__cert-icon {
 width: 70px;
  height: 70px;
  flex-shrink: 0;
  object-fit: contain;
}

.km-spb__cert-text h4 {
    
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 4px;
}
.km-spb__cert-text p {
     
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}


/* ══════════════════════════════════════════════════════════════
   §5  HOW IT'S SOURCED
   ══════════════════════════════════════════════════════════════ */
.km-spb__harvest {
 padding-block: clamp(30px, 5vw, 60px);
  background: linear-gradient(
    to bottom,
   #FDF4EE 15%,
  #FEF8F4 60%,
  #FFFFFF 100%
  )!important;
}

.km-spb__harvest-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.km-spb__harvest-head .km-spb__h2 {color:var(--red-dark); margin-top: 8px; }

.km-spb__harvest-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.km-spb__harvest-step { display: flex; flex-direction: column; gap: 16px; }

.km-spb__harvest-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-md);
}

.km-spb__harvest-num {
  font-size: 48px;
  color: var(--red);
  opacity: .25;
  line-height: 1;
}

.km-spb__harvest-title {
  color:var(--red-dark);
    font-weight:700;
  font-size: 20px;
  margin-bottom: 6px;
}

.km-spb__harvest-desc {
     
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}


/* ══════════════════════════════════════════════════════════════
   §6  WHO BUYS BULK
   ══════════════════════════════════════════════════════════════ */
.km-spb__buyers {
  padding-block: clamp(56px, 8vw, 112px);
  background: var(--surface);
}

.km-spb__buyers-head {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 48px;
}
.km-spb__buyers-head .km-spb__h2 { margin-top: 8px; }

.km-spb__buyers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.km-spb__buyer-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.km-spb__buyer-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.07); transform: translateY(-3px); }

.km-spb__buyer-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.km-spb__buyer-body { padding: 20px; }

.km-spb__buyer-title {
    
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 8px;
}

.km-spb__buyer-desc {
     
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}


/* ══════════════════════════════════════════════════════════════
   §7  REVIEWS
   ══════════════════════════════════════════════════════════════ */
.km-spb__reviews {
  padding-block: clamp(56px, 8vw, 112px);
  background: var(--white);
}

.km-spb__reviews-head {
  text-align: center;
  margin-bottom: 48px;
}
.km-spb__reviews-head .km-spb__h2 { margin-top: 8px; }

.km-spb__reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.km-spb__review-card {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.km-spb__review-stars {
  color: #F5C06A;
  font-size: 16px;
  letter-spacing: 2px;
}

.km-spb__review-text {
     
  font-size: 14px;
  line-height: 1.75;
  color: var(--dark);
  font-style: italic;
  flex: 1;
}

.km-spb__reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.km-spb__reviewer-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--border);
  flex-shrink: 0;
}

.km-spb__reviewer-name {
     
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.km-spb__reviewer-meta {
     
  font-size: 12px;
  color: var(--muted);
}


/* ══════════════════════════════════════════════════════════════
   §8  FAQ
   ══════════════════════════════════════════════════════════════ */
.km-spb__faq {
  padding-block: clamp(56px, 8vw, 112px);
  background: #FDF4EE;
}

.km-spb__faq-head {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 48px;
}
.km-spb__faq-head .km-spb__h2 { margin-top: 8px; }

.km-spb__faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.km-spb__faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.km-spb__faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
    
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--dark);
  transition: background .15s;
}
.km-spb__faq-q:hover          { background: var(--surface); }
.km-spb__faq-item.is-open .km-spb__faq-q { background: var(--surface); color: var(--red); }

.km-spb__faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  transition: transform .25s;
  color: var(--muted);
}
.km-spb__faq-item.is-open .km-spb__faq-chevron { transform: rotate(180deg); color: var(--red); }

.km-spb__faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.km-spb__faq-item.is-open .km-spb__faq-a { max-height: 600px; }

.km-spb__faq-a-inner {
  padding: 0 24px 20px;
     
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}


/* ══════════════════════════════════════════════════════════════
   §9  CLOSING CTA
   ══════════════════════════════════════════════════════════════ */
.km-spb__cta {
  padding-block: clamp(56px, 8vw, 112px);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.km-spb__cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,47,48,.14) 0%, transparent 70%);
  pointer-events: none;
}

.km-spb__cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) { .km-spb__cta-inner { grid-template-columns: 1fr; } }

.km-spb__cta-content .km-spb__eyebrow { color: var(--gold-lt); }
.km-spb__cta-content .km-spb__h2 { color: var(--white); margin-top: 8px; margin-bottom: 16px; }
.km-spb__cta-content .km-spb__body { color: rgba(255,255,255,.65); margin-bottom: 32px; }

.km-spb__cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.km-spb__cta-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg);
}


/* ── Mobile font reduction ────────────────────────────────────── */
@media (max-width: 768px) {
  .km-spb__h1 { font-size: clamp(1.75rem, 1.6rem + 0.75vw, 2.1rem) !important; }
  .km-spb__h2 { font-size: clamp(1.4rem, 1.3rem + 0.5vw, 1.7rem) !important; }
  .km-spb__h3 { font-size: clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem) !important; }
  .km-spb__body { font-size: clamp(0.8125rem, 0.78rem + 0.16vw, 0.875rem) !important; }
  .km-spb__eyebrow { font-size: 0.625rem !important; }
  .km-spb__hero-sub { font-size: 0.8125rem !important; }
  .km-spb__hero-trust-item { font-size: 0.625rem !important; padding: 5px 10px; }
  .km-spb__btn { font-size: 0.75rem !important; padding: 12px 24px; }
  .km-spb__value-title { font-size: 0.875rem !important; }
  .km-spb__value-desc { font-size: 0.75rem !important; }
  .km-spb__values-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .km-spb__value-card { padding: 20px 14px; }
  .km-spb__value-icon { width: 40px; height: 40px; margin-bottom: 10px; }
  .km-spb__step-title { font-size: 1rem !important; }
  .km-spb__step-sub { font-size: 0.8125rem !important; }
  .km-spb__field label { font-size: 0.6875rem !important; }
  .km-spb__field input,
  .km-spb__field select,
  .km-spb__field textarea { font-size: 0.8125rem !important; }
  .km-spb__progress-label { font-size: 0.5625rem !important; }
  .km-spb__cert-text h4 { font-size: 0.875rem !important; }
  .km-spb__cert-text p { font-size: 0.6875rem !important; }
  .km-spb__harvest-num { font-size: 2rem !important; }
  .km-spb__harvest-title { font-size: 0.9375rem !important; }
  .km-spb__harvest-desc { font-size: 0.75rem !important; }
  .km-spb__review-text { font-size: 0.75rem !important; }
  .km-spb__reviewer-name { font-size: 0.6875rem !important; }
  .km-spb__reviewer-meta { font-size: 0.625rem !important; }
  .km-spb__faq-q { font-size: 0.875rem !important; padding: 16px 20px; }
  .km-spb__faq-a-inner { font-size: 0.75rem !important; padding: 0 20px 16px; }
}


/* ── Utility ─────────────────────────────────────────────────── */
.km-spb__visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
