:root {
  /* Primary green for buttons & active nav only; body/nav default text uses --text */
  --primary: #82b440;
  --primary-soft: #f2f9e8;
  --primary-deep: #6d9a32;
  /* Legacy names map to primary so existing rules pick up the new green */
  --accent-blue: var(--primary);
  --accent-blue-soft: var(--primary-soft);
  --accent-blue-deep: var(--primary-deep);
  --accent-lime: #d4ec8a;
  --forest-dark: #1b4332;
  --green-950: #1b4332;
  --green-900: #234d3a;
  --green-800: #2d6148;
  --green-700: #3a7356;
  --green-600: #478564;
  --green-500: #5a9a72;
  --green-400: #7eb86a;
  --gold-600: #8a6628;
  --gold-500: #c9a227;
  --gold-100: #fdf6e4;
  --cream: #ffffff;
  --muted: #5c656d;
  --text: #111111;
  --white: #ffffff;
  --black: #0a0a0a;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 18px 48px rgba(0, 30, 40, 0.06);
  --radius-xl: 10px;
  --radius-lg: 10px;
  --radius-md: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

img {
  max-width: 100%;
  display: block;
}

.brand-logo-box img,
.footer-logo img {
  filter: none;
  -webkit-filter: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(130, 180, 64, 0.45);
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--forest-dark);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(130, 180, 64, 0.28);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.page-title h1 {
  margin: 12px 0 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-head p,
.page-title p {
  margin: 0;
  max-width: 610px;
  color: var(--muted);
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 20px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 28px rgba(45, 97, 40, 0.28);
}

.btn-dark {
  color: var(--white);
  background: linear-gradient(135deg, #132a20, var(--forest-dark));
  box-shadow: 0 14px 30px rgba(15, 40, 28, 0.28);
}

.btn-soft {
  color: var(--forest-dark);
  border: 1px solid rgba(27, 67, 50, 0.18);
  background: #f5f7fa;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  z-index: 1000;
  width: 100%;
  pointer-events: none;
}

.nav-shell {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 30, 24, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid rgba(27, 67, 50, 0.22);
}

.brand-logo-box img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text strong {
  color: var(--text);
  font-size: 17px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--text);
  background: #f5f5f5;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover:not(.active) {
  color: var(--text);
  background: #ebebeb;
  border-color: transparent;
}

.nav-links a.active {
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(130, 180, 64, 0.4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* Language Switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #f1f5ee;
  padding: 3px 6px;
  border-radius: 20px;
  border: 1px solid rgba(130, 180, 64, 0.28);
  font-size: 13px;
  font-weight: 600;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 3px 7px;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.lang-btn:hover {
  color: var(--primary-deep, #1a3d12);
}

.lang-btn.active {
  background: var(--primary, #629428);
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.lang-divider {
  color: #cbd5e1;
  font-size: 11px;
  user-select: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #f0f0f0;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: currentColor;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Premium home banner — balanced overlay: artwork visible, text readable */
  background-image:
    linear-gradient(90deg, rgba(10, 36, 28, 0.62) 0%, rgba(8, 22, 18, 0.38) 42%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(8, 28, 22, 0.55) 100%),
    url("../img/banners/hero-home.webp");
  background-size: cover, cover, cover;
  background-position: center, center, center 35%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--cream));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 170px 0 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: end;
  gap: 44px;
}

.hero-copy {
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 400;
}

.hero-kicker i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero h1 span {
  color: var(--accent-blue);
}

.hero p {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hero-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

.hero-panel h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--text);
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.hero-stat {
  padding: 14px;
  border-radius: 10px;
  background: #006044;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 18px rgba(0, 60, 45, 0.18);
}

.hero-stat strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.hero-stat span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
}

.ticker {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  padding: 13px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.ticker span,
.ticker-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.15s ease;
  display: inline-block;
  cursor: pointer;
}

.ticker-link:hover,
.ticker-link:focus-visible {
  color: #d4ec8a;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.about-snapshot {
  position: relative;
  z-index: 5;
  margin-top: -56px;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.snapshot-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.snapshot-image {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(12, 36, 28, 0), rgba(12, 36, 28, 0.68)),
    url("../img/categories/wheat-seeds-category.webp") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: white;
}

.snapshot-image div {
  max-width: 420px;
}

.snapshot-image h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.snapshot-image p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.snapshot-copy {
  padding: 34px;
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.tab-pill {
  padding: 9px 13px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--forest-dark);
  font-size: 13px;
  font-weight: 400;
}

.snapshot-copy h2 {
  max-width: 740px;
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.snapshot-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-card {
  min-height: 128px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.mini-card strong {
  display: block;
  color: var(--text);
  font-size: 26px;
  line-height: 1;
}

.mini-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card,
.value-card,
.contact-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 30, 40, 0.05);
}

.category-card {
  position: relative;
  min-height: 310px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  background-color: #0c241c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(0, 24, 18, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 48px rgba(0, 24, 18, 0.35);
}

.category-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.04);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(6, 41, 29, 0.88) 0%,
    rgba(6, 41, 29, 0.45) 45%,
    rgba(6, 41, 29, 0.05) 100%
  );
}

.category-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 310px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.category-card .count {
  align-self: flex-start;
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
}

.category-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.products-preview {
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-media {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #f7f8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-media a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  padding: 10px;
  background: #f7f8f5;
  transition: transform 0.35s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.07);
}

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--accent-blue-soft);
  color: var(--forest-dark);
  font-size: 12px;
  font-weight: 400;
}

.product-body h3 {
  margin: 13px 0 7px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.product-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.product-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.team-panel {
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #fafcfb 100%);
  color: var(--text);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 28px 60px rgba(0, 45, 35, 0.07),
    0 4px 14px rgba(0, 0, 0, 0.04);
}

.team-panel .section-head h2 {
  color: var(--text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  padding: 22px 20px 20px;
  text-align: center;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  background: linear-gradient(165deg, #ffffff 0%, #f8faf9 45%, #f3f8f5 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 36px -6px rgba(0, 45, 35, 0.09),
    0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(130, 180, 64, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 22px 48px -8px rgba(0, 55, 40, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.06);
}

.avatar {
  width: 108px;
  height: 108px;
  margin: 0 auto 16px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-800), var(--green-400));
  color: var(--white);
  font-size: 31px;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(23, 77, 58, 0.18);
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card .avatar {
  background: linear-gradient(145deg, #eef5f1, #e4ede8);
  box-shadow:
    0 10px 28px rgba(0, 50, 38, 0.1),
    0 0 0 1px rgba(0, 96, 68, 0.07);
  border: none;
}

.team-card h3 {
  margin: 0;
  color: var(--forest-dark);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.team-card span {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 12px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  border: 1px solid rgba(130, 180, 64, 0.32);
  font-size: 12px;
  font-weight: 500;
}

.cta-band {
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 36, 28, 0.93), rgba(18, 50, 40, 0.86)),
    url("../img/fb-bg.webp") center/cover no-repeat;
  color: var(--white);
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.cta-band p {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.73);
}

.site-footer {
  padding: 54px 0 22px;
  background: #006044;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 32px;
  padding-bottom: 34px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
}

.footer-col h4 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.footer-col p {
  display: block;
  margin: 0 0 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  margin: 0 0 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.footer-col a:hover {
  color: var(--accent-lime);
}

.footer-col p a {
  display: inline;
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.footer-logo strong {
  color: var(--white);
  font-weight: 700;
}

.footer-social {
  margin-top: 18px;
}

.footer-social h4 {
  margin: 0 0 10px;
}

.site-footer .footer-social .social-links,
.footer-col .footer-social .social-links,
.footer-social .social-links,
.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer .footer-col .social-links a.social-link,
.site-footer .footer-social .social-links a.social-link,
.footer-col .social-links a.social-link,
.footer-social .social-link,
.social-link {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  box-sizing: border-box;
  flex: 0 0 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-footer .footer-col .social-links a.social-link:hover,
.site-footer .footer-social .social-links a.social-link:hover,
.footer-col .social-links a.social-link:hover,
.footer-social .social-link:hover,
.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.site-footer .footer-col .social-links a.social-link:focus-visible,
.site-footer .footer-social .social-links a.social-link:focus-visible,
.footer-col .social-links a.social-link:focus-visible,
.footer-social .social-link:focus-visible,
.social-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(212, 236, 138, 0.4);
}

.site-footer .footer-col .social-links a.social-link svg,
.site-footer .footer-social .social-links a.social-link svg,
.footer-col .social-links a.social-link svg,
.footer-social .social-link svg,
.social-link svg,
.footer-social svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  display: block;
  margin: 0;
  padding: 0;
  position: static;
  transform: none;
  flex: 0 0 auto;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  width: 100%;
}

.footer-bottom span {
  text-align: center;
  width: 100%;
}

.page-hero {
  position: relative;
  padding: 180px 0 90px;
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
  /* Default local hero — paths resolve relative to this stylesheet (Hostinger/Linux-safe) */
  --hero-img: url("../img/fb-bg.webp");
  --hero-pos: center center;
}

/* Category / page hero backgrounds (shared local architecture) */
.page-hero--wheat {
  --hero-img: url("../img/categories/wheat-seeds-category.webp");
  --hero-pos: center 40%;
}

.page-hero--maize {
  --hero-img: url("../img/categories/hybrid-maize-category.webp");
  --hero-pos: center 45%;
}

.page-hero--mustard {
  --hero-img: url("../img/categories/hybrid-mustard-category.webp");
  --hero-pos: center 40%;
}

.page-hero--paddy {
  --hero-img: url("../img/categories/hybrid-paddy-category.webp");
  --hero-pos: center 45%;
}

.page-hero--rainy-maize {
  --hero-img: url("../img/categories/rainy-maize-category.webp");
  --hero-pos: center 45%;
}

.page-hero--bajra {
  --hero-img: url("../img/categories/hybrid-bajra-category.webp");
  --hero-pos: center 40%;
}

/* Main-page premium banners (Home uses .hero separately) */
.page-hero--about {
  --hero-img: url("../img/banners/hero-about.webp");
  --hero-pos: center 40%;
}

.page-hero--products {
  --hero-img: url("../img/banners/hero-products.webp");
  --hero-pos: center 40%;
}

.page-hero--contact {
  --hero-img: url("../img/banners/hero-contact.webp");
  --hero-pos: center 40%;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Softened overlay: image remains perceptible; title stays readable */
  background-image:
    linear-gradient(90deg, rgba(10, 36, 28, 0.58) 0%, rgba(8, 22, 18, 0.32) 55%, rgba(8, 22, 18, 0.22) 100%),
    var(--hero-img);
  background-size: cover, cover;
  background-position: center, var(--hero-pos);
  background-repeat: no-repeat, no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 70px;
  background: linear-gradient(180deg, transparent, var(--cream));
}

.page-title {
  position: relative;
  z-index: 1;
  max-width: 830px;
}

.page-title h1 {
  color: var(--white);
  font-size: clamp(44px, 7vw, 78px);
}

.page-title p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.about-image-card {
  min-height: 560px;
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(12, 36, 28, 0.64)),
    url("../img/fb-bg.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  margin: 12px 0 16px;
  color: var(--text);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.about-copy p {
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  padding: 24px;
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--forest-dark);
  font-size: 24px;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.value-card h3 {
  margin: 18px 0 9px;
  color: var(--text);
  font-size: 21px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* About: snapshot mini stats + values — same as hero `.hero-stat` (#006044, white type) */
body[data-page="about"] .mini-card {
  background: #006044;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0, 60, 45, 0.18);
}

body[data-page="about"] .mini-card strong {
  color: var(--white);
}

body[data-page="about"] .mini-card span {
  color: rgba(255, 255, 255, 0.88);
}

body[data-page="about"] .value-card {
  background: #006044;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0, 60, 45, 0.18);
}

body[data-page="about"] .value-card .value-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body[data-page="about"] .value-card h3 {
  color: var(--white);
}

body[data-page="about"] .value-card p {
  color: rgba(255, 255, 255, 0.88);
}

.product-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-weight: 400;
  font-size: 13px;
}

.filter-btn:hover:not(.active) {
  background: #f5f5f5;
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: var(--white);
  border-color: transparent;
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Keep catalogue cards on the shared 3:2 media geometry */
.products-page-grid .product-media {
  aspect-ratio: 3 / 2;
  height: auto;
}

.product-category-section {
  margin-top: 54px;
}

.category-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.category-title-row h2 {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  letter-spacing: -0.035em;
}

.category-title-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.form-card {
  padding: 28px;
}

.contact-card h3,
.form-card h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.info-list {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

.info-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 10px;
  background: #f5f7fa;
}

.info-item b {
  display: block;
  color: var(--text);
  font-size: 14px;
}

.info-item span,
.info-item a {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.address-block {
  margin: 8px 0 0;
  padding: 0;
  font-style: normal;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.address-line {
  display: block;
}

.address-line + .address-line {
  margin-top: 4px;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent-blue-deep), var(--accent-blue));
  color: var(--white);
  font-weight: 400;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

/* Clickable contact card */
a.info-item-link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
  color: inherit;
  display: grid; /* retain the grid layout from .info-item */
}

a.info-item-link b {
  color: var(--text);
}

a.info-item-link span {
  color: var(--muted);
}

a.info-item-link:hover,
a.info-item-link:focus-visible {
  background: #eaf0f8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  outline: none;
}

a.info-item-link:hover .info-icon {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark, #5a8a20));
}

a.info-item-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(24, 33, 23, 0.14);
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: var(--text);
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(130, 180, 64, 0.65);
  box-shadow: 0 0 0 4px rgba(130, 180, 64, 0.2);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.map-placeholder {
  min-height: 290px;
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 36, 28, 0.88), rgba(40, 110, 82, 0.48)),
    url("../img/categories/hybrid-paddy-category.webp") center/cover no-repeat;
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
  padding: 28px;
  box-shadow: var(--shadow);
}

.map-placeholder h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.map-placeholder p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

/* WhatsApp — official-style green (#25D366), shared SVG fill */
.product-view-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: auto;
  margin-bottom: 10px;
}

.product-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}

.product-cta-row .btn {
  margin-top: 0;
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 9px 10px;
  font-size: 13px;
}

.btn-whatsapp,
a.product-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 8px;
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid #1ebd5c;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.28);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  width: 100%;
  height: auto;
  margin: 0;
}

.btn-whatsapp:hover,
a.product-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.btn-whatsapp:focus-visible,
a.product-whatsapp:focus-visible {
  outline: 2px solid #128c7e;
  outline-offset: 2px;
}

.btn-whatsapp svg,
a.product-whatsapp svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  z-index: 2400;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 8px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.55), 0 10px 32px rgba(0, 0, 0, 0.14);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 2000;
  display: none;
  max-width: 360px;
  padding: 15px 18px;
  border-radius: 10px;
  background: var(--green-950);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 14px;
}

.toast.show {
  display: block;
  animation: toastIn 0.35s ease;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .category-grid,
  .product-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .snapshot-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Five-link nav: tighten padding slightly on mid-range desktops */
@media (min-width: 821px) and (max-width: 1040px) {
  .nav-links a {
    padding: 9px 10px;
    font-size: 12.5px;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
  }

  .nav-shell {
    border-radius: 10px;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 12px;
  }

  .brand-text strong {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-actions {
    order: 2;
    margin-left: auto;
    margin-right: 8px;
    gap: 0;
  }

  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: 0;
    order: 3;
  }

  .nav-links {
    display: none;
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 8px 0 2px;
  }

  .nav-shell.open .nav-links {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .section,
  .section-tight {
    padding: 70px 0;
  }

  .hero-content {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-stats,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .page-hero {
    padding-top: 145px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-logo-box {
    width: 62px;
    height: 62px;
  }

  .brand-logo-box img {
    width: 96px;
    height: 96px;
  }

  .brand-text span {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p,
  .page-title p {
    font-size: 15px;
  }

  .category-grid,
  .product-grid,
  .products-page-grid,
  .team-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-media,
  .products-page-grid .product-media {
    aspect-ratio: 3 / 2;
    height: auto;
  }

  .snapshot-copy,
  .contact-card,
  .form-card {
    padding: 22px;
  }

  .snapshot-image {
    min-height: 330px;
  }

  .about-image-card {
    min-height: 360px;
  }
}

/* ============================================================
   PRODUCT DETAILS — expandable <details>/<summary> component
   ============================================================ */
.product-details {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.product-details summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-deep);
  padding: 4px 0;
  user-select: none;
  outline: none;
  transition: color 0.2s;
}

.product-details summary::-webkit-details-marker { display: none; }

.product-details summary::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d9a32' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.product-details[open] summary::before {
  transform: rotate(180deg);
}

.product-details summary:hover { color: var(--primary); }

.product-details-body {
  padding: 10px 0 4px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.product-spec-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}

.product-desc-hindi {
  font-size: 13px;
  line-height: 1.85;
  color: #555;
  margin: 8px 0 0;
  padding: 10px 14px;
  background: var(--primary-soft);
  border-left: 3px solid var(--primary);
  border-radius: 0 6px 6px 0;
}

/* ============================================================
   PRODUCT CARD — category tag colour variants
   ============================================================ */
.product-tag.tag-wheat {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid rgba(212,175,55,0.4);
}

.product-tag.tag-maize {
  background: #fefce8;
  color: #713f12;
  border: 1px solid rgba(202,138,4,0.35);
}

.product-tag.tag-mustard {
  background: #fff7ed;
  color: #7c2d12;
  border: 1px solid rgba(234,88,12,0.3);
}

/* Product-card media rules consolidated above (.product-media img) */

/* ============================================================
   CONNECT PAGE — standalone social link page
   ============================================================ */
.connect-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 56px;
  background: linear-gradient(160deg, #0c2116 0%, #1b4332 40%, #2d6148 75%, #163828 100%);
  position: relative;
  overflow: hidden;
}

.connect-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(130,180,64,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 80% 85%, rgba(82,154,114,0.14) 0%, transparent 55%);
  pointer-events: none;
}

.connect-bg-lines {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 360px;
  background-image:
    repeating-linear-gradient(
      32deg,
      rgba(130,180,64,0.07) 0px, rgba(130,180,64,0.07) 1px,
      transparent 1px, transparent 52px
    ),
    repeating-linear-gradient(
      -32deg,
      rgba(130,180,64,0.04) 0px, rgba(130,180,64,0.04) 1px,
      transparent 1px, transparent 52px
    );
  pointer-events: none;
}

/* Brand zone */
.connect-brand {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 24px 28px;
  width: 100%;
  max-width: 480px;
}

.connect-logo-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px rgba(130,180,64,0.32), 0 10px 36px rgba(0,0,0,0.28);
  margin-bottom: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.connect-logo-ring img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}

.connect-brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 0 0 4px;
  font-family: "Poppins", Arial, sans-serif;
}

.connect-handle {
  font-size: 14px;
  color: rgba(212,236,138,0.9);
  font-weight: 500;
  margin: 0 0 12px;
}

.connect-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 310px;
  margin: 0;
}

/* Social icon row */
.connect-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.connect-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.connect-social-icon:hover,
.connect-social-icon:focus-visible {
  background: rgba(130,180,64,0.3);
  border-color: rgba(130,180,64,0.55);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  outline: none;
}

.connect-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Divider */
.connect-divider {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  padding: 0 20px;
  margin: 4px 0 8px;
}

.connect-divider-line {
  height: 1px;
  background: rgba(255,255,255,0.13);
}

/* Link cards container */
.connect-links {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* Individual link card */
.connect-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  text-decoration: none;
  color: #111;
  box-shadow: 0 2px 18px rgba(0,0,0,0.15);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  border: 1px solid rgba(255,255,255,0.6);
}

.connect-card:hover,
.connect-card:focus-visible {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
  outline: none;
}

.connect-card:active {
  transform: scale(0.978);
}

.connect-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.connect-card-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.icon-whatsapp  { background: #25D366; }
.icon-website   { background: var(--primary); }
.icon-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.icon-youtube   { background: #FF0000; }
.icon-facebook  { background: #1877F2; }
.icon-call      { background: #1b4332; }

.connect-card-text {
  flex: 1;
  min-width: 0;
}

.connect-card-label {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  display: block;
  line-height: 1.2;
}

.connect-card-sub {
  font-size: 12px;
  color: #777;
  display: block;
  margin-top: 2px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.connect-card-arrow {
  flex-shrink: 0;
  color: #ccc;
  transition: transform 0.18s, color 0.18s;
}

.connect-card:hover .connect-card-arrow {
  transform: translateX(4px);
  color: var(--primary-deep);
}

/* Footer of connect page */
.connect-footer {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 11.5px;
  padding: 0 24px;
  line-height: 1.8;
}

.connect-footer a {
  color: rgba(212,236,138,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.connect-footer a:hover { color: #d4ec8a; }

@media (min-width: 640px) {
  .connect-page { padding-bottom: 72px; }
  .connect-brand { padding-top: 80px; }
  .connect-card { padding: 18px 22px; }
  .connect-card-label { font-size: 16px; }
  .connect-card-sub { font-size: 13px; }
}

/* Connect Page Language Switcher */
.connect-lang-container {
  display: flex;
  justify-content: flex-end;
  max-width: 480px;
  margin: 0 auto 10px;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}

.connect-lang-container .lang-switch {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.connect-lang-container .lang-btn {
  color: rgba(255, 255, 255, 0.85);
}

.connect-lang-container .lang-btn:hover {
  color: #ffffff;
}

.connect-lang-container .lang-btn.active {
  background: rgba(255, 255, 255, 0.95);
  color: #1b3d12;
}

.connect-lang-container .lang-divider {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   INDIVIDUAL PRODUCT DETAIL PAGES
   ============================================================ */
.product-detail-hero {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, #f7faf4 0%, #ffffff 100%);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 48px;
  align-items: start;
}

.product-gallery-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(130, 180, 64, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 90px;
}

.product-gallery-media {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3 / 2;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfdf9;
}

.product-gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.3s ease;
}

.product-gallery-media:hover img {
  transform: scale(1.03);
}

.product-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-detail-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

.product-lead-summary {
  font-size: 16px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* Key Facts Cards Grid */
.product-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.product-fact-card {
  background: #f8faf6;
  border: 1px solid rgba(130, 180, 64, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-fact-card .fact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-deep, #1b3d12);
  font-weight: 700;
}

.product-fact-card .fact-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* Product CTAs */
.product-actions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-whatsapp-cta {
  background: #25d366;
  color: #ffffff;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14.5px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-whatsapp-cta:hover {
  background: #1eb956;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-whatsapp-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-call-cta {
  background: #ffffff;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.16);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14.5px;
  transition: all 0.2s ease;
}

.btn-call-cta:hover {
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.28);
}

/* Accessible Details / Key Features Accordion */
.product-details-accordion {
  background: #ffffff;
  border: 1px solid rgba(130, 180, 64, 0.35);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}

.product-details-accordion summary {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-deep, #1b3d12);
  background: #f4f8f0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background 0.2s ease;
}

.product-details-accordion summary::-webkit-details-marker {
  display: none;
}

.product-details-accordion summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.product-details-accordion[open] summary::after {
  content: '−';
}

.product-details-accordion .accordion-content {
  padding: 20px;
  border-top: 1px solid rgba(130, 180, 64, 0.2);
}

/* Related Products Section */
.related-products-section {
  padding: 50px 0 70px;
  background: #f8faf6;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.related-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.related-card .related-media {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  background: #fbfdf9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.related-card .related-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  padding: 10px;
  transition: transform 0.25s ease;
}

.related-card:hover .related-media img {
  transform: scale(1.04);
}

.related-card .related-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.related-card .related-body h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.related-card .related-body p {
  margin: 0;
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.45;
}

.related-card .related-link {
  margin-top: auto;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 960px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-gallery-card {
    position: static;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ============================================================
   GLOBAL CONNECT POPUP MODAL
   ============================================================ */
body.connect-modal-open {
  overflow: hidden !important;
  touch-action: none;
}

.connect-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 20, 10, 0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.connect-modal-backdrop.connect-modal-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.connect-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: min(92vh, 92dvh);
  background: linear-gradient(168deg, #0d2818 0%, #153e24 45%, #0a1f12 100%);
  border-radius: 22px;
  border: 1px solid rgba(130, 180, 64, 0.38);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
}

.connect-modal-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(32deg, rgba(130, 180, 64, 0.05) 0px, rgba(130, 180, 64, 0.05) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(-32deg, rgba(130, 180, 64, 0.03) 0px, rgba(130, 180, 64, 0.03) 1px, transparent 1px, transparent 48px);
  pointer-events: none;
  z-index: 1;
}

.connect-modal-backdrop.connect-modal-active .connect-modal-dialog {
  transform: translateY(0) scale(1);
}

.connect-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.connect-modal-close:hover,
.connect-modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.08);
  outline: none;
}

.connect-modal-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  display: block;
}

.connect-modal-content {
  position: relative;
  z-index: 2;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 30px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.connect-modal-logo-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(130, 180, 64, 0.35), 0 8px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.connect-modal-logo-ring img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.connect-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 2px;
  font-family: "Poppins", Arial, sans-serif;
}

.connect-modal-handle {
  font-size: 13px;
  color: rgba(212, 236, 138, 0.95);
  font-weight: 600;
  margin: 0 0 8px;
}

.connect-modal-tagline {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 320px;
  margin: 0 0 16px;
}

.connect-modal-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.connect-modal-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.connect-modal-brand-footer {
  width: 100%;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.connect-modal-footer-links {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.5;
}

.connect-modal-footer-links a {
  color: rgba(212, 236, 138, 0.95);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.connect-modal-footer-links a:hover,
.connect-modal-footer-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.connect-modal-corementors-credit {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.58);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: border-color 0.2s, background 0.2s;
}

.connect-modal-corementors-credit:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(236, 72, 153, 0.4);
}

.connect-modal-corementors-credit .corementors-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.connect-modal-corementors-credit .corementors-accent {
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #f43f5e 0%, #ec4899 50%, #d946ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: filter 0.2s ease;
}

.connect-modal-corementors-credit .corementors-link:hover .corementors-accent,
.connect-modal-corementors-credit .corementors-link:focus-visible .corementors-accent {
  filter: brightness(1.25) drop-shadow(0 0 6px rgba(236, 72, 153, 0.6));
}

@media (max-width: 480px) {
  .connect-modal-dialog {
    border-radius: 18px;
  }
  .connect-modal-content {
    padding: 26px 14px 18px;
  }
  .connect-modal-logo-ring {
    width: 68px;
    height: 68px;
  }
  .connect-modal-logo-ring img {
    width: 62px;
    height: 62px;
  }
  .connect-modal-title {
    font-size: 18px;
  }
}

/* ============================================================
   PRODUCT SEARCH & FILTER ENGINE STYLES
   ============================================================ */
#product-catalogue {
  scroll-margin-top: 100px;
}

/* Deterministic Product Visibility Control */
.product-card.product-card--hidden,
.product-card[hidden] {
  display: none !important;
}

.product-search-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-search-bar {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 480px;
  display: flex;
  align-items: center;
}

.product-search-bar .search-icon {
  position: absolute;
  left: 15px;
  color: #4a6843;
  pointer-events: none;
}

.product-search-input {
  width: 100%;
  height: 48px;
  padding: 0 42px 0 46px;
  background: #ffffff;
  border: 1.5px solid rgba(27, 61, 18, 0.18);
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-search-input:focus {
  outline: none;
  border-color: #2b5928;
  box-shadow: 0 0 0 3.5px rgba(130, 180, 64, 0.25);
}

.search-clear-btn {
  position: absolute;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
}

.search-clear-btn:hover {
  background: rgba(0, 0, 0, 0.18);
  color: #111;
}

.product-result-count {
  font-size: 13.5px;
  font-weight: 600;
  color: #24461c;
  padding: 6px 14px;
  background: rgba(130, 180, 64, 0.14);
  border: 1px solid rgba(130, 180, 64, 0.28);
  border-radius: 20px;
  white-space: nowrap;
}

.no-products-found {
  padding: 40px 16px;
  text-align: center;
  width: 100%;
}

.no-products-card {
  background: #ffffff;
  border: 1.5px dashed rgba(130, 180, 64, 0.45);
  border-radius: 16px;
  padding: 36px 24px;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.no-products-card p {
  font-size: 16px;
  font-weight: 600;
  color: #2c4228;
  margin: 0 0 16px;
}

@media (max-width: 640px) {
  .product-search-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .product-search-bar {
    max-width: 100%;
  }
  .product-result-count {
    align-self: flex-start;
  }
}

/* ── PRODUCT CARD HIDDEN STATE (defensive) ── */
.product-card[hidden] {
  display: none !important;
}

/* Prefer transform/opacity motion; respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .product-card:hover,
  .category-card:hover,
  .related-card:hover,
  .team-card:hover,
  .connect-card:hover,
  .btn:hover,
  .whatsapp-float:hover {
    transform: none;
  }

  .product-card:hover .product-media img,
  .category-card:hover .category-card__image,
  .related-card:hover .related-media img,
  .product-gallery-media:hover img {
    transform: none;
  }
}

/* Short mobile viewports: keep Connect modal usable */
@media (max-height: 700px) {
  .connect-modal-dialog {
    max-height: min(96dvh, 100%);
  }
  .connect-modal-content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

