/* ══════════════════════════════════════════════════════════
   Muhuga — Modern Design System
   ══════════════════════════════════════════════════════════ */

/* ── WordPress Conflict Overrides ─────────────────────────── */
/* Neutralise WP block-library padding/margin injections */
.wp-block, .wp-block-group, .wp-block-columns,
.wp-block-image, .wp-block-paragraph, .wp-site-blocks {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    padding: 0 !important;
}
/* entry-content: prose defaults for generic pages */
.entry-content { display: block; }
.entry-content p  { margin-bottom: 1.1rem; line-height: 1.8; }
.entry-content h2 { font-size: 1.5rem; font-weight: 700; margin: 1.75rem 0 .75rem; }
.entry-content h3 { font-size: 1.2rem; font-weight: 600; margin: 1.5rem 0 .6rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content li { margin-bottom: .35rem; }
.entry-content a  { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
/* WordPress sometimes forces SVG emoji images */
img.emoji { display: inline !important; border: none !important; box-shadow: none !important;
            height: 1em !important; width: 1em !important; vertical-align: -0.1em !important; }
/* WP adds is-layout-flow margins that break sections */
[class*="is-layout"] { margin-block-start: 0 !important; margin-block-end: 0 !important; }

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
       color: #0f172a !important; background: #fff !important; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
button { font-family: inherit; cursor: pointer; }

/* ── Design Tokens ────────────────────────────────────────── */
:root {
    --green:         #16a34a;
    --green-dark:    #14532d;
    --green-mid:     #15803d;
    --green-light:   #f0fdf4;
    --green-pale:    #dcfce7;
    --green-vivid:   #22c55e;
    --black:         #0f172a;
    --ink:           #1e293b;
    --gray-600:      #475569;
    --gray-400:      #94a3b8;
    --gray-200:      #e2e8f0;
    --gray-100:      #f1f5f9;
    --gray-50:       #f8fafc;
    --white:         #ffffff;
    --radius-sm:     6px;
    --radius:        12px;
    --radius-lg:     18px;
    --radius-xl:     24px;
    --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
    --shadow:        0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.05);
    --shadow-md:     0 10px 15px -3px rgba(0,0,0,.07), 0 4px 6px -2px rgba(0,0,0,.04);
    --shadow-lg:     0 20px 25px -5px rgba(0,0,0,.08), 0 10px 10px -5px rgba(0,0,0,.04);
    --shadow-xl:     0 25px 50px -12px rgba(0,0,0,.15);
}

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.page-wrapper { padding: 2.5rem 0 5rem; min-height: 60vh; }

/* ── Announcement Bar ─────────────────────────────────────── */
.ann-bar { background: var(--green); color: #fff; font-size: .8rem; font-weight: 500; text-align: center; padding: .55rem 1rem; }
.ann-bar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky; top: 0; z-index: 200;
    transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; gap: 1.25rem; height: 68px; }

.logo { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.logo-mark { width: 36px; height: 36px; border-radius: 10px; background: var(--green); color: #fff; font-size: 1.1rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-text { font-size: 1.3rem; font-weight: 800; color: var(--black); letter-spacing: -.03em; }

.search-wrap { flex: 1; max-width: 560px; }
.search-box { display: flex; align-items: center; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 50px; height: 44px; overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.search-box:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.1); background: #fff; }
.search-cat { border: none; background: transparent; padding: 0 .75rem 0 1rem; font-size: .82rem; font-weight: 600; color: var(--ink); cursor: pointer; height: 100%; border-right: 1.5px solid var(--gray-200); min-width: 100px; outline: none; }
.search-sep { display: none; }
.search-field { flex: 1; border: none; background: transparent; padding: 0 .75rem; font-size: .9rem; color: var(--black); outline: none; min-width: 0; }
.search-field::placeholder { color: var(--gray-400); }
.search-submit { background: var(--green); color: #fff; border: none; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 0 50px 50px 0; flex-shrink: 0; margin-right: -1px; transition: background .15s; }
.search-submit:hover { background: var(--green-mid); }

.header-nav { display: flex; gap: .25rem; }
.nav-link { padding: .45rem .85rem; border-radius: 8px; font-size: .88rem; font-weight: 600; color: var(--gray-600); transition: all .15s; white-space: nowrap; }
.nav-link:hover { color: var(--green); background: var(--green-light); }

.header-actions { display: flex; gap: .6rem; flex-shrink: 0; }
.btn-ghost { padding: .45rem 1rem; border-radius: 8px; font-size: .88rem; font-weight: 600; border: 1.5px solid var(--gray-200); color: var(--ink); background: transparent; transition: all .15s; white-space: nowrap; display: inline-flex; align-items: center; }
.btn-ghost:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.btn-solid { padding: .45rem 1.1rem; border-radius: 8px; font-size: .88rem; font-weight: 700; background: var(--green); color: #fff; border: 1.5px solid var(--green); transition: all .15s; white-space: nowrap; display: inline-flex; align-items: center; }
.btn-solid:hover { background: var(--green-mid); border-color: var(--green-mid); }
.w-full { display: block; text-align: center; width: 100%; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: .4rem; width: 36px; height: 36px; justify-content: center; align-items: center; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .2s; }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 190; padding: 5rem 1.5rem 2rem; flex-direction: column; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu nav a { padding: .9rem 1rem; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--gray-100); }
.mobile-menu nav a:hover { color: var(--green); background: var(--green-light); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-200); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero { position: relative; overflow: hidden; background: var(--black); padding: 5rem 0 4rem; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .4; }
.hero-blob-1 { width: 600px; height: 600px; background: var(--green-mid); top: -200px; left: -100px; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--green-vivid); bottom: -100px; right: 5%; opacity: .2; }
.hero-grid-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 50px 50px; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: #a7f3d0; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-vivid); flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.3); } }
.hero-title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.1; color: #fff; letter-spacing: -.04em; margin-bottom: 1.25rem; }
.hero-title-accent { background: linear-gradient(135deg, #4ade80, #22c55e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.cta-primary { display: inline-flex; align-items: center; gap: .5rem; background: var(--green); color: #fff; padding: .85rem 1.75rem; border-radius: 50px; font-size: .95rem; font-weight: 700; border: 2px solid var(--green); transition: all .2s; }
.cta-primary:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(22,163,74,.35); }
.cta-secondary { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.08); color: #fff; padding: .85rem 1.75rem; border-radius: 50px; font-size: .95rem; font-weight: 700; border: 2px solid rgba(255,255,255,.2); transition: all .2s; }
.cta-secondary:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); }
.cta-outline { display: inline-flex; align-items: center; gap: .5rem; background: transparent; color: var(--green); padding: .75rem 1.5rem; border-radius: 50px; font-size: .9rem; font-weight: 700; border: 2px solid var(--green); transition: all .2s; }
.cta-outline:hover { background: var(--green); color: #fff; }
.cta-white { background: #fff; color: var(--green-dark); border-color: #fff; }
.cta-white:hover { background: var(--green-light); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.cta-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.cta-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.hero-social-proof { display: flex; align-items: center; gap: .85rem; font-size: .85rem; color: rgba(255,255,255,.5); }
.sp-avatars { display: flex; }
.sp-av { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--black); color: #fff; font-size: .75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-left: -8px; flex-shrink: 0; }
.sp-av:first-child { margin-left: 0; }
.hero-social-proof strong { color: rgba(255,255,255,.85); }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card-stack { position: relative; width: 340px; }
.hcard { background: rgba(255,255,255,.08); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; color: #fff; }
.hcard-main { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.hcard-icon { font-size: 2rem; }
.hcard-info { flex: 1; }
.hcard-info strong { display: block; font-size: .95rem; font-weight: 700; }
.hcard-info span { font-size: .8rem; color: rgba(255,255,255,.5); }
.hcard-price { font-size: .9rem; font-weight: 800; color: #4ade80; background: rgba(22,163,74,.2); padding: .3rem .75rem; border-radius: 50px; white-space: nowrap; flex-shrink: 0; }
.hcard-float { display: flex; align-items: center; gap: .85rem; padding: .85rem 1.25rem; position: absolute; width: 220px; }
.hcard-float-1 { top: 70px; right: -40px; }
.hcard-float-2 { bottom: 60px; right: -30px; }
.hcard-f-icon { font-size: 1.4rem; flex-shrink: 0; }
.hcard-float strong { display: block; font-size: .82rem; font-weight: 700; }
.hcard-float span { font-size: .74rem; color: rgba(255,255,255,.5); }
.hero-cat-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.cat-pill { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); font-size: .78rem; font-weight: 600; padding: .3rem .75rem; border-radius: 50px; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 1.5rem 0; }
.stats-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: .5rem 2.5rem; }
.stat-item strong { font-size: 1.7rem; font-weight: 900; color: var(--green); letter-spacing: -.04em; line-height: 1; }
.stat-item span { font-size: .75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; margin-top: .2rem; white-space: nowrap; }
.stat-div { width: 1px; height: 40px; background: var(--gray-200); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   HOME SECTIONS
   ══════════════════════════════════════════════════════════ */
.home-section { padding: 4rem 0; }
.home-section-alt { background: var(--gray-50); }
.home-section-dark { background: var(--black); }

.section-title-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; gap: 1rem; }
.section-title-row.centered { justify-content: center; text-align: center; }
.section-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: .35rem; }
.section-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--black); letter-spacing: -.03em; line-height: 1.2; }
.section-desc { color: var(--gray-600); font-size: .95rem; margin-top: .5rem; }
.see-all { font-size: .85rem; font-weight: 700; color: var(--green); border: 1.5px solid var(--gray-200); border-radius: 50px; padding: .45rem 1rem; white-space: nowrap; flex-shrink: 0; transition: all .15s; }
.see-all:hover { border-color: var(--green); background: var(--green-light); }

/* ── Category Mosaic ──────────────────────────────────────── */
.cat-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; }
.cat-tile { display: flex; align-items: center; gap: 1rem; background: var(--tile-bg, var(--gray-50)); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem; text-decoration: none; position: relative; overflow: hidden; transition: all .2s; }
.cat-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--green); }
.cat-tile-featured { grid-column: span 2; grid-row: span 2; flex-direction: column; align-items: flex-start; justify-content: flex-end; background: linear-gradient(145deg, var(--green-dark), var(--green)); border-color: transparent; padding: 2rem; min-height: 220px; }
.cat-tile-featured .cat-tile-icon { font-size: 3.5rem; margin-bottom: auto; }
.cat-tile-featured strong { font-size: 1.3rem; font-weight: 800; color: #fff; }
.cat-tile-featured span { color: rgba(255,255,255,.7); font-size: .88rem; }
.cat-tile-featured .cat-tile-arrow { position: absolute; top: 1.5rem; right: 1.5rem; color: rgba(255,255,255,.6); font-size: 1.1rem; }
.cat-tile-icon { font-size: 1.75rem; flex-shrink: 0; }
.cat-tile-content strong { display: block; font-size: .92rem; font-weight: 700; color: var(--black); line-height: 1.3; }
.cat-tile-content span { font-size: .78rem; color: var(--gray-600); margin-top: .15rem; display: block; }
.cat-tile-arrow { margin-left: auto; color: var(--gray-400); font-size: .9rem; flex-shrink: 0; transition: transform .2s; }
.cat-tile:hover .cat-tile-arrow { transform: translateX(3px); color: var(--green); }

/* ── Tabs ─────────────────────────────────────────────────── */
.tab-bar { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: 1.5rem; padding: .3rem; background: var(--gray-100); border-radius: 50px; width: fit-content; }
.tab-btn { padding: .45rem 1.1rem; border-radius: 50px; font-size: .85rem; font-weight: 600; color: var(--gray-600); background: transparent; border: none; transition: all .15s; white-space: nowrap; }
.tab-btn:hover { color: var(--green); }
.tab-btn.active { background: #fff; color: var(--green); box-shadow: var(--shadow-sm); font-weight: 700; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-spinner { display: flex; justify-content: center; padding: 3rem; }
.spinner { width: 36px; height: 36px; border-radius: 50%; border: 3px solid var(--gray-200); border-top-color: var(--green); animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Product Card (mcard) ─────────────────────────────────── */
.mcard-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.mcard { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: all .2s; }
.mcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--green); }
.mcard-img { position: relative; overflow: hidden; background: var(--gray-50); aspect-ratio: 4/3; }
.mcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.mcard:hover .mcard-img img { transform: scale(1.05); }
.mcard-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.75rem; background: var(--green-light); }
.mcard-badge { position: absolute; top: .6rem; left: .6rem; background: var(--green); color: #fff; font-size: .65rem; font-weight: 700; padding: .2rem .55rem; border-radius: 50px; }
.mcard-body { padding: .9rem; flex: 1; display: flex; flex-direction: column; gap: .2rem; }
.mcard-name { font-size: .88rem; font-weight: 700; color: var(--black); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mcard-price { font-size: .95rem; font-weight: 800; color: var(--green); line-height: 1.2; margin-top: .15rem; }
.mcard-unit { font-size: .78rem; font-weight: 500; color: var(--gray-400); }
.mcard-moq { font-size: .74rem; color: var(--gray-400); }
.mcard-farm { font-size: .74rem; color: var(--gray-600); margin-top: auto; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── How It Works steps ───────────────────────────────────── */
.hiw-section { background: var(--gray-50); }
.hiw-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.hiw-steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px); height: 2px; border-top: 2px dashed var(--gray-200); z-index: 0; }
.hiw-step { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; text-align: center; position: relative; z-index: 1; transition: all .2s; }
.hiw-step:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.hiw-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; font-size: .82rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.hiw-step-icon { font-size: 2rem; margin-bottom: .75rem; }
.hiw-step h3 { font-size: .95rem; font-weight: 800; color: var(--black); margin-bottom: .5rem; }
.hiw-step p { font-size: .82rem; color: var(--gray-600); line-height: 1.65; }

/* ── Farm Grid (homepage) ─────────────────────────────────── */
.farm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.farm-card { background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.25rem; text-decoration: none; transition: all .2s; display: flex; flex-direction: column; gap: .75rem; }
.farm-card:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); border-color: var(--green-vivid); }
.farm-card-header { display: flex; align-items: center; gap: .85rem; }
.farm-avatar { width: 42px; height: 42px; border-radius: 10px; background: var(--green); color: #fff; font-size: 1.1rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.farm-name { font-size: .9rem; font-weight: 700; color: #fff; line-height: 1.3; }
.farm-loc { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .1rem; }
.farm-verified-badge { margin-left: auto; width: 28px; height: 28px; border-radius: 50%; background: rgba(22,163,74,.25); color: #4ade80; font-size: .75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.farm-crops { font-size: .78rem; color: rgba(255,255,255,.4); line-height: 1.5; }
.farm-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.07); }
.farm-tag { font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #4ade80; background: rgba(22,163,74,.15); padding: .2rem .6rem; border-radius: 50px; }
.farm-arrow { color: rgba(255,255,255,.3); transition: all .2s; }
.farm-card:hover .farm-arrow { color: #4ade80; transform: translateX(3px); }

/* ── Trust Section ────────────────────────────────────────── */
.trust-section { background: var(--green-light); padding: 4rem 0; border-top: 1px solid var(--green-pale); border-bottom: 1px solid var(--green-pale); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.trust-item { text-align: center; }
.trust-icon { font-size: 2.25rem; margin-bottom: .85rem; }
.trust-item h3 { font-size: .95rem; font-weight: 800; color: var(--black); margin-bottom: .5rem; }
.trust-item p { font-size: .85rem; color: var(--gray-600); line-height: 1.65; }

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band { background: var(--green-dark); position: relative; overflow: hidden; padding: 5rem 0; }
.cta-band-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-blob { position: absolute; border-radius: 50%; filter: blur(70px); }
.cta-blob-1 { width: 400px; height: 400px; background: var(--green); opacity: .3; top: -150px; left: -100px; }
.cta-blob-2 { width: 300px; height: 300px; background: var(--green-vivid); opacity: .15; bottom: -80px; right: 10%; }
.cta-band-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-band-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: #fff; letter-spacing: -.03em; margin-bottom: .75rem; }
.cta-band-text p { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 480px; }
.cta-band-actions { display: flex; gap: .85rem; flex-shrink: 0; flex-wrap: wrap; }

/* Empty/loading */
.empty-msg { display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: 3rem 1rem; }
.empty-msg span { font-size: 2.5rem; }
.empty-msg p { font-size: .9rem; color: var(--gray-400); }
.empty-msg a { color: var(--green); font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   GLOBAL COMPONENTS
   ══════════════════════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: .45rem; padding: .65rem 1.5rem; border-radius: 50px; font-size: .9rem; font-weight: 700; cursor: pointer; border: 2px solid transparent; transition: all .2s; white-space: nowrap; }
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(22,163,74,.3); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--gray-200); }
.btn-outline:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-sm { padding: .4rem .9rem; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; }

.badge { display: inline-block; padding: .2rem .7rem; border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge-green { background: var(--green-pale); color: var(--green-dark); }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }
.badge-orange { background: #fef3c7; color: #92400e; }
.badge-red { background: #fee2e2; color: #991b1b; }

.alert { padding: .9rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: .9rem; }
.alert-error { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
.alert-success { background: var(--green-light); color: var(--green-dark); border-left: 4px solid var(--green); }

.page-breadcrumb { font-size: .82rem; color: var(--gray-400); margin-bottom: 1.75rem; display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; }
.page-breadcrumb a { color: var(--green); font-weight: 600; }
.section-pre { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: .35rem; }

/* Auth */
.auth-wrapper { min-height: 80vh; display: flex; align-items: center; justify-content: center; background: var(--gray-50); padding: 2rem 1rem; }
.auth-box { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2.75rem; width: 100%; max-width: 440px; box-shadow: var(--shadow-xl); }
.auth-box-wide { max-width: 580px; }
.auth-logo { text-align: center; margin-bottom: 1.75rem; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.auth-box h1 { font-size: 1.6rem; font-weight: 900; text-align: center; margin-bottom: .5rem; letter-spacing: -.03em; }
.auth-sub { text-align: center; color: var(--gray-400); font-size: .9rem; margin-bottom: 1.75rem; }
.auth-sub a { color: var(--green); font-weight: 700; }
.auth-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .78rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: .05em; }
.form-input { border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); padding: .75rem 1rem; font-size: .95rem; transition: all .15s; width: 100%; background: #fff; font-family: inherit; color: var(--black); }
.form-input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.1); }
textarea.form-input { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.auth-footer { text-align: center; font-size: .9rem; color: var(--gray-400); margin-top: 1.1rem; }
.auth-footer a { color: var(--green); font-weight: 700; }
.auth-terms { font-size: .77rem; color: var(--gray-400); text-align: center; margin-top: .5rem; }
.auth-terms a { color: var(--green); }
.role-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-bottom: 1.75rem; }
.role-tab { padding: .7rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); background: #fff; cursor: pointer; font-size: .82rem; font-weight: 700; color: var(--gray-600); text-align: center; transition: all .15s; }
.role-tab.active { border-color: var(--green); color: var(--green); background: var(--green-light); }

/* ── Registration multi-step ──────────────────────────────── */
.reg-step-label { font-size: .78rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 1.25rem; }
.role-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-bottom: 1rem; }
.role-card { display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: 1.4rem 1rem; border: 2px solid var(--gray-200); border-radius: var(--radius-lg); cursor: pointer; text-align: center; transition: all .15s; background: #fff; }
.role-card:hover, .role-card.active { border-color: var(--green); background: var(--green-light); }
.role-card-icon { font-size: 2rem; line-height: 1; }
.role-card strong { font-size: .9rem; font-weight: 800; color: var(--black); }
.role-card span { font-size: .78rem; color: var(--gray-400); line-height: 1.4; }
.role-fields { display: flex; flex-direction: column; gap: 1.1rem; }
.role-fields-divider { font-size: .75rem; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: .08em; padding: .6rem 0 .2rem; border-top: 1.5px solid var(--gray-100); margin-bottom: -.2rem; }
.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: .4rem; margin-top: .4rem; }
.check-item { display: flex; align-items: center; gap: .45rem; font-size: .85rem; color: var(--ink); cursor: pointer; }
.check-item input[type=checkbox] { accent-color: var(--green); width: 1rem; height: 1rem; flex-shrink: 0; }
.pw-toggle { position: absolute; right: .8rem; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; padding: .2rem; color: var(--gray-400); opacity: .6; transition: opacity .15s; }
.pw-toggle:hover { opacity: 1; }
.btn-back-link { background: none; border: none; color: var(--green); font-size: .85rem; font-weight: 700; cursor: pointer; padding: 0; }
.btn-back-link:hover { text-decoration: underline; }
@media (max-width: 600px) { .role-cards { grid-template-columns: 1fr; } }

/* Catalog */
.catalog-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: start; }
.catalog-sidebar { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; position: sticky; top: 90px; }
.catalog-sidebar h3 { font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }
.filter-group { margin-bottom: 1.5rem; }
.filter-group > label { display: block; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--black); margin-bottom: .65rem; }
.filter-option { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--gray-600); margin-bottom: .4rem; cursor: pointer; }
.filter-option input { accent-color: var(--green); }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-200); font-size: .88rem; color: var(--gray-400); }
.page-title-bar { margin-bottom: 2.5rem; }
.page-title-bar h1 { font-size: 2rem; font-weight: 900; letter-spacing: -.03em; }
.page-title-bar p { color: var(--gray-600); margin-top: .3rem; font-size: .9rem; }
.produce-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.produce-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: all .2s; display: block; }
.produce-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--green); }
.produce-card img { width: 100%; height: 185px; object-fit: cover; }
.produce-card-img-placeholder { height: 185px; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.produce-card-body { padding: 1rem; }
.produce-card-body h3 { font-size: .93rem; font-weight: 700; margin: .35rem 0 .3rem; line-height: 1.3; }
.produce-farm { font-size: .77rem; color: var(--gray-400); margin-bottom: .5rem; }
.produce-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: .6rem; padding-top: .6rem; border-top: 1px solid var(--gray-200); }
.produce-price strong { color: var(--green); font-size: 1rem; font-weight: 800; }
.produce-price span { color: var(--gray-400); font-size: .77rem; }
.farms-grid-large { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.farm-card-large { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: all .2s; display: block; }
.farm-card-large:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--green); }
.farm-card-large img { width: 100%; height: 185px; object-fit: cover; }
.farm-card-body { padding: 1.1rem; }
.farm-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; margin-bottom: .4rem; }
.farm-card-header h3 { font-size: .93rem; font-weight: 700; }
.verified-badge { background: var(--green); color: #fff; font-size: .67rem; padding: .2rem .5rem; border-radius: 20px; white-space: nowrap; font-weight: 700; }
.farm-location { font-size: .79rem; color: var(--gray-400); margin-bottom: .35rem; }

/* Product & Farm Detail */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.main-image img { border-radius: var(--radius); width: 100%; max-height: 460px; border: 1.5px solid var(--gray-200); }
.product-info h1 { font-size: 1.85rem; font-weight: 900; margin: .5rem 0; line-height: 1.2; letter-spacing: -.02em; }
.product-price-box { background: var(--green-light); border: 1.5px solid var(--green-pale); border-radius: var(--radius); padding: 1.35rem; margin-bottom: 1.75rem; }
.product-price { font-size: 2rem; font-weight: 900; color: var(--green); }
.product-specs { border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.75rem; }
.spec-row { display: flex; justify-content: space-between; padding: .7rem 1rem; font-size: .85rem; border-bottom: 1px solid var(--gray-200); }
.spec-row:last-child { border-bottom: none; }
.spec-row span { color: var(--gray-400); font-size: .77rem; text-transform: uppercase; font-weight: 600; }
.product-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.farm-hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem; }
.farm-hero-placeholder { height: 320px; background: var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 6rem; border-radius: var(--radius-lg); }
.farm-hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,.8), transparent); padding: 2.5rem; }
.farm-hero-content h1 { color: #fff; font-size: 2.2rem; font-weight: 900; letter-spacing: -.03em; }
.farm-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.farm-info-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.25rem; }
.farm-info-card h3 { font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.1rem; }
.info-row { display: flex; justify-content: space-between; padding-bottom: .85rem; border-bottom: 1px solid var(--gray-200); font-size: .85rem; margin-bottom: .85rem; }
.info-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-row span { color: var(--gray-400); font-size: .77rem; text-transform: uppercase; font-weight: 600; }
.verified-badge-lg { background: var(--green); color: #fff; font-size: .72rem; padding: .3rem .75rem; border-radius: 50px; font-weight: 700; }

/* Dashboard */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
.dashboard-sidebar { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; position: sticky; top: 80px; }
.dash-user { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-200); }
.dash-avatar { width: 44px; height: 44px; border-radius: 10px; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 900; flex-shrink: 0; }
.dash-user strong { display: block; font-size: .9rem; font-weight: 700; }
.dash-nav { display: flex; flex-direction: column; gap: .15rem; }
.dash-nav-item { padding: .65rem .9rem; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 600; color: var(--gray-600); transition: all .15s; display: block; }
.dash-nav-item:hover { background: var(--green-light); color: var(--green); }
.dash-nav-item.active { background: var(--green); color: #fff; }
.dash-logout { color: #dc2626 !important; margin-top: .5rem; border-top: 1px solid var(--gray-200); padding-top: .85rem !important; }
.dash-logout:hover { background: #fee2e2 !important; color: #dc2626 !important; }
.dashboard-main { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 2rem; min-height: 420px; }
.dash-tab h2 { font-size: 1.3rem; font-weight: 900; margin-bottom: 1.5rem; letter-spacing: -.02em; }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 1rem; }
.dash-stat-card { background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--green); line-height: 1; }
.stat-label { font-size: .72rem; color: var(--gray-400); margin-top: .35rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.dash-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.dash-table th { padding: .75rem 1rem; text-align: left; font-weight: 700; font-size: .75rem; text-transform: uppercase; border-bottom: 2px solid var(--gray-200); color: var(--gray-400); background: var(--gray-50); }
.dash-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--gray-200); }
.loading-text { color: var(--gray-400); font-size: .9rem; padding: 1rem 0; }

/* Modal */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(4px); }
.modal-box { background: #fff; border-radius: var(--radius-lg); padding: 2rem; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-xl); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.modal-header h3 { font-size: 1.1rem; font-weight: 800; }
.modal-close { background: var(--gray-100); border: none; border-radius: var(--radius-sm); width: 32px; height: 32px; cursor: pointer; color: var(--gray-400); font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--gray-200); }

/* Empty state */
.empty-state { text-align: center; padding: 4.5rem 1rem; }
.empty-state span { font-size: 4rem; display: block; margin-bottom: 1.25rem; }
.empty-state h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: .6rem; }
.empty-state p { color: var(--gray-400); margin-bottom: 1.75rem; font-size: .9rem; }

/* Pagination */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.page-num { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: .85rem; font-weight: 600; color: var(--gray-600); transition: all .15s; }
.page-num:hover, .page-num.active { background: var(--green); color: #fff; border-color: var(--green); }

/* Footer */
.site-footer { background: var(--black); color: #94a3b8; padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-logo { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.footer-logo .logo-mark { background: var(--green); }
.footer-col p { font-size: .84rem; line-height: 1.75; color: #475569; }
.footer-col h4 { color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: .84rem; margin-bottom: .65rem; }
.footer-col ul li a { color: #475569; transition: color .15s; }
.footer-col ul li a:hover { color: var(--green-vivid); }
.footer-social { display: flex; gap: .5rem; margin-top: 1.5rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid #1e293b; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #475569; transition: all .15s; }
.footer-social a:hover { border-color: var(--green); color: var(--green-vivid); }
.payment-badges { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .65rem; }
.pay-badge { background: #0f172a; color: #475569; font-size: .71rem; padding: .28rem .65rem; border-radius: var(--radius-sm); font-weight: 700; border: 1px solid #1e293b; }
.footer-bottom { border-top: 1px solid #0f172a; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .78rem; color: #334155; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: #334155; transition: color .15s; }
.footer-bottom-links a:hover { color: var(--green-vivid); }

/* Content pages */
.about-hero { padding: 3rem 0 2.5rem; border-bottom: 1px solid var(--gray-200); margin-bottom: 3rem; }
.about-hero h1 { font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 900; letter-spacing: -.03em; margin: .5rem 0 1rem; max-width: 700px; }
.about-lead { font-size: 1.1rem; color: var(--gray-600); line-height: 1.75; max-width: 680px; margin-bottom: 2rem; }
.about-hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.about-stat strong { display: block; font-size: 2rem; font-weight: 900; color: var(--green); }
.about-stat span { font-size: .8rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.about-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.about-main h2 { font-size: 1.4rem; font-weight: 900; margin: 2.5rem 0 .85rem; letter-spacing: -.02em; }
.about-main p { font-size: .95rem; color: #444; line-height: 1.85; margin-bottom: 1rem; }
.about-main ul { margin: .75rem 0 1.25rem 1.25rem; }
.about-main li { font-size: .95rem; color: #444; line-height: 1.75; margin-bottom: .5rem; }
.about-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 90px; }
.about-sidebar-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; }
.about-sidebar-card h3 { font-size: .95rem; font-weight: 800; margin-bottom: .5rem; }
.about-sidebar-card p { font-size: .84rem; color: var(--gray-400); margin-bottom: 1rem; line-height: 1.6; }
.contact-list { list-style: none; margin-top: .5rem; }
.contact-list li { font-size: .85rem; color: #444; margin-bottom: .5rem; }
.faq-hero { text-align: center; padding: 2.5rem 0 2rem; max-width: 680px; margin: 0 auto; }
.faq-hero h1 { font-size: 2.5rem; font-weight: 900; letter-spacing: -.03em; margin: .5rem 0 1rem; }
.faq-hero p { font-size: 1rem; color: var(--gray-600); line-height: 1.75; }
.faq-hero a { color: var(--green); font-weight: 600; }
.faq-tabs { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin: 2rem 0; }
.faq-tab { padding: .55rem 1.25rem; border: 1.5px solid var(--gray-200); border-radius: 50px; background: #fff; cursor: pointer; font-size: .85rem; font-weight: 600; color: var(--gray-600); transition: all .15s; }
.faq-tab.active, .faq-tab:hover { background: var(--green); color: #fff; border-color: var(--green); }
.faq-section { margin-bottom: 3rem; }
.faq-cat-title { font-size: 1.3rem; font-weight: 900; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 2px solid var(--black); }
.faq-list { display: flex; flex-direction: column; border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; background: #fff; border: none; padding: 1.25rem 1.5rem; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: .95rem; font-weight: 700; color: var(--black); transition: background .15s; }
.faq-question:hover { background: var(--gray-50); }
.faq-question[aria-expanded="true"] { background: var(--green-light); color: var(--green-dark); }
.faq-icon { font-size: 1.4rem; font-weight: 300; flex-shrink: 0; color: var(--green); transition: transform .2s; line-height: 1; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; }
.faq-answer.open { display: block; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; font-size: .92rem; color: #444; line-height: 1.8; }
.faq-cta { background: var(--black); border-radius: var(--radius-lg); margin: 3rem 0; }
.faq-cta-inner { padding: 3.5rem 2rem; text-align: center; }
.faq-cta h2 { font-size: 1.75rem; font-weight: 900; color: #fff; margin-bottom: .75rem; }
.faq-cta p { color: #475569; font-size: .95rem; max-width: 480px; margin: 0 auto; line-height: 1.7; }
.hiw-hero { text-align: center; padding: 2.5rem 0; max-width: 700px; margin: 0 auto; }
.hiw-hero h1 { font-size: 2.5rem; font-weight: 900; letter-spacing: -.03em; margin: .5rem 0 1rem; }
.hiw-hero p { font-size: 1rem; color: var(--gray-600); line-height: 1.75; }
.hiw-section-block { margin-bottom: 3rem; }
.hiw-section-block > h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 2rem; padding-bottom: .85rem; border-bottom: 2px solid var(--black); }
.hiw-step-row { display: flex; gap: 2rem; padding: 1.75rem 0; border-bottom: 1px solid var(--gray-200); align-items: flex-start; }
.hiw-step-row:last-child { border-bottom: none; }
.hiw-step-badge { width: 52px; height: 52px; border-radius: 50%; background: var(--black); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 900; flex-shrink: 0; }
.hiw-step-badge.green { background: var(--green); }
.hiw-step-body h3 { font-size: 1rem; font-weight: 800; margin-bottom: .5rem; }
.hiw-step-body p { font-size: .9rem; color: #444; line-height: 1.8; }
.hiw-divider { border-top: 2px dashed var(--gray-200); margin: 3rem 0; }
.hiw-trust { background: var(--black); border-radius: var(--radius-lg); padding: 3rem 2rem; margin: 3rem 0; text-align: center; }
.hiw-trust h2 { color: #fff; font-size: 1.5rem; font-weight: 900; margin-bottom: 2rem; }
.hiw-trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.hiw-trust-item { padding: 1.25rem .5rem; }
.trust-num { font-size: 2rem; font-weight: 900; color: var(--green-vivid); }
.trust-label { font-size: .75rem; color: #475569; text-transform: uppercase; letter-spacing: .06em; margin-top: .3rem; }
.hiw-faq-teaser { background: var(--green-light); border: 1.5px solid var(--green-pale); border-radius: var(--radius); padding: 1.75rem 2rem; text-align: center; margin-bottom: 3rem; }
.hiw-faq-teaser h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .4rem; }
.hiw-faq-teaser p { font-size: .9rem; color: #444; }
.hiw-faq-teaser a { color: var(--green); font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .mcard-grid { grid-template-columns: repeat(4, 1fr); }
    .farm-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-mosaic { grid-template-columns: repeat(3, 1fr); }
    .cat-tile-featured { grid-column: span 2; }
    .hiw-trust-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-social-proof { justify-content: center; }
    .hero-visual { display: none; }
    .hiw-steps { grid-template-columns: repeat(2, 1fr); }
    .hiw-steps::before { display: none; }
}
@media (max-width: 900px) {
    .mcard-grid { grid-template-columns: repeat(3, 1fr); }
    .farm-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-mosaic { grid-template-columns: repeat(2, 1fr); }
    .cat-tile-featured { grid-column: span 2; grid-row: span 1; }
    .produce-grid { grid-template-columns: repeat(2, 1fr); }
    .farms-grid-large { grid-template-columns: repeat(2, 1fr); }
    .about-layout { grid-template-columns: 1fr; }
    .about-sidebar { position: static; }
}
@media (max-width: 768px) {
    .header-nav { display: none; }
    .mobile-toggle { display: flex; }
    .search-wrap { order: 3; flex: 1 1 100%; max-width: 100%; }
    .header-inner { flex-wrap: wrap; height: auto; padding: .75rem 0; }
    .header-actions { display: none; }
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-sidebar { position: static; }
    .product-layout { grid-template-columns: 1fr; }
    .farm-detail-layout { grid-template-columns: 1fr; }
    .dashboard-layout { grid-template-columns: 1fr; }
    .dashboard-sidebar { position: static; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stat-item { padding: .75rem 1.25rem; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .cta-band-actions { justify-content: center; }
    .hiw-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .mcard-grid { grid-template-columns: repeat(2, 1fr); }
    .farm-grid { grid-template-columns: 1fr 1fr; }
    .cat-mosaic { grid-template-columns: 1fr 1fr; }
    .stat-div { display: none; }
    .section-title-row { flex-direction: column; align-items: flex-start; }
    .tab-bar { border-radius: var(--radius); }
}
@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .hiw-steps { grid-template-columns: 1fr; }
    .role-tabs { grid-template-columns: 1fr; }
    .produce-grid { grid-template-columns: 1fr; }
    .farms-grid-large { grid-template-columns: 1fr; }
    .hiw-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
