 .hero {
    position: relative;
    /* FIX 2: width:100vw causes horizontal scroll + hides admin bar.
       Use left/right negative margin trick instead — same visual result, no overflow. */
    width: auto;
    margin-left:  calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
  }

  /* FIX 3: Admin bar fix — WP adds .admin-bar to <body> for logged-in users */
  .admin-bar .hero {
    height: calc(100vh - 32px);
    margin-top: 0;
  }
  @media (max-width: 782px) {
    .admin-bar .hero {
      height: calc(100vh - 46px);
    }
  }

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .slide.active {
    opacity: 1;
    pointer-events: all;
  }

  .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
  }

  .slide.active .slide-bg {
    transform: scale(1);
  }

  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(10, 20, 5, 0.82) 0%,
      rgba(10, 20, 5, 0.4) 60%,
      transparent 100%
    );
  }

  .slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 6vw;
  }

  .text-block {
    max-width: 680px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1s ease 0.3s, opacity 1s ease 0.3s;
  }

  .slide.active .text-block {
    transform: translateY(0);
    opacity: 1;
  }

  .slide-eyebrow {
    /* FIX 4: Replaced 'DM Sans' with system font stack — no Google Fonts request */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a8d5a2;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .slide-eyebrow::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1.5px;
    background: #a8d5a2;
  }

  .slide-title {
    /* FIX 4: Replaced 'Playfair Display' with Georgia — no Google Fonts request */
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.12;
    color: #f5f0e8;
    margin-bottom: 24px;
  }

  .slide-title em {
    font-style: italic;
    color: #c8e6b8;
  }

  .slide-desc {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 300;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.78);
    margin-bottom: 38px;
    max-width: 520px;
  }

  .cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero .btn-primary {
    display: inline-block;
    padding: 1px 34px;
    background: #3a7a2e;
    color: #f5f0e8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
  }

  .hero .btn-primary:hover {
    background: #4d9e3e;
    transform: translateY(-2px);
  }

  .hero .btn-outline {
    display: inline-block;
    padding: 13px 32px;
    background: transparent;
    color: #f5f0e8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: 1px solid rgba(245, 240, 232, 0.45);
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
  }

  .hero .btn-outline:hover {
    border-color: rgba(245, 240, 232, 0.8);
    background: rgba(245, 240, 232, 0.08);
  }

  .slide:nth-child(1) .slide-bg {
    background-image:
      radial-gradient(ellipse at 80% 20%, rgba(120, 180, 80, 0.25) 0%, transparent 55%),
      radial-gradient(ellipse at 20% 80%, rgba(60, 120, 40, 0.3) 0%, transparent 50%),
      linear-gradient(160deg, #0d2010 0%, #1a3d15 30%, #2d5a1e 55%, #1e3d14 80%, #0f2409 100%);
  }

  .slide:nth-child(2) .slide-bg {
    background-image:
      radial-gradient(ellipse at 70% 30%, rgba(255, 248, 220, 0.2) 0%, transparent 50%),
      radial-gradient(ellipse at 30% 70%, rgba(200, 160, 80, 0.25) 0%, transparent 50%),
      linear-gradient(160deg, #1a1206 0%, #2e2008 25%, #1c1405 60%, #0e0b03 100%);
  }

  .slide:nth-child(3) .slide-bg {
    background-image:
      radial-gradient(ellipse at 75% 25%, rgba(100, 200, 150, 0.2) 0%, transparent 55%),
      radial-gradient(ellipse at 25% 75%, rgba(50, 140, 90, 0.25) 0%, transparent 50%),
      linear-gradient(145deg, #081a0c 0%, #142e18 30%, #0f2410 70%, #081408 100%);
  }

  .slide:nth-child(4) .slide-bg {
    background-image:
      radial-gradient(ellipse at 65% 35%, rgba(230, 200, 130, 0.22) 0%, transparent 55%),
      radial-gradient(ellipse at 35% 65%, rgba(180, 140, 60, 0.2) 0%, transparent 50%),
      linear-gradient(155deg, #12100a 0%, #1f1b0d 30%, #2a2412 60%, #16130a 100%);
  }

  .slide-illustration {
    position: absolute;
    right: 6vw;
    top: 50%;
    transform: translateY(-50%);
    width: min(44vw, 480px);
    height: min(60vh, 480px);
    opacity: 0;
    transition: opacity 1.2s ease 0.6s, transform 1.2s ease 0.6s;
    pointer-events: none;
  }

  .slide.active .slide-illustration {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  .slide:not(.active) .slide-illustration {
    transform: translateY(-50%) translateX(40px);
  }

  .slider-nav {
    position: absolute;
    bottom: 44px;
    left: 6vw;
    right: 6vw;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 20;
  }

  .dot-group {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(245, 240, 232, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }

  .dot.active {
    background: #a8d5a2;
    width: 28px;
    border-radius: 3px;
  }

  .slide-counter {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.45);
    letter-spacing: 0.1em;
    margin-left: auto;
  }

  .arrow-btns { display: flex; gap: 8px; }

  .arrow-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(245, 240, 232, 0.25);
    background: transparent;
    color: #f5f0e8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s, background 0.25s;
    font-size: 18px;
  }

  .arrow-btn:hover {
    border-color: rgba(245, 240, 232, 0.65);
    background: rgba(245, 240, 232, 0.08);
  }

  .hero-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: #a8d5a2;
    z-index: 30;
    width: 0%;
  }

  .brand-mark {
    position: absolute;
    top: 36px;
    left: 6vw;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .brand-mark svg { width: 32px; height: 32px; }

  .brand-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
    color: #f5f0e8;
    letter-spacing: 0.03em;
  }

  .slide:nth-child(2) .slide-eyebrow,
  .slide:nth-child(4) .slide-eyebrow { color: #e8c97a; }
  .slide:nth-child(2) .slide-eyebrow::before,
  .slide:nth-child(4) .slide-eyebrow::before { background: #e8c97a; }
  .slide:nth-child(2) .slide-title em,
  .slide:nth-child(4) .slide-title em { color: #f0d898; }

  @media (max-width: 768px) {
    .slide-illustration { display: none; }
    .text-block { max-width: 100%; }
    .slide-title { font-size: clamp(2rem, 8vw, 3rem); }
    .slide-content { padding: 0 24px; }
    .brand-mark { left: 24px; }
    .slider-nav { left: 24px; right: 24px; }
  }
  
  

      :root {
      --green:       #80bb01;
      --green-dark:  #5d8a00;
      --green-light: #d4edaa;
      --cream:       #faf6ee;
      --cream-mid:   #f0e8d8;
      --brown:       #6b4c2a;
      --brown-light: #a07850;
      --gold:        #c8a84b;
      --gold-light:  #e8d49c;
      --text-dark:   #2e1f0e;
      --text-mid:    #5a3d20;
      --shadow-sm:   0 2px 8px rgba(107,76,42,.08);
      --shadow-md:   0 8px 28px rgba(107,76,42,.14);
      --shadow-lift: 0 20px 48px rgba(107,76,42,.20);
    }

    /*
     * ── WordPress / WPBakery full-width escape ──────────────────────────────
     * WPBakery wraps HTML blocks in .wpb_wrapper > .vc_column-inner which
     * carry padding and a max-width inherited from the row/container.
     * We break out by making .shopapni-cards-section stretch edge-to-edge
     * using a negative-margin trick that undoes whatever the parent applies.
     */
    .shopapni-cards-section {
      /* Pull left/right beyond any WP column padding (typically 15px each side) */
      margin-left:  calc(-50vw + 50%);
      margin-right: calc(-50vw + 50%);
      width: 100vw;
      padding: 3.5rem 1.5rem;
      background: var(--cream);
      font-family: 'Outfit', sans-serif;
    }

    /* Subtle background texture */
    .shopapni-cards-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 15% 20%, rgba(128,187,1,.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 85% 80%, rgba(200,168,75,.07) 0%, transparent 60%);
      pointer-events: none;
    }

    /* ── Section wrapper ── */
    .section {
      width: 100%;
      max-width: 960px;
      margin: 0 auto;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .section-eyebrow {
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: .75rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .6rem;
    }

    .section-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.15;
    }

    .section-title span {
      color: var(--green);
    }

    /* ── Grid ── */
    .cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.75rem;
    }

    @media (max-width: 640px) {
      .cards-grid { grid-template-columns: 1fr; }
    }

    /* ── Card ── */
    .card {
      background: #fff;
      border-radius: 20px;
      padding: 2.4rem 2rem 2rem;
      box-shadow: var(--shadow-md);
      border: 1.5px solid var(--cream-mid);
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      position: relative;
      overflow: hidden;
      transition: transform .3s cubic-bezier(.22,.68,0,1.2), box-shadow .3s ease;
      cursor: default;
    }

    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(128,187,1,.04) 0%, transparent 60%);
      pointer-events: none;
    }

    /* decorative corner arc */
    .card::after {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      opacity: .07;
      transition: opacity .3s ease;
    }

    .card--milk::after   { background: var(--green); }
    .card--contrib::after { background: var(--gold); }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lift);
    }

    .card:hover::after { opacity: .13; }

    /* ── Icon badge ── */
    .card-icon {
      width: 58px;
      height: 58px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .card--milk   .card-icon { background: var(--green-light); }
    .card--contrib .card-icon { background: var(--gold-light); }

    /* ── Content ── */
    .card-body { position: relative; z-index: 1; }

    .card-title {
      font-family: 'Fraunces', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: .55rem;
    }

    .card-desc {
      font-size: .9rem;
      font-weight: 400;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ── Divider ── */
    .card-divider {
      height: 1px;
      background: linear-gradient(90deg, var(--cream-mid), transparent);
      margin: .2rem 0;
    }

    /* ── Button ── */
    .card-btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-family: 'Outfit', sans-serif;
      font-size: .88rem;
      font-weight: 600;
      padding: .7rem 1.4rem;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
      position: relative;
      z-index: 1;
      align-self: flex-start;
    }

    .card--milk .card-btn {
      background: var(--green);
      color: #fff;
      box-shadow: 0 4px 14px rgba(128,187,1,.35);
    }

    .card--milk .card-btn:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(128,187,1,.45);
    }

    .card--contrib .card-btn {
      background: var(--brown);
      color: #fff;
      box-shadow: 0 4px 14px rgba(107,76,42,.3);
    }

    .card--contrib .card-btn:hover {
      background: var(--text-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(107,76,42,.4);
    }

    .btn-arrow {
      transition: transform .2s ease;
      font-size: 1rem;
    }

    .card-btn:hover .btn-arrow { transform: translateX(3px); }

    /* ── Status pill (optional demo) ── */
    .card-status {
      position: absolute;
      top: 1.2rem;
      right: 1.2rem;
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .22rem .65rem;
      border-radius: 50px;
      z-index: 2;
    }

    .status--active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .status--guest {
      background: var(--cream-mid);
      color: var(--brown-light);
    }

    /* ── Enter animation ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .card { animation: fadeUp .5s ease both; }
    .card:nth-child(2) { animation-delay: .12s; }
    
     :root {
    --green:        #4a7c2f;
    --green-dark:   #2e5a18;
    --green-light:  #e8f5e0;
    --green-mid:    #c5e8a8;
    --amber:        #c8820a;
    --amber-light:  #fef3dc;
    --red-soft:     #f5e0e0;
    --red:          #b94040;
    --bg:           #f5f5f0;
    --card:         #ffffff;
    --text:         #1e2d14;
    --muted:        #6b7a5e;
    --border:       #dde8d4;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Georgia', serif;
    background: var(--bg);
    padding: 2rem 1rem;
    color: var(--text);
  }

  /* ══════════════════════════════
     OUTER WRAPPER
  ══════════════════════════════ */
  .pooled-section {
    max-width: 980px;
    margin: 0 auto;
  }

  /* ── Section header ── */
  .section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 0.35rem;
  }

  .section-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    color: var(--green-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 2rem;
  }

  /* ══════════════════════════════
     MAIN GRID
  ══════════════════════════════ */
  .main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: start;
  }

  @media (max-width: 680px) {
    .main-grid { grid-template-columns: 1fr; }
  }

  /* ══════════════════════════════
     PRODUCT CARD (left column)
  ══════════════════════════════ */
  .product-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(46,90,24,0.08);
  }

  .product-img-wrap {
    position: relative;
    background: linear-gradient(135deg, #e8f5e0 0%, #d4efc0 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
  }

  .product-img-wrap img {
    width: 100%;
    max-width: 200px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }

  /* Emoji fallback */
  .product-img-wrap .img-fallback {
    font-size: 7rem;
    line-height: 1;
  }

  .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
  }

  .product-body {
    padding: 1.1rem 1.25rem 1.25rem;
  }

  .product-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.2rem;
  }

  .product-meta {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 0.9rem;
  }

  /* Price display */
  .price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .price-current {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--amber);
    font-family: 'Georgia', serif;
  }
  .price-note {
    font-size: 0.7rem;
    color: var(--muted);
    line-height: 1.4;
  }

  /* ── Freshness Bar ── */
  .freshness-wrap {
    margin-bottom: 0.6rem;
  }

  .freshness-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
  }

  .freshness-bar-bg {
    height: 10px;
    background: #e0e8d8;
    border-radius: 99px;
    overflow: hidden;
  }

  .freshness-bar-fill {
    height: 100%;
    width: 62%;   /* 59.7h of 96h ≈ 62% */
    border-radius: 99px;
    background: linear-gradient(to right, var(--green), #8cc63f, #f5c842);
    position: relative;
  }

  /* Animated shimmer on bar */
  .freshness-bar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,255,255,0.35) 50%,
      transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
  }

  @keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
  }

  .freshness-status {
    margin-top: 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  /* Identity box */
  .identity-box {
    background: var(--green-light);
    border: 1px solid var(--green-mid);
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    font-size: 0.75rem;
    color: var(--text);
    line-height: 1.7;
    margin-top: 0.9rem;
  }

  .identity-box strong {
    color: var(--green-dark);
  }

  .identity-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  /* ══════════════════════════════
     EXPLAINER COLUMN (right)
  ══════════════════════════════ */
  .explainer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* ── Info card ── */
  .info-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 2px 12px rgba(46,90,24,0.06);
  }

  .info-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  .icon-green  { background: var(--green-light); }
  .icon-amber  { background: var(--amber-light); }
  .icon-soil   { background: #ede8e0; }

  .info-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.3;
  }
  .info-card-body {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ── Price ladder ── */
  .price-ladder {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-top: 0.65rem;
  }

  .ladder-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
  }

  .ladder-bar-wrap {
    flex: 1;
    height: 7px;
    background: #eee;
    border-radius: 99px;
    overflow: hidden;
  }
  .ladder-bar {
    height: 100%;
    border-radius: 99px;
  }
  .bar-green  { background: var(--green);  width: 40%; }
  .bar-amber  { background: var(--amber);  width: 65%; }
  .bar-red    { background: var(--red);    width: 90%; }

  .ladder-label { width: 90px; color: var(--muted); }
  .ladder-price { width: 55px; font-weight: 700; text-align: right; }
  .ladder-price.low  { color: var(--green); }
  .ladder-price.mid  { color: var(--amber); }
  .ladder-price.high { color: var(--red);   }

  /* ── Freshness → Price link card ── */
  .link-card {
    background: linear-gradient(135deg, var(--green-dark) 0%, #3d6b20 100%);
    border-radius: 16px;
    padding: 1.1rem 1.2rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(46,90,24,0.2);
  }

  .link-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .link-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .link-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    position: relative;
  }

  /* connector line between steps */
  .link-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 38px;
    width: 2px;
    height: calc(100% - 18px);
    background: rgba(255,255,255,0.2);
  }

  .step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .step-text {
    font-size: 0.78rem;
    line-height: 1.5;
    opacity: 0.92;
    padding-top: 0.3rem;
  }

  .step-text strong { opacity: 1; color: #d4f5a8; }

  /* ── CTA ── */
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    background: #fff;
    color: var(--green-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.18s, transform 0.18s;
  }
  .cta-btn:hover {
    background: var(--green-mid);
    transform: translateX(3px);
  }

  /* ══════════════════════════════
     BOTTOM TRUST STRIP
  ══════════════════════════════ */
  .trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .trust-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    color: var(--green-dark);
    font-weight: 600;
  }
  
  .sa-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 32px 0 48px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sa-card {
  background: #ffffff;
  border: 1px solid #e8e4df;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  cursor: default;
}

.sa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  border-color: #c8c4bf;
}

.sa-card:hover .sa-icon-wrap {
  transform: scale(1.1);
}

/* ── Hero panel ── */
.sa-hero {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sa-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .08;
}

.sa-icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform .25s ease;
}

.sa-icon {
  font-size: 52px;
  line-height: 1;
  display: block;
}

.sa-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
}

/* ── Body ── */
.sa-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sa-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a18;
  margin: 0;
  line-height: 1.3;
}

.sa-desc {
  font-size: 13px;
  color: #5f5e5a;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.sa-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  border: 1.5px solid;
  transition: opacity .15s ease, transform .15s ease;
}

.sa-cta:hover {
  opacity: .85;
  transform: translateX(2px);
}

.sa-arrow {
  font-size: 14px;
  transition: transform .15s ease;
}

.sa-cta:hover .sa-arrow {
  transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sa-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .sa-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   ShopApni — Home Made Section  (scoped with sa-hm-)
   ===================================================== */

.sa-hm-section {
  position: relative;
  overflow: hidden;
  background: #fdf8f2;
  border-radius: 18px;
  padding: 64px 40px 56px;
  margin: 48px 0;
  font-family: 'DM Sans', sans-serif;
}

/* decorative blobs */
.sa-hm-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  opacity: .35;
}
.sa-hm-blob--1 {
  width: 340px; height: 340px;
  background: #d4edda;
  top: -80px; left: -60px;
}
.sa-hm-blob--2 {
  width: 260px; height: 260px;
  background: #ffe8c8;
  bottom: -60px; right: -40px;
}

/* inner */
.sa-hm-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

/* header */
.sa-hm-header {
  text-align: center;
  margin-bottom: 44px;
}
.sa-hm-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7a9e7e;
  background: rgba(122,158,126,.12);
  border-radius: 40px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.sa-hm-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #2c3e2d;
  line-height: 1.15;
  margin: 0 0 16px;
}
.sa-hm-title em {
  font-style: italic;
  color: #5a8a60;
}
.sa-hm-subtitle {
  max-width: 560px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.7;
  color: #5a6657;
  font-weight: 300;
}

/* grid */
.sa-hm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

/* card */
.sa-hm-card {
  background: #fff;
  border: 1px solid #e8efe8;
  border-radius: 14px;
  padding: 28px 22px 24px;
  transition: transform .22s ease, box-shadow .22s ease;
  animation: sa-hm-fadeup .5s ease both;
  animation-delay: var(--delay, 0s);
}
.sa-hm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(90,138,96,.14);
}
.sa-hm-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}
.sa-hm-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #2c3e2d;
  margin: 0 0 8px;
}
.sa-hm-card__text {
  font-size: 13.5px;
  color: #6a7d67;
  line-height: 1.65;
  margin: 0;
}

/* category strip */
.sa-hm-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.sa-hm-cat {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #3d6b42;
  background: rgba(90,138,96,.1);
  border: 1px solid rgba(90,138,96,.22);
  border-radius: 40px;
  padding: 7px 18px;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.sa-hm-cat:hover {
  background: #5a8a60;
  color: #fff;
  border-color: #5a8a60;
}

/* CTA */
.sa-hm-cta-wrap {
  text-align: center;
}
.sa-hm-cta {
  display: inline-block;
  background: #3d6b42;
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 13px 34px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.sa-hm-cta:hover {
  background: #2c4f30;
  transform: translateY(-2px);
}

/* quiet tagline */
.sa-hm-tagline {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-size: 10.5px;
  color: #aabea7;
  letter-spacing: .04em;
  font-style: italic;
  pointer-events: none;
  user-select: none;
}

/* animation */
@keyframes sa-hm-fadeup {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sa-hm-header { animation: sa-hm-fadeup .5s ease both; }
.sa-hm-cats   { animation: sa-hm-fadeup .5s .32s ease both; }
.sa-hm-cta-wrap { animation: sa-hm-fadeup .5s .38s ease both; }

/* responsive */
@media (max-width: 600px) {
  .sa-hm-section { padding: 44px 20px 44px; border-radius: 12px; }
  .sa-hm-grid { grid-template-columns: 1fr 1fr; }
  .sa-hm-tagline { position: static; display: block; text-align: right; margin-top: 20px; }
}
@media (max-width: 420px) {
  .sa-hm-grid { grid-template-columns: 1fr; }
}

  :root {
    --green:       #4a7c2f;
    --green-dark:  #2e5a18;
    --green-light: #e8f5e0;
    --bg:          #f5f5f0;
    --card-bg:     #ffffff;
    --text-muted:  #7a7a6e;
    --speed:       28s;
  }

  .marquee-section {
    width: 100%;
    overflow: hidden;
    padding: 2.5rem 0;
  }

  .marquee-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem;
    margin-bottom: 1.4rem;
  }

  .marquee-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
  }

  .marquee-divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #d0d0c8, transparent);
  }

  .marquee-track-wrap {
    position: relative;
  }
  .marquee-track-wrap::before,
  .marquee-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .marquee-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
  }
  .marquee-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
  }

  .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll var(--speed) linear infinite;
  }
  .marquee-track:hover { animation-play-state: paused; }

  @keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .brand-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 0.75rem;
    padding: 0.6rem 1.4rem;
    background: var(--card-bg);
    border: 1.5px solid #e4e4dc;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    height: 60px;
    min-width: 130px;
  }
  .brand-pill:hover {
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(74,124,47,0.15);
    transform: translateY(-2px);
  }

  .brand-text {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--green-dark);
    text-transform: uppercase;
    white-space: nowrap;
  }

  .brand-pill.own-brand {
    background: var(--green-light);
    border-color: var(--green);
  }
  .brand-pill.own-brand::before {
    content: '🌿';
    margin-right: 0.4rem;
    font-size: 0.9rem;
  }

  @media (prefers-reduced-motion: reduce) {
    .marquee-track {
      animation: none;
      flex-wrap: wrap;
      width: 100%;
      justify-content: center;
      padding: 0 1rem;
      gap: 0.75rem;
    }
    .marquee-track-wrap::before,
    .marquee-track-wrap::after { display: none; }
  }
  
   :root {
    --green:      #4a7c2f;
    --green-dark: #2e5a18;
    --green-light:#e8f5e0;
    --amber:      #c8820a;
    --text:       #2b2b2b;
    --muted:      #6b6b6b;
    --radius:     14px;
    --card-size:  140px;
  }

  .cat-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  .cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
  }

  .cat-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.55rem 1.2rem 0.55rem 1rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-left: -1rem;
    position: relative;
  }

  .cat-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0; height: 0;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--green-dark);
  }

  .cat-title svg { flex-shrink: 0; }

  .cat-viewall {
    color: var(--amber);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.2s;
    white-space: nowrap;
  }
  .cat-viewall:hover { border-color: var(--amber); }

  .cat-fade-wrap { position: relative; }
  .cat-fade-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px;
    height: calc(100% - 12px);
    background: linear-gradient(to right, transparent, #f5f5f0);
    pointer-events: none;
  }

  .cat-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--green-light) transparent;
  }
  .cat-track::-webkit-scrollbar { height: 4px; }
  .cat-track::-webkit-scrollbar-track { background: transparent; }
  .cat-track::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 99px; }

  .cat-card {
    flex: 0 0 var(--card-size);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.18s ease;
  }
  .cat-card:hover { transform: translateY(-4px); }
  .cat-card:hover .cat-img-wrap { box-shadow: 0 8px 24px rgba(74,124,47,0.25); }

  .cat-img-wrap {
    width: var(--card-size);
    height: var(--card-size);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    background: var(--green-light);
    transition: box-shadow 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
  }

  .cat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.01em;
    max-width: var(--card-size);
  }

  .cat-hint {
    display: none;
    font-size: 0.72rem;
    color: var(--muted);
    text-align: right;
    margin-top: 0.35rem;
    letter-spacing: 0.03em;
  }

  @media (max-width: 600px) {
    :root { --card-size: 110px; }
    .cat-title { font-size: 0.85rem; }
    .cat-label { font-size: 0.75rem; }
    .cat-img-wrap { font-size: 2.5rem; }
    .cat-hint { display: block; }
  }

  @media (min-width: 601px) and (max-width: 900px) {
    :root { --card-size: 120px; }
  }

  @media (hover: hover) {
    .cat-fade-wrap::after { display: none; }
    .cat-track { scrollbar-width: none; }
    .cat-track::-webkit-scrollbar { display: none; }
  }
  
     *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --brown:       #8b6b3f;
      --cream:       #fdfcf7;
      --cream-dim:   rgba(253,252,247,.65);
      --cream-faint: rgba(253,252,247,.1);
      --green:       #80bb01;
      --green-dark:  #5d8a00;
      --gold:        #c8a84b;
    }

    body {
     font-family: 'Outfit', sans-serif;
     background: #ffffff !important;
    }

    /* ── Guardian Bar ── */
    .guardian-bar {
      width: 100%;
      background: var(--brown);
      position: relative;
      overflow: hidden;
    }

    /* thin gold top rule */
    .guardian-bar::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .guardian-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.9rem 2rem;
      display: flex;
      align-items: center;
      gap: 1.2rem;
      flex-wrap: wrap;
    }

    /* label */
    .g-label {
      font-family: 'Fraunces', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--cream);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .g-label em {
      font-style: italic;
      font-weight: 300;
      color: var(--gold);
    }

    /* divider */
    .g-divider {
      width: 1px;
      height: 28px;
      background: rgba(253,252,247,.2);
      flex-shrink: 0;
    }

    /* tabs */
    .g-tabs {
      display: flex;
      gap: 0.4rem;
      flex: 1;
      flex-wrap: wrap;
    }

    .g-tab {
      font-family: 'Outfit', sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--cream-dim);
      background: var(--cream-faint);
      border: 1px solid rgba(253,252,247,.12);
      border-radius: 50px;
      padding: 0.3rem 0.85rem;
      white-space: nowrap;
      cursor: default;
    }

    /* CTA */
    .g-btn {
      font-family: 'Outfit', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      color: #fff;
      background: var(--green);
      text-decoration: none;
      border-radius: 50px;
      padding: 0.45rem 1.2rem;
      white-space: nowrap;
      margin-left: auto;
      transition: background .2s, transform .15s;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .g-btn:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    @media (max-width: 600px) {
      .guardian-inner { padding: 0.8rem 1rem; gap: 0.8rem; }
      .g-divider { display: none; }
      .g-btn { margin-left: 0; }
    }
    
     :root {
    --green:       #4a7c2f;
    --green-dark:  #2e5a18;
    --green-light: #e8f5e0;
    --green-mid:   #c5e8a8;
    --amber:       #c8820a;
    --bg:          #f5f5f0;
    --card:        #ffffff;
    --text:        #1e2d14;
    --muted:       #6b7a5e;
    --border:      #dde8d4;
  }

  .blog-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  /* ── Header ── */
  .blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .blog-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 0.25rem;
  }

  .blog-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.2;
    margin: 0;
  }

  .blog-viewall {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 1px;
    transition: border-color 0.18s;
    white-space: nowrap;
  }
  .blog-viewall:hover { border-color: var(--amber); }

  /* ── Equal 3-column grid ── */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
  }

  @media (max-width: 760px) {
    .blog-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 1rem;
      padding-bottom: 0.5rem;
      scrollbar-width: none;
    }
    .blog-grid::-webkit-scrollbar { display: none; }
  }

  /* ── Card ── */
  .blog-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 2px 12px rgba(46,90,24,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    scroll-snap-align: start;
  }

  @media (max-width: 760px) {
    .blog-card { flex: 0 0 78vw; max-width: 300px; }
  }

  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46,90,24,0.14);
  }

  /* ── Emoji thumbnail — no images ── */
  .card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .blog-card:hover .card-thumb { background: var(--green-mid); }

  /* Category tag */
  .card-tag {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
  }
  .tag-green { background: rgba(74,124,47,0.90);  color: #fff; }
  .tag-amber { background: rgba(200,130,10,0.90);  color: #fff; }
  .tag-soil  { background: rgba(120,80,40,0.88);   color: #fff; }

  /* ── Card body ── */
  .card-body {
    padding: 1rem 1.15rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    color: var(--muted);
    margin-bottom: 0.55rem;
  }

  .card-meta-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--muted);
    opacity: 0.5;
  }

  .card-heading {
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--green-dark);
    margin-bottom: 0.55rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-excerpt {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    margin-bottom: 1rem;
  }

  .card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: auto;
    transition: gap 0.18s;
  }
  .blog-card:hover .card-read-more { gap: 0.55rem; }

  .read-more-arrow {
    font-style: normal;
    font-size: 1rem;
    transition: transform 0.18s;
  }
  .blog-card:hover .read-more-arrow { transform: translateX(3px); }

  /* ── Footer ── */
  .blog-footer {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
  }

  .blog-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.7rem 1.6rem;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(46,90,24,0.25);
    transition: background 0.18s, transform 0.18s;
  }
  .blog-footer-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
  }

  .swipe-hint {
    display: none;
    font-size: 0.7rem;
    color: var(--muted);
    text-align: center;
    margin-top: 0.6rem;
    letter-spacing: 0.04em;
  }
  @media (max-width: 760px) { .swipe-hint { display: block; } }
  
 section.sa-three-links {
  padding: 2rem 1rem;
  background: var(--cream);
}

section.sa-three-links .sa-link-card {
  background: #fff;
  border: 1px solid var(--green-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
}

section.sa-three-links .sa-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

section.sa-three-links .sa-link-title {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

section.sa-three-links .sa-link-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

section.sa-three-links .sa-link-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--green);
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

section.sa-three-links .sa-link-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}
.sa-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop: 3 columns */
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* 📱 Mobile view: stack vertically */
@media (max-width: 768px) {
  .sa-links-grid {
    grid-template-columns: 1fr; /* mobile: single column per row */
  }
}
.sa-link-card {
  background: #fff;
  border: 1px solid var(--green-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  display: flex;              /* flex layout */
  flex-direction: column;     /* vertical stack */
  justify-content: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.sa-link-btn {
  margin-top: auto;           /* push button to bottom */
}
