/* =====================================================
   JUMMAI EXPRESS — GLOBAL STYLESHEET
   International-grade agricultural marketplace
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --green:        #1a8a3c;
  --green-light:  #2db653;
  --green-glow:   #4ade80;
  --green-pale:   #f0faf4;
  --gold:         #d97706;
  --gold-light:   #fbbf24;
  --dark:         #0d1f0f;
  --dark-2:       #1c2e1e;
  --gray:         #6b7280;
  --gray-light:   #f3f4f6;
  --white:        #ffffff;
  --border:       #e5e7eb;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.06);
  --shadow:       0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.12);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-pill:  999px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --transition:   .25s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: #fafcfa;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── APP DOWNLOAD BAR ──────────────────────────────── */
.app-download-bar {
  background: var(--dark);
  color: #fff;
  padding: 9px 0;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.app-download-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.app-download-bar .bar-text {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .9;
}
.app-download-bar .bar-text i { color: var(--green-glow); font-size: 1rem; }
.app-download-bar .dl-btn {
  background: var(--green);
  color: #fff;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.app-download-bar .dl-btn:hover { background: var(--green-light); color: #fff; transform: translateY(-1px); }

/* ─── NAVBAR ────────────────────────────────────────── */
.farm-navbar {
  background: var(--dark);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.farm-navbar .container { padding-top: 10px; padding-bottom: 10px; }
.farm-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.farm-navbar .navbar-brand img { height: 40px; }
.navbar-toggler { border: none !important; color: #fff !important; font-size: 1.3rem; }
.navbar-toggler:focus { box-shadow: none !important; }

/* SEARCH */
.search-wrap { flex: 1; max-width: 460px; }
.search-wrap .input-group { border-radius: var(--radius-pill); overflow: hidden; }
.search-input {
  border: none;
  background: rgba(255,255,255,.1);
  color: #fff;
  height: 42px;
  font-size: .9rem;
  padding-left: 18px;
  transition: var(--transition);
}
.search-input::placeholder { color: rgba(255,255,255,.45); }
.search-input:focus {
  background: rgba(255,255,255,.18);
  color: #fff;
  box-shadow: none;
  outline: none;
}
.search-btn {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0 20px;
  font-size: .95rem;
  transition: var(--transition);
}
.search-btn:hover { background: var(--green-light); }

/* NAV LINKS */
.farm-navbar .nav-link {
  color: rgba(255,255,255,.8) !important;
  font-size: .88rem;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  white-space: nowrap;
}
.farm-navbar .nav-link:hover { color: #fff !important; background: rgba(255,255,255,.08); }
.farm-navbar .btn-nav-outline {
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff !important;
  padding: 6px 16px !important;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.farm-navbar .btn-nav-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.farm-navbar .btn-nav-solid {
  background: var(--green);
  color: #fff !important;
  padding: 6px 18px !important;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 700;
  border: none;
  transition: var(--transition);
}
.farm-navbar .btn-nav-solid:hover { background: var(--green-light); transform: translateY(-1px); }

/* ─── HERO SECTION ──────────────────────────────────── */
.hero-section {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 60%, #0d2b15 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(45,182,83,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section .carousel-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  position: relative;
}
.hero-section .carousel-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  padding: 28px 24px 20px;
  color: #fff;
}
.hero-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 6px;
}
.hero-overlay p { font-size: .88rem; opacity: .8; }
.hero-tagline {
  color: #fff;
  padding-left: 10px;
}
.hero-tagline .badge-promo {
  background: var(--green);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-tagline h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-tagline h1 em { font-style: normal; color: var(--green-glow); }
.hero-tagline p { font-size: 1rem; opacity: .75; max-width: 380px; margin-bottom: 28px; }
.hero-tagline .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(26,138,60,.4);
}
.hero-tagline .hero-cta:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,138,60,.5);
}
.hero-tagline .hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid rgba(255,255,255,.25);
  transition: var(--transition);
  margin-left: 10px;
}
.hero-tagline .hero-cta-ghost:hover { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stats .stat { }
.hero-stats .stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-glow);
  line-height: 1;
}
.hero-stats .stat-lbl { font-size: .78rem; opacity: .6; margin-top: 3px; }

/* ─── PROMO SLIDER ──────────────────────────────────── */
.promo-section { padding: 56px 0; background: #fff; }
.section-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.promo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.promo-card .promo-img {
  height: 230px;
  object-fit: cover;
  width: 100%;
  transition: var(--transition);
}
.promo-card:hover .promo-img { transform: scale(1.04); }
.promo-card .promo-body { padding: 16px 18px 20px; }
.promo-card .promo-title { font-weight: 700; font-size: .95rem; margin-bottom: 4px; color: var(--dark); }
.promo-card .promo-price { color: var(--green); font-weight: 800; font-size: 1.1rem; }
.promo-card .promo-loc { font-size: .8rem; color: var(--gray); }
.carousel-control-prev, .carousel-control-next {
  width: 40px;
  height: 40px;
  background: var(--dark) !important;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff !important;
}
.carousel-control-prev { left: -20px; }
.carousel-control-next { right: -20px; }
.carousel-control-prev-icon, .carousel-control-next-icon { display: none; }

/* ─── CATEGORY SLIDER (horizontal scroll) ─────────── */
.cat-scroll-section { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.cat-scroll-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 4px;
  scrollbar-width: none;
}
.cat-scroll-track::-webkit-scrollbar { display: none; }
.cat-pill {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  width: 80px;
}
.cat-pill:hover .cat-pill-img { border-color: var(--green); transform: translateY(-3px); }
.cat-pill:hover .cat-pill-lbl { color: var(--green); }
.cat-pill-img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid var(--border);
  transition: var(--transition);
  background: var(--green-pale);
  padding: 4px;
}
.cat-pill-lbl { font-size: .72rem; font-weight: 600; color: var(--gray); line-height: 1.3; transition: var(--transition); }
.scroll-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  align-self: center;
  box-shadow: var(--shadow-sm);
  font-size: .9rem;
}
.scroll-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ─── FARM CATEGORIES GRID ──────────────────────────── */
.categories-section { padding: 64px 0; background: var(--green-pale); }
.farm-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.farm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.farm-card:hover .farm-img { transform: scale(1.06); }
.farm-img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
  background: var(--green-pale);
}
.farm-card-body { padding: 14px 14px 16px; text-align: center; }
.farm-card-body h6 { font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.farm-count { font-size: .8rem; color: var(--green); font-weight: 700; margin-bottom: 10px; }
.view-link {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .03em;
  transition: var(--transition);
}
.view-link:hover { color: var(--green-light); }
.farm-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--dark);
  color: var(--green-glow);
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: .06em;
  z-index: 2;
  text-transform: uppercase;
}

/* ─── PRODUCT PAGE ──────────────────────────────────── */
.product-main-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.product-price-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}
.seller-card-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.seller-avatar {
  width: 50px;
  height: 50px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
}
.btn-green {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  padding: 12px 24px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-green:hover { background: var(--green-light); color: #fff; transform: translateY(-2px); }
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: var(--radius-pill);
  font-weight: 700;
  padding: 11px 24px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-outline-green:hover { background: var(--green); color: #fff; }
.msg-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.msg-card textarea.form-control,
.msg-card input.form-control {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: .9rem;
  padding: 10px 14px;
  transition: var(--transition);
}
.msg-card textarea.form-control:focus,
.msg-card input.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,138,60,.12); }

/* Related cards */
.related-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.related-img { height: 200px; object-fit: cover; width: 100%; transition: var(--transition); }
.related-card:hover .related-img { transform: scale(1.04); }
.related-body { padding: 14px; }
.related-body h6 { font-weight: 700; font-size: .9rem; margin-bottom: 3px; }

/* ─── FARMLAND / CATEGORY PAGE ──────────────────────── */
.cat-page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.cat-page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(45,182,83,.15), transparent);
  pointer-events: none;
}
.cat-page-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 800; }
.cat-page-header p { opacity: .7; font-size: .95rem; }
.product-listing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.product-listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-listing-img { height: 210px; object-fit: cover; width: 100%; transition: var(--transition); }
.product-listing-card:hover .product-listing-img { transform: scale(1.05); }
.product-listing-body { padding: 16px; }
.product-listing-title { font-weight: 700; font-size: .95rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-listing-price { color: var(--green); font-weight: 800; font-size: 1.05rem; }
.product-listing-loc { font-size: .82rem; color: var(--gray); }
.btn-view-listing {
  display: block;
  text-align: center;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .88rem;
  padding: 9px 0;
  margin-top: 12px;
  transition: var(--transition);
}
.btn-view-listing:hover { background: var(--green-light); color: #fff; }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state i { font-size: 3.5rem; color: var(--border); margin-bottom: 16px; }
.empty-state p { color: var(--gray); font-size: 1rem; }

/* ─── REGISTER PAGE ─────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--dark) 0%, #1c3420 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  position: relative;
  overflow: hidden;
}
.auth-page::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,182,83,.15), transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.auth-card {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  position: relative;
}
.auth-card .auth-logo {
  text-align: center;
  margin-bottom: 8px;
}
.auth-card .auth-logo img { height: 52px; margin: 0 auto 10px; }
.auth-card .auth-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  color: var(--dark);
  margin-bottom: 4px;
}
.auth-card .auth-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: .9rem;
  margin-bottom: 28px;
}
.auth-card .form-label { font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.auth-card .form-control {
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: .92rem;
  padding: 10px 14px;
  transition: var(--transition);
}
.auth-card .form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,138,60,.12);
}
.auth-card .btn-auth {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  height: 50px;
  font-weight: 700;
  font-size: .97rem;
  width: 100%;
  transition: var(--transition);
  margin-top: 4px;
}
.auth-card .btn-auth:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,138,60,.3); }

/* ─── FOOTER ────────────────────────────────────────── */
.farm-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding-top: 60px;
}
.farm-footer h5, .farm-footer h6 { color: #fff; }
.farm-footer p { font-size: .88rem; }
.farm-footer ul li { margin-bottom: 8px; }
.farm-footer ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.farm-footer ul li a:hover { color: var(--green-glow); padding-left: 4px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-3px); }
.footer-newsletter .form-control {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: .88rem;
  padding: 10px 14px;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter .form-control:focus { box-shadow: none; border-color: var(--green); background: rgba(255,255,255,.12); }
.footer-newsletter .btn-sub {
  background: var(--green);
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700;
  font-size: .85rem;
  transition: var(--transition);
  white-space: nowrap;
}
.footer-newsletter .btn-sub:hover { background: var(--green-light); }
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}
.footer-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .88rem;
  margin-top: 16px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(26,138,60,.3);
}
.footer-dl-btn:hover { background: var(--green-light); color: #fff; transform: translateY(-2px); }

/* ─── MODALS ────────────────────────────────────────── */
.modal-content { border-radius: 20px; border: none; overflow: hidden; }
.modal-header { padding: 20px 24px 16px; border-bottom: 1px solid var(--border); }
.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.modal-body .form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  height: 46px;
  font-size: .92rem;
  transition: var(--transition);
}
.modal-body .form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,138,60,.12); }
.btn-modal-submit {
  background: var(--green);
  border: none;
  color: #fff;
  border-radius: var(--radius-sm);
  height: 48px;
  font-weight: 700;
  width: 100%;
  transition: var(--transition);
}
.btn-modal-submit:hover { background: var(--green-light); }

/* ─── BADGES ────────────────────────────────────────── */
.badge-gold-tag { background: linear-gradient(135deg,#d97706,#fbbf24); color: #fff; }
.badge-silver-tag { background: linear-gradient(135deg,#6b7280,#9ca3af); color: #fff; }

/* ─── UTILITIES ─────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.text-green { color: var(--green) !important; }
.bg-green-pale { background: var(--green-pale) !important; }
.rounded-xl { border-radius: var(--radius) !important; }
.shadow-card { box-shadow: var(--shadow) !important; }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-section { padding: 40px 0; }
  .farm-navbar .collapse { padding: 16px 0; }
  .search-wrap { max-width: 100%; }
  .carousel-control-prev { left: 0; }
  .carousel-control-next { right: 0; }
  .hero-tagline { padding-left: 0; margin-top: 24px; }
}
@media (max-width: 767.98px) {
  .hero-section .carousel-img-wrap img { height: 280px; }
  .auth-card { padding: 28px 22px; }
  .categories-section { padding: 40px 0; }
}
@media (max-width: 575.98px) {
  .app-download-bar .bar-text { font-size: .78rem; }
  .hero-stats { gap: 18px; }
  .hero-stats .stat-num { font-size: 1.2rem; }
}
