/* ============================================================
   ZUCKIE SPICE — Homepage CSS  ★ VERSION 3.0 ★  (July 2026)
   PASTE INTO: Simple Custom CSS and JS entry "Homepage"
   (replace the entire previous entry with this)

   VERSION HISTORY
   v2.0 — homepage v2 styles
   v2.1 — mobile responsive pass + MailPoet overrides
   v3.0 — Haitian Spice headline accent in spice orange,
          lighter newsletter background, MailPoet overrides
          removed (native form is now used)
   ============================================================ */

:root {
  --zs-spice:        #B85A1A;
  --zs-spice-dark:   #7A3010;
  --zs-spice-deep:   #3B1A08;
  --zs-spice-light:  #FEF0E0;
  --zs-spice-mid:    #F0C080;
  --zs-gold:         #D4A030;
  --zs-cream:        #FAF6F0;
  --zs-cream-dark:   #F3EDE4;
  --zs-text:         #2C1A0E;
  --zs-text-muted:   #7A6050;
  --zs-text-light:   #B09080;
  --zs-border:       rgba(184,90,26,0.14);
  --zs-radius:       14px;
  --zs-radius-sm:    7px;
  --zs-shadow:       0 2px 14px rgba(44,26,14,0.08);
  --zs-shadow-lg:    0 10px 36px rgba(44,26,14,0.13);
  --zs-font-body:    'Inter', system-ui, sans-serif;
  --zs-font-display: 'Playfair Display', Georgia, serif;
  --zs-transition:   0.22s ease;
}

#zs-homepage *, #zs-homepage *::before, #zs-homepage *::after { box-sizing: border-box; }
#zs-homepage { font-family: var(--zs-font-body); color: var(--zs-text); overflow-x: hidden; }
#zs-homepage h1, #zs-homepage h2, #zs-homepage h3 { font-family: var(--zs-font-display); line-height: 1.2; }
#zs-homepage img { max-width: 100%; display: block; }
#zs-homepage a { color: inherit; text-decoration: none; }
#zs-homepage p { line-height: 1.75; }

.zs-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.zs-section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--zs-spice); margin-bottom: 10px;
}
.zs-section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500; color: var(--zs-spice-deep);
  margin-bottom: 40px; max-width: 700px;
}
/* One line — no wrapping */
.zs-section-title.zs-one-line {
  white-space: nowrap;
  max-width: 100%;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.zs-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--zs-radius-sm);
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  transition: all var(--zs-transition); border: none;
  cursor: pointer; font-family: var(--zs-font-body); text-decoration: none;
}
.zs-btn-primary { background: var(--zs-spice); color: #fff; }
.zs-btn-primary:hover { background: var(--zs-spice-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,90,26,0.28); color: #fff; }
.zs-btn-outline { background: transparent; color: var(--zs-spice-deep); border: 1.5px solid var(--zs-spice); }
.zs-btn-outline:hover { background: var(--zs-spice-light); color: var(--zs-spice-dark); }
.zs-btn-dark { background: var(--zs-spice-deep); color: #fff; white-space: nowrap; }
.zs-btn-dark:hover { background: #1A0E06; color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.zs-hero { background: var(--zs-cream); padding: 72px 0 80px; overflow: hidden; }
.zs-hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.zs-hero-img-wrap {
  border-radius: 20px; overflow: hidden;
  background: var(--zs-cream-dark); box-shadow: var(--zs-shadow-lg);
}
.zs-hero-img-wrap img { width: 100%; height: auto; display: block; object-fit: cover; transition: transform 0.6s ease; }
.zs-hero-img-wrap:hover img { transform: scale(1.02); }

.zs-hero-copy { padding-right: 16px; }
.zs-hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; color: var(--zs-spice-deep);
  line-height: 1.25; margin-bottom: 20px; letter-spacing: -0.02em;
  /* Force 3 lines — each <br> creates a new line */
  max-width: 480px;
}
/* Make <br> tags actually break at the right point */
.zs-hero-headline br {
  display: block;
  content: "";
}
/* "Haitian Spice," accent — same color as the Shop All Blends button */
.zs-hero-headline em {
  font-style: normal;
  color: var(--zs-spice);
}
.zs-hero-sub { font-size: 16px; color: var(--zs-text-muted); line-height: 1.75; margin-bottom: 36px; max-width: 420px; }
.zs-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.zs-trust-bar { background: var(--zs-spice); padding: 15px 0; overflow: hidden; }
.zs-trust-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.zs-trust-item {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.92); font-size: 12px;
  font-weight: 500; padding: 4px 18px; white-space: nowrap;
}
.zs-trust-item svg { flex-shrink: 0; }
.zs-trust-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.25); flex-shrink: 0; }

/* ============================================================
   STORY SECTION
   ============================================================ */
.zs-story { background: #fff; padding: 96px 0; }
.zs-story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.zs-story-subheading {
  font-family: var(--zs-font-display);
  font-size: 1.5rem; font-weight: 500;
  color: var(--zs-spice-deep); margin-bottom: 20px;
}
.zs-story-lead {
  font-size: 16px; color: var(--zs-text-muted);
  line-height: 1.8; margin-bottom: 16px; font-style: italic;
}
.zs-story-text p { font-size: 15px; color: var(--zs-text-muted); margin-bottom: 16px; }
.zs-story-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 10px; font-size: 14px; font-weight: 600;
  color: var(--zs-spice); text-decoration: none;
  transition: gap var(--zs-transition);
  min-height: 44px; /* comfortable tap target on touch devices */
}
.zs-story-link:hover { gap: 12px; color: var(--zs-spice-dark); }

.zs-story-img-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--zs-shadow-lg);
  background: var(--zs-cream-dark); position: relative;
}
.zs-story-img-wrap::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(184,90,26,0.1);
  pointer-events: none;
}
.zs-story-img-wrap img { width: 100%; height: auto; display: block; object-fit: cover; }

/* ============================================================
   VALUES SECTION
   ============================================================ */
.zs-values { background: var(--zs-cream); padding: 96px 0; }
.zs-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.zs-value-card {
  background: #fff; border-radius: var(--zs-radius);
  padding: 36px 28px; border: 1px solid var(--zs-border);
  text-align: center; transition: all var(--zs-transition);
}
.zs-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--zs-shadow-lg);
  border-color: rgba(184,90,26,0.3);
}
.zs-value-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--zs-spice-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--zs-spice);
  transition: background var(--zs-transition);
}
.zs-value-card:hover .zs-value-icon { background: var(--zs-spice); color: #fff; }
.zs-value-card h3 { font-size: 1.1rem; color: var(--zs-spice-deep); margin-bottom: 10px; }
.zs-value-card p { font-size: 14px; color: var(--zs-text-muted); line-height: 1.7; margin: 0; }

/* ============================================================
   PROCESS — no numbers, no arrows, emoji icons
   ============================================================ */
.zs-process { background: var(--zs-spice-deep); padding: 96px 0; }
.zs-process .zs-section-title { color: #FFF8F0; max-width: 100%; }

.zs-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.zs-process-step {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--zs-radius);
  border: 1px solid rgba(212,160,48,0.15);
  transition: background var(--zs-transition);
}
.zs-process-step:hover { background: rgba(255,255,255,0.07); }

/* Emoji icon — large, no circle background */
.zs-process-icon {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.zs-process-step h3 {
  font-size: 13px; font-weight: 700;
  color: var(--zs-gold); margin-bottom: 10px;
  font-family: var(--zs-font-body);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.zs-process-step p { font-size: 13px; color: rgba(255,230,190,0.65); line-height: 1.65; margin: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.zs-reviews { background: var(--zs-cream); padding: 96px 0; }
.zs-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.zs-review-card {
  background: #fff; border-radius: var(--zs-radius); padding: 30px 26px;
  border: 1px solid var(--zs-border); display: flex;
  flex-direction: column; transition: all var(--zs-transition);
}
.zs-review-card:hover { transform: translateY(-4px); box-shadow: var(--zs-shadow-lg); }
.zs-review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.zs-star { font-size: 17px; color: var(--zs-border); line-height: 1; }
.zs-star.filled { color: var(--zs-gold); }
.zs-review-text { flex: 1; margin-bottom: 20px; }
.zs-review-text p { font-size: 15px; color: var(--zs-text-muted); line-height: 1.72; font-style: italic; margin: 0; }
.zs-reviewer { display: flex; align-items: center; gap: 12px; }
.zs-reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--zs-spice-light); color: var(--zs-spice);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.zs-reviewer-name { font-size: 14px; font-weight: 600; color: var(--zs-spice-deep); }
.zs-reviewer-loc { font-size: 12px; color: var(--zs-text-light); margin-top: 2px; }

/* ============================================================
   NEWSLETTER — redesigned, more attractive, no em-dashes
   ============================================================ */
.zs-newsletter {
  background: linear-gradient(135deg, var(--zs-spice) 0%, #D98A45 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.zs-newsletter::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.zs-newsletter::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.zs-newsletter-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.zs-newsletter-copy h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff; margin-bottom: 12px; line-height: 1.2;
}
.zs-newsletter-copy p { color: rgba(255,255,255,0.78); font-size: 15px; margin: 0; line-height: 1.7; }

.zs-newsletter-form { width: 100%; }
.zs-newsletter-fields {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.12);
  border-radius: var(--zs-radius-sm);
  border: 1.5px solid rgba(255,255,255,0.2);
  overflow: hidden;
}
.zs-nl-input {
  flex: 1; padding: 14px 18px;
  border: none; font-size: 14px;
  font-family: var(--zs-font-body);
  background: transparent; color: #fff; outline: none;
}
.zs-nl-input::placeholder { color: rgba(255,255,255,0.5); }
.zs-nl-input:focus { background: rgba(255,255,255,0.08); }
.zs-newsletter-fields .zs-btn-dark {
  background: #fff; color: var(--zs-spice-deep);
  border-radius: 0; padding: 14px 24px;
  font-size: 14px; font-weight: 700;
  border: none; flex-shrink: 0;
}
.zs-newsletter-fields .zs-btn-dark:hover { background: var(--zs-spice-light); color: var(--zs-spice-dark); }
.zs-newsletter-privacy {
  font-size: 12px; color: rgba(255,255,255,0.65);
  margin-top: 12px; margin-bottom: 0; line-height: 1.5;
}
.zs-newsletter-privacy a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   RESPONSIVE — TABLET (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  .zs-hero { padding: 48px 0 56px; }
  .zs-hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .zs-hero-copy { padding-right: 0; }
  .zs-hero-headline { margin-left: auto; margin-right: auto; }
  .zs-hero-sub { margin: 0 auto 36px; }
  .zs-hero-actions { justify-content: center; }
  .zs-hero-image { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }

  .zs-section-title.zs-one-line { white-space: normal; }

  .zs-trust-sep { display: none; }
  .zs-trust-item { padding: 5px 10px; }

  .zs-story { padding: 64px 0; }
  .zs-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .zs-story-image { order: -1; max-width: 460px; margin: 0 auto; width: 100%; }
  .zs-section-title { text-align: center; margin-left: auto; margin-right: auto; }
  .zs-section-eyebrow { text-align: center; }

  .zs-values { padding: 64px 0; }
  .zs-values-grid { grid-template-columns: 1fr 1fr; }

  .zs-process { padding: 64px 0; }
  .zs-process-steps { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }

  .zs-reviews { padding: 64px 0; }
  .zs-reviews-grid { grid-template-columns: 1fr 1fr; }

  .zs-newsletter { padding: 56px 0; }
  .zs-newsletter-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .zs-newsletter-fields { max-width: 480px; margin: 0 auto; }
  .zs-newsletter-form-wrap { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================================ */
@media (max-width: 600px) {

  /* ── Hero ── */
  .zs-hero { padding: 36px 0 48px; }
  .zs-hero-inner { gap: 26px; }
  /* Smaller image so headline + CTA stay near the top of the screen */
  .zs-hero-image { max-width: 300px; }
  .zs-hero-headline { font-size: 1.9rem; margin-bottom: 16px; }
  .zs-hero-sub { font-size: 15px; margin-bottom: 28px; }
  .zs-hero-actions { gap: 10px; }
  .zs-hero-actions .zs-btn { width: 100%; justify-content: center; padding: 15px 24px; }

  /* ── Trust bar: tidy 2-column grid instead of ragged wrap ── */
  .zs-trust-bar { padding: 14px 0; }
  .zs-trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
    justify-items: start;
    max-width: 420px;
  }
  .zs-trust-item {
    font-size: 11px;
    padding: 3px 0;
    white-space: normal;
    text-align: left;
  }

  /* ── Section rhythm ── */
  .zs-story, .zs-values, .zs-process, .zs-reviews { padding: 56px 0; }
  .zs-section-title { margin-bottom: 26px; }
  .zs-story-grid { gap: 30px; }
  .zs-story-image { max-width: 100%; }
  .zs-story-subheading { font-size: 1.3rem; }

  /* ── Cards ── */
  .zs-values-grid { grid-template-columns: 1fr; gap: 16px; }
  .zs-value-card { padding: 28px 20px; }

  /* Process: 2x2 grid of compact cards (matches Our Story page) */
  .zs-process-steps { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
  .zs-process-step { padding: 24px 14px; }
  .zs-process-icon { font-size: 36px; margin-bottom: 14px; }
  .zs-process-step p { font-size: 12px; }

  .zs-reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .zs-review-card { padding: 24px 20px; }

  /* ── Newsletter: stack the joined pill vertically, compact ── */
  .zs-newsletter { padding: 48px 0; }
  /* Narrower, centered subscriber block */
  #zs-homepage .zs-newsletter-form-wrap {
    max-width: 340px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .zs-newsletter-fields {
    flex-direction: column;
    border-radius: var(--zs-radius-sm);
  }
  .zs-nl-input {
    width: 100%;
    font-size: 16px; /* 16px prevents iOS Safari auto-zoom on focus */
    padding: 10px 14px;
    text-align: center;
  }
  .zs-newsletter-fields .zs-btn-dark {
    border-radius: 0 0 calc(var(--zs-radius-sm) - 1.5px) calc(var(--zs-radius-sm) - 1.5px);
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL PHONES (max 420px)
   iPhone SE, older/compact Androids
   ============================================================ */
@media (max-width: 420px) {
  .zs-container,
  .zs-hero-inner,
  .zs-trust-inner,
  .zs-newsletter-inner { padding-left: 16px; padding-right: 16px; }

  .zs-hero-image { max-width: 250px; }
  .zs-hero-headline { font-size: 1.7rem; }
  .zs-hero-sub { font-size: 14px; }

  .zs-trust-item { font-size: 10px; gap: 5px; }
  .zs-trust-item svg { width: 13px; height: 13px; }

  /* Process cards go single column on the smallest screens
     (same breakpoint as the Our Story page) */
  .zs-process-steps { grid-template-columns: 1fr; }

  .zs-value-card { padding: 24px 18px; }
  .zs-review-card { padding: 22px 18px; }
}