/* ===== IRESH Exports — Custom UI Styles ===== */

:root {
  --green-dark:   #1a6b2f;
  --green-mid:    #2d9c3b;
  --green-light:  #e8f5e3;
  --gold:         #e8a020;
  --gold-light:   #fff8ed;
  --text-dark:    #1a1a2e;
  --text-muted:   #606060;
  --white:        #ffffff;
  --border:       #e0e0e0;
  --radius:       12px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,.12);
  --transition:   all 0.3s ease;
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Roboto', sans-serif; color: var(--text-dark); background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-light);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: #fff !important;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 30px;
  border-radius: 8px;
  border: 2px solid var(--green-dark);
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,47,.3);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-dark) !important;
  font-weight: 600;
  font-size: .95rem;
  padding: 11px 28px;
  border-radius: 8px;
  border: 2px solid var(--green-dark);
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--green-dark);
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff !important;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 30px;
  border-radius: 8px;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-gold:hover {
  background: #c87d10;
  border-color: #c87d10;
  transform: translateY(-2px);
}

/* ---- TOP BAR ---- */
.topbar {
  background: var(--green-dark);
  color: #fff;
  font-size: .82rem;
  padding: 8px 0;
}
.topbar a { color: #c8f0d0; }
.topbar a:hover { color: #fff; }
.topbar .topbar-contact { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar .topbar-contact span { display: flex; align-items: center; gap: 6px; }

/* ---- NAVBAR ---- */
.site-navbar {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-navbar .navbar-brand img { height: 52px; width: auto; }

.site-navbar .nav-link {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active-link {
  color: var(--green-dark) !important;
  background: var(--green-light);
}

/* dropdown */
.site-navbar .dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 200px;
}
.site-navbar .dropdown-item {
  font-size: .9rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 6px;
  color: var(--text-dark);
  transition: var(--transition);
}
.site-navbar .dropdown-item:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

/* ---- HERO / BANNER ---- */
.hero-section {
  background: linear-gradient(135deg, #f0faf2 0%, #fffbf0 60%, #e8f5e3 100%);
  padding: 90px 0 70px;
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,156,59,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid #f5c97a;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .82rem;
  font-weight: 700;
  color: #8a5c00;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.hero-title span { color: var(--green-dark); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.hero-stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  max-height: 440px;
}
.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
}
.hero-img-badge .dot {
  width: 10px; height: 10px;
  background: var(--green-mid);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.3); }
}

/* ---- PRIMARY PRODUCTS SPOTLIGHT ---- */
.primary-products { background: #fff; }

.primary-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.primary-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.primary-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.primary-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.primary-card:hover .primary-card-img img { transform: scale(1.06); }
.primary-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green-dark);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.primary-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.primary-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.primary-card-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.primary-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--green-dark) !important;
  transition: var(--transition);
}
.primary-card-link:hover { gap: 10px; color: var(--green-mid) !important; }

/* ---- FEATURE ICON CARDS ---- */
.icon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.icon-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green-light);
}
.icon-card .ic-img {
  width: 72px; height: 72px;
  object-fit: contain;
  margin: 0 auto 16px;
}
.icon-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.icon-card p {
  font-size: .87rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---- PRODUCT CARD (grid listings) ---- */
.prod-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.prod-card-img {
  height: 200px;
  overflow: hidden;
}
.prod-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.prod-card:hover .prod-card-img img { transform: scale(1.08); }
.prod-card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-card-cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-mid);
  margin-bottom: 6px;
}
.prod-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  flex: 1;
}
.prod-card-desc {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.prod-card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 4px;
  padding: 3px 10px;
  margin: 2px;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }

.page-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.page-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  line-height: 1.7;
}

/* ---- VARIETY CARDS (product detail pages) ---- */
.variety-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.variety-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.variety-card-img {
  height: 210px;
  overflow: hidden;
}
.variety-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.variety-card:hover .variety-card-img img { transform: scale(1.07); }
.variety-card-body { padding: 20px; }
.variety-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.variety-card-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.variety-card-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tag {
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--green-light);
  color: var(--green-dark);
}
.tag-gold { background: var(--gold-light); color: #8a5c00; }

/* ---- WHY CHOOSE US ---- */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-light); }
.why-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--green-dark);
}
.why-card h5 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.why-card p {
  font-size: .84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---- NUTRIENT TABLE ---- */
.nutrient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.nutrient-item {
  background: var(--green-light);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.nutrient-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.nutrient-name {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- CTA BANNER ---- */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark), #0f4420);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  font-size: 1rem;
}

/* ---- BREADCRUMB ---- */
.custom-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  margin-top: 16px;
}
.custom-breadcrumb a { color: rgba(255,255,255,.85); }
.custom-breadcrumb a:hover { color: #fff; }
.custom-breadcrumb .sep { opacity: .5; }

/* ---- FOOTER ---- */
.site-footer {
  background: #0f1f0f;
  color: #b0c4b1;
  padding-top: 60px;
}
.site-footer .footer-brand img { height: 48px; width: auto; margin-bottom: 16px; }
.site-footer .footer-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: #8faa90;
  max-width: 280px;
}
.site-footer h5 {
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-footer ul li {
  margin-bottom: 10px;
}
.site-footer ul li a {
  font-size: .88rem;
  color: #8faa90;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-footer ul li a:hover { color: #fff; padding-left: 4px; }
.site-footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .88rem;
  color: #8faa90;
}
.site-footer .contact-item i {
  color: var(--green-mid);
  margin-top: 2px;
  min-width: 16px;
}
.footer-divider {
  border-color: #1e331e;
  margin: 40px 0 0;
}
.footer-bottom {
  background: #080f08;
  padding: 16px 0;
  font-size: .82rem;
  color: #5a765a;
  text-align: center;
}
.footer-bottom span { color: var(--green-mid); }

/* ---- SCROLL TO TOP ---- */
.scroll-top-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { background: var(--green-mid); transform: translateY(-3px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse { padding: 14px 0; }
  .site-navbar .navbar-nav { gap: 8px !important; align-items: stretch !important; }
  .site-navbar .nav-link { padding: 10px 12px !important; }
  .site-navbar .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
    border: 1px solid var(--border);
    margin-top: 6px;
  }
  .site-navbar .btn-primary-custom,
  .site-navbar .btn-gold {
    width: 100%;
    justify-content: center;
  }

  .hero-section { padding: 70px 0 52px; }
  .hero-desc { max-width: 100%; }
  .hero-img-wrap { margin-top: 18px; }
  .hero-img-badge { left: 16px; right: 16px; bottom: 16px; justify-content: center; }

  .page-hero { padding: 64px 0 48px; }
  .custom-breadcrumb { flex-wrap: wrap; }

  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 44px 0; }
  .why-card { padding: 20px; }
}

@media (max-width: 767.98px) {
  html, body { overflow-x: hidden; }
  .container { padding-left: 16px; padding-right: 16px; }

  .hero-title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero-desc { font-size: .95rem; }
  .hero-stats {
    gap: 14px;
    margin-top: 26px;
    padding-top: 20px;
  }
  .hero-stats > div { flex: 1 1 45%; min-width: 120px; }
  .hero-img-badge { position: static; margin-top: 12px; }

  .primary-card-img,
  .prod-card-img,
  .variety-card-img { height: 180px; }

  .cta-band { padding: 48px 0; }
  .cta-band p { font-size: .93rem; }

  .site-footer { padding-top: 48px; }
  .site-footer .footer-desc { max-width: 100%; }

  .scroll-top-btn { right: 16px; bottom: 16px; }
}

@media (max-width: 575.98px) {
  .section-pad { padding: 52px 0; }
  .section-pad-sm { padding: 38px 0; }
  .section-tag { font-size: .7rem; letter-spacing: 1.4px; }

  .btn-primary-custom,
  .btn-outline-custom,
  .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }

  .hero-stats > div { flex: 1 1 100%; }
  .nutrient-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .custom-breadcrumb { font-size: .75rem; gap: 6px; }
}
