/*
Theme Name: Agrezen Clone
Author: Dev
Version: 1.0.0
Text Domain: trangon
*/

/* ============================================================
   CSS VARIABLES — matched to agrezen.zozothemes.com
   ============================================================ */
:root {
  --color-primary:      #BADC58;   /* lime-yellow — buttons, accents */
  --color-primary-dark: #262420;   /* near-black olive — footer, dark btns */
  --color-heading:      #252525;
  --color-text:         #222222;
  --color-light:        #ffffff;
  --color-muted:        #f7f7f2;
  --color-border:       rgba(37, 37, 37, 0.10);
  --color-border-light: rgba(255, 255, 255, 0.12);
  --shadow-soft:        0 12px 40px rgba(20, 20, 20, 0.07);
  --shadow-card:        0 20px 50px rgba(15, 31, 22, 0.09);
  --radius:             30px;    /* global card/button radius */
  --radius-sm:          20px;
  --container:          1300px;
  --heading-font:       "Instrument Sans", sans-serif;
  --body-font:          "Nunito Sans", sans-serif;
  --transition:         240ms ease;
  --section-space:      100px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--color-text);
  background: #fff;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
}

p,
input,
textarea,
select {
  font-size: 16px;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--color-heading);
  font-family: var(--heading-font);
  font-weight: 700;
}

p { margin: 0; }

.screen-reader-text, .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.site-shell { overflow: clip; }

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

.site-main { display: block; }

.section {
  position: relative;
  padding: var(--section-space) 0;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-heading { max-width: 900px;}

.section-heading--hero .hero__text {
	color: #fff !important;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--color-primary-dark);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

/* leaf icon before eyebrow */
.section-heading__eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("/wp-content/uploads/2026/04/leaves-1.png") center/contain no-repeat;
  flex-shrink: 0;
}

/* light variant (hero) */
.section-heading__eyebrow--light { color: #fff; }
.section-heading__eyebrow--light::before { filter: brightness(0) invert(1); }

.section-heading__title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.18;
}

.section-heading__text {
  margin-top: 16px;
  color: var(--color-text);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 14px 28px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  transform: translateY(-2px);
}

/* Primary — lime/yellow (hero, CTAs) */
.button--accent {
  background: linear-gradient(to right, var(--color-primary) 50%, var(--tg-primary) 50%);
  background-size: 200%;
  background-position: left;
  transition: background-position 0.3s ease;
}

.button--accent:hover {
  background-position: right;
	transform: none;
	color: #fff;
}

/* Dark — near-black (header Get In Touch, about) */
.button--dark,
.button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button.alt,
.woocommerce #respond input#submit.alt {
  color: #fff;
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-soft);
}

.button__icon {
  margin-left: 8px;
  font-size: 0.9em;
  display: inline-flex;
  align-items: center;
  transition: transform var(--transition);
}


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 60;
  transition:
    background-color var(--transition),
    box-shadow var(--transition);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.site-header.is-sticky {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 28px rgba(10, 10, 10, 0.08);
}

.site-header.is-sticky .site-header__inner {
  border-bottom-color: rgba(37, 37, 37, 0.08);
}

/* Logo */
.site-brand { flex: 0 0 auto; }

.site-brand__link {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.custom-logo-link { display: inline-flex; }

.custom-logo,
.site-brand__logo {
  width: auto;
  max-width: 200px;
  height: 46px;
  object-fit: contain;
}

.site-brand__logo--sticky {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.site-header.is-sticky .site-brand__logo--default { opacity: 0; }
.site-header.is-sticky .site-brand__logo--sticky  { opacity: 1; }

/* Nav */
.site-nav { flex: 1 1 auto; }

.site-nav__list,
.mobile-nav__list,
.footer-menu,
.social-list,
.woocommerce-breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.site-nav__list > li { position: relative; }

.site-nav__link,
.site-nav__list > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 88px;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.site-header.is-sticky .site-nav__link,
.site-header.is-sticky .site-nav__list > li > a {
  color: var(--color-heading);
}

/* active underline */
.site-nav__link-text {
  position: relative;
}
.site-nav__link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.site-nav__list > li:hover > a .site-nav__link-text::after,
.site-nav__list > li.current-menu-item > a .site-nav__link-text::after,
.site-nav__list > li.current-menu-ancestor > a .site-nav__link-text::after { transform: scaleX(1); }

/* Dropdown */
.site-nav .sub-menu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 230px;
  padding: 10px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}
.site-nav .sub-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--color-heading);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
}
.site-nav .sub-menu li a:hover {
  color: var(--tg-primary);
background: rgba(232, 240, 220, 0.75);
}
.site-nav__list > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Header actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.icon-button,
.menu-toggle,
.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition), color var(--transition);
}

.site-header.is-sticky .icon-button,
.site-header.is-sticky .menu-toggle { color: var(--color-heading); }

.icon-button svg { width: 20px; height: 20px; fill: currentColor; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease;
}
.mobile-nav.is-open { max-height: 480px; }
.mobile-nav__inner {
  display: grid;
  gap: 10px;
  padding: 18px 0 24px;
}
.mobile-nav__link,
.mobile-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  color: var(--color-heading);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(13, 22, 15, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-overlay__dialog {
  position: relative;
  width: min(100%, 700px);
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.search-overlay__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 42px; height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f1f1ec;
  color: var(--color-heading);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}
.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}
.search-field {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

/* ============================================================
   HERO
   ============================================================ */
.section--hero {
  min-height: 100vh;
  padding: 0;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
	position: relative;
}
.section--hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(18, 38, 24, 0.85) 0%,
    rgba(18, 38, 24, 0.50) 60%,
    rgba(18, 38, 24, 0.20) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 140px 0 80px;
}

.hero__row {
  display: grid;
  grid-template-columns: 54% 46%;
}


.hero__spacer { min-height: 1px; }

/* H1 */
.hero__title {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin: 12px 0 0;
}

.hero__text {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  line-height: 1.7;
}

.hero__actions { margin-top: 36px; }

/* Bottom feature icons row */
.hero__feature-row {
  display: grid;
  grid-template-columns: 50% 50%;
  padding-top: 70px;
}

.hero__feature-spacer { min-height: 1px; }

.hero__feature-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-right: -40px;
}

.mini-feature {
  text-align: center;
  color: #fff;
}

.mini-feature--offset { margin-top: -48px; }

.mini-feature__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
	--g: /20.56% 20.56% radial-gradient(#000 calc(71% - 1px),#0000 71%) no-repeat;
    mask: 100% 50% var(--g), 93.301% 75% var(--g), 75% 93.301% var(--g), 50% 100% var(--g), 25% 93.301% var(--g), 6.699% 75% var(--g), 0% 50% var(--g), 6.699% 25% var(--g), 25% 6.699% var(--g), 50% 0% var(--g), 75% 6.699% var(--g), 93.301% 25% var(--g), radial-gradient(100% 100%, #000 38.366%, #0000 calc(38.366% + 1px));
}

.mini-feature__icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--color-primary);
  padding: 14px;
}

.mini-feature__title {
  max-width: 160px;
  margin: 0 auto;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================================
   ABOUT
   ============================================================ */
.section--about {
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--color-light);
}

.about__top {
  margin-bottom: 60px;
}

.about__intro {
  max-width: 650px;
  margin-bottom: 50px;
}

/* Eyebrow with leaf icon */
.section-heading__eyebrow--icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-icon {
  width: 28px;
  height: auto;
}

/* 4-column feature grid */
.about__feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card { padding: 0; }

.feature-card__icon-wrap { margin: 0 0 16px; }

.feature-card__icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.feature-card__title {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.feature-card__text {
  margin-top: 8px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
}

/* Bottom: 2 images + summary */
.about__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.about__image-left,
.about__image-right {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.about__image-left img,
.about__image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-right {
  position: relative;
}

.about__box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(144, 169, 85, 0.9);
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about__box-text {
  color: #fff;
  max-width: 60%;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--body-font);
  line-height: 1.5;
}

.about__images {
  position: relative;
  min-height: 480px;
  padding-right: 40px; /* Space for the overlapping small image */
  padding-bottom: 40px; /* Some bottom breathing room */
}

/* Base styling for both images */
.about__img-large,
.about__img-small {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-strong);
}

.about__img-large {
  width: 100%;
  height: 100%;
  max-width: calc(100% - 60px); 
  display: block;
}

.about__img-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 320px;
  z-index: 2;
}

.about__summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Changed to start */
  gap: 24px;
  text-align: left; /* Changed to left */
}

.button--dark {
  background: var(--color-heading);
  color: #fff;
}
.button--dark:hover {
  background: var(--color-primary);
}

.about__summary-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
}

/* ============================================================
   AGRO EXCELLENCE (Services)
   ============================================================ */
.section--services,
.section--products {
  padding-top: 80px;
  padding-bottom: 60px;
  background: #fff;
}

/* ---------- Products layout: featured left + 2×2 grid right ---------- */
.products-layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.products-featured-col {
    height: 100%;
    min-height: 580px;
}

.products-grid-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: stretch;
}

/* ---------- FEATURED PRODUCT CARD (left) ---------- */
.product-card--featured {
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100%;
    background: #1a1a1a;
    border-radius: 20px;
}

.product-card--featured__image-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.product-card--featured__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.product-card--featured:hover .product-card--featured__image {
    transform: scale(1.05);
}

.product-card--featured::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 55%;
    background: linear-gradient(to top, rgba(15, 20, 10, 0.92) 0%, rgba(15, 20, 10, 0.5) 50%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.product-card--featured__content {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 32px 30px;
    z-index: 3;
    color: #fff;
}

.product-card--featured__badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.product-card--featured__title {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    line-height: 1.15;
    margin-bottom: 0;
    font-family: var(--heading-font);
    font-weight: 700;
}

.product-card--featured__title a {
    color: #fff;
    text-decoration: none;
}

.product-card--featured__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.product-card--featured__price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8B9E3A;
    font-family: var(--heading-font);
}

.product-card--featured__btn {
    background: transparent !important;
    color: #1A3A32 !important;
    padding: 12px 28px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    border: 1.5px solid rgba(255,255,255,0.9) !important;
    color: #fff !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    min-height: auto !important;
    box-shadow: none !important;
}

.product-card--featured__btn:hover {
    background: #fff !important;
    color: #1A3A32 !important;
    border-color: #fff !important;
    transform: none;
}

.services__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 28px;
}

/* ============================================================
   STATS (Sustainable Farming)
   ============================================================ */
.section--stats {
  background: var(--color-light);
  padding-top: 80px;
  padding-bottom: 80px;
}

.stats__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.stats__desc {
  padding-top: 25px;
}

.stats__desc p {
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.7;
}

.stats__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
}

.stat-card:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.stat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-card__value,
.stat-card__label {
  position: relative;
  z-index: 1;
  color: #fff;
}

.stat-card__value {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
}

.stat-card__label {
  margin-top: 6px;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

/* Middle stat group: button above + elevated card */
.stats__middle {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Stretch to fill column */
  gap: 20px;
  width: 100%;
}

.stats__middle .button {
  align-self: center;
}

.stat-card--elevated {
  border: none;
  min-height: 460px;
  box-shadow: none;
  width: 100%; /* Force full width within column */
  box-sizing: border-box;
}

/* ============================================================
   WHY CHOOSE OUR FARM
   ============================================================ */
.section--why {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: auto;
  background-color: #2d4a1e;
  overflow: hidden;
}

.why__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background-color: transparent;
  --background-overlay: '';
  background-image: linear-gradient(180deg, #FAF7F000 0%, #394E10 100%);
  z-index: 0;
}

.section--why .container {
  position: relative;
  z-index: 1;
}

.section-heading--center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-heading__eyebrow--light {
  color: #fff;
}

.section-heading__title--light {
  color: #fff;
}

/* Flex grid: 3 items top row, 2 items bottom row (centered) */
.why__flex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 80px;
  flex-wrap: nowrap;
}

.why-item {
  text-align: center;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
	padding: 0 12px;
	z-index: 2;
}

.why-item:nth-child(2),
.why-item:nth-child(4) {
  margin-top: 100px;
}
.why-item:nth-child(1),
.why-item:nth-child(5) {
  margin-top: 200px;
}

.why-item__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-heading);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 0 0 6px rgba(183,202,62,0.25), 0 0 0 14px rgba(183,202,62,0.10);
	transition: 0.3s;
}

.why-item__title {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
	transition: 0.3s;
}

.why-item:hover .why-item__badge {
	background: var(--tg-primary-soft);
	color: #fff;
}

/* ============================================================
   AGRI INTELLIGENCE (Wheel section)
   ============================================================ */
.section--agri {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--color-light);
}

.agri__feature-row {
  display: grid;
  grid-template-columns: 24% 46% 24%;
	justify-content:space-between;
  gap: 24px;
}

.agri__feature-row .feature-box .button {
	margin-top: 15px;
}

.feature-box {
  padding: 10px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
	display: flex;
	flex-direction: column;
	margin: 60px 0;
}

.feature-box__index {
display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-heading);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.feature-box--left .feature-box__index {
	margin-left: 30px;
}
.feature-box--right .feature-box__index {
	margin-right: 30px;
}

.feature-box__index:before {
	content: "";
    background-image: url(/wp-content/uploads/2026/04/shape-16.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100px;
    height: 75px;
    position: absolute;
    left: 50%;
    top: 50%;
    border: none;
    transform: translate(-50%, -50%);
}

.feature-box__title {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--color-heading);
}

.feature-box__text {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.65;
}

.feature-box--right {
  text-align: right;
	    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-box--right .feature-box__index {
  margin-left: auto;
}

.agri__wheel {
  border-radius: 50%;
  overflow: hidden;
}

.agri__wheel img {
  width: 100%;
  height: auto;
  display: block;
}

.fact-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 20px;
  border-radius: var(--radius-sm);
  background: var(--color-light);
  box-shadow: var(--shadow-soft);
}

.fact-card__icon-wrap { margin: 0; }

.fact-card__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.fact-card__value {
  color: var(--color-heading);
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.fact-card__text {
  margin-top: 4px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
}

/* Service cards (swiper) */
.section--services .slider-block { margin-top: 28px; }

.service-card,
.post-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid #eee;
}

.service-card__image-link,
.post-card__image-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.service-card__image,
.post-card__image,
.shop-card__image,
.product-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card__image-link:hover .service-card__image,
.post-card__image-link:hover .post-card__image { transform: scale(1.04); }

.service-card__body,
.post-card__body,
.shop-card__body,
.product-card__body {
  padding: 20px 22px 18px;
}

.service-card__title,
.post-card__title {
  font-size: 20px;
  line-height: 1.35;
}

.service-card__title a,
.post-card__title a { color: var(--color-heading); }
.service-card__title a:hover,
.post-card__title a:hover { color: var(--color-primary); }

.service-card__link,
.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--color-heading);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
}

.service-card__link:hover,
.post-card__link:hover { color: var(--color-primary-dark); }

/* ============================================================
   SLIDERS (shared)
   ============================================================ */
.slider-block { margin-top: 26px; }

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

.slider-head__controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.slider-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid #666;
  background: transparent;
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-arrow:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.slider-arrow--absolute {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slider-arrow--absolute.slider-arrow--prev {
  left: 0;
}
.slider-arrow--absolute.slider-arrow--next {
  right: 0;
}

.swiper { overflow: hidden; }
.swiper-slide { height: auto; }

.swiper-pagination {
  position: static;
  margin-top: 24px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 10px; height: 10px;
  margin: 0 5px !important;
  background: rgba(37, 37, 37, 0.18);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section--testimonials {
  padding-top: 80px;
  padding-bottom: 60px;
  background: var(--color-light);
}

.testimonials {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 40px;
}

.testimonials__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonials__meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rating-card,
.support-card {
  padding: 24px 24px 26px;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.rating-card__value,
.support-card__title {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.rating-card__text {
  margin-top: 10px;
  color: var(--color-text);
  font-size: 14px;
}

.support-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.support-card__shape {
  width: 100px;
  max-width: 100%;
  align-self: flex-end;
}

.testimonial-card {
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 30px 28px;
}

.testimonial-card__quote {
  color: var(--color-heading);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.testimonial-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 20px;
  line-height: 1.3;
}

.testimonial-card__role {
  color: var(--color-text);
  font-size: 14px;
  margin-top: 4px;
}

/* ============================================================
   BLOG
   ============================================================ */
.section--blog {
  padding-top: 80px;
  padding-bottom: 60px;
  background: #fff;
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 10px;
}

.section--blog .section-heading { max-width: 55%; }

.post-card__category {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-heading);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.post-card__meta {
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: 14px;
}

.post-card__excerpt {
  margin-top: 8px;
  color: var(--color-text);
  font-size: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  color: rgba(255,255,255,0.88);
  background:
    url("/wp-content/uploads/agrezen-assets/footer-3.webp")
    center center / cover no-repeat;
}


.site-footer__grid {
  display: grid;
  grid-template-columns: 36% 26% 38%;
  gap: 40px;
}

.site-footer__menus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.site-footer__logo { width: auto; height: 48px; object-fit: contain; }

.site-footer__title {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* lime dot before footer titles */
.site-footer__title::before {
  content: "";
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.site-footer__text {
  color: rgba(255,255,255,0.70);
  font-size: 16px;
  line-height: 1.7;
}

.site-footer__contact { margin-top: 28px; }

.site-footer__phone,
.site-footer__mail { display: block; }

.site-footer__phone {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Phone icon circle */
.site-footer__phone::before {
  content: "📞";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.site-footer__mail {
  margin-top: 14px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
}

.site-footer__mail::before {
  content: "✉";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-menu { margin-top: 0; }

.footer-menu li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-menu li::before {
  content: "↗";
  color: var(--color-primary);
  font-size: 0.9rem;
}

.footer-menu li + li { margin-top: 14px; }

.footer-menu a {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  transition: color var(--transition);
}

.footer-menu a:hover { color: var(--color-primary); }

/* Newsletter */
.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 0;
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-form input {
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

.newsletter-form .button--accent {
  border-radius: 0;
  min-height: 56px;
  padding: 0 20px;
}

.social-list {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  transition: background var(--transition), border-color var(--transition);
}

.social-list a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-heading);
}

/* Footer bottom bar */
.site-footer__bottom {
  background: rgba(38, 36, 32, 0.95);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 22px 0;
  text-align: center;
}

.site-footer__bottom p { margin: 0; color: rgba(255,255,255,0.65); font-size: 14px; }

.site-footer__bottom p a { color: var(--color-primary); }

.site-footer__bottom-links {
  display: flex;
  gap: 18px;
}

.site-footer__bottom-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

.site-footer__bottom-links a:hover { color: var(--color-primary); }

/* ============================================================
   SHOP / WOOCOMMERCE
   ============================================================ */
.archive-header {
  padding: 180px 0 110px;
  background:
    linear-gradient(180deg, rgba(17,47,28,0.84), rgba(17,47,28,0.78)),
    url("/wp-content/uploads/agrezen-assets/section-bg-1.webp")
    center center / cover no-repeat;
  color: #fff;
}

.archive-header__title {
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 4.375rem);
  line-height: 1.1;
}

.archive-header__text {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255,255,255,0.85);
}

.woocommerce-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.82);
}

.woocommerce-shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 34px;
}

.woocommerce-ordering select,
.quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0; margin: 0;
  list-style: none;
}

.woocommerce ul.products li.product {
  width: auto;
  margin: 0;
  float: none;
}

.shop-card,
.product-card {
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.shop-card__price,
.product-card__price,
.single-product-layout__price {
  color: var(--color-primary-dark);
  font-family: var(--heading-font);
  font-size: 22px;
  line-height: 1.3;
}

.shop-card__body .button,
.product-card__body .button {
  width: 100%;
  margin-top: 16px;
}

.single-product-layout,
.woocommerce-cart-wrapper,
.woocommerce-checkout-wrapper {
  display: grid;
  gap: 26px;
  padding: 60px 0 var(--section-space);
}

.single-product-layout { grid-template-columns: 1fr 0.9fr; }

.woocommerce-cart-wrapper,
.woocommerce-checkout-wrapper { grid-template-columns: 1.35fr 0.85fr; }

.single-product-layout__gallery,
.single-product-layout__summary,
.cart-table,
.cart-summary,
.checkout-layout__form,
.checkout-layout__summary {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.single-product-layout__title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.single-product-layout__gallery img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item__thumb img {
  width: 120px; height: 120px;
  border-radius: 18px;
  object-fit: cover;
}

.cart-item__title { font-size: 22px; line-height: 1.35; }

.checkout-layout__title { font-size: 26px; line-height: 1.3; }

.woocommerce-pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.woocommerce-pagination ul.page-numbers a,
.woocommerce-pagination ul.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px; height: 44px;
  padding: 0 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.woocommerce-pagination ul.page-numbers .current {
  color: #fff;
  background: var(--color-primary-dark);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1200px)
   ============================================================ */
@media (max-width: 1200px) {
  .site-nav,
  .site-header .button--dark { display: none; }

  .menu-toggle { display: inline-flex; }

  .hero__row                { grid-template-columns: 70% 30%; }
  .hero__feature-row,
  .about__top,
  .about__bottom,
  .stats,
  .products-layout-wrapper,
  .brands__feature,
  .testimonials,
  .site-footer__grid,
  .woocommerce-cart-wrapper,
  .woocommerce-checkout-wrapper,
  .single-product-layout    { grid-template-columns: 1fr; }

  .hero__feature-stack,
  .woocommerce ul.products  { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .products-grid-col,
  .testimonials__meta,
  .site-footer__menus       { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .stats__cards             { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats__cta               { justify-self: flex-start; }

  .section--blog .section-heading { max-width: 100%; }
  .blog-header              { flex-direction: column; align-items: flex-start; text-align: left !important;}

  .about__feature-grid      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   RESPONSIVE — TABLET SMALL (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-space: 80px; }
	
	.feature-box--right .feature-box__index {
	margin-right: 0;
		margin-left: 30px;
}

  .site-header {
    background: #fff;
    box-shadow: 0 6px 20px rgba(10,10,10,0.06);
  }

  .site-header__inner { min-height: 70px; border-bottom-color: rgba(37,37,37,0.08); }

  /* Force light logo on mobile */
  .site-brand__logo--default { opacity: 0; }
  .site-brand__logo--sticky  { opacity: 1; }
  .icon-button, .menu-toggle { color: var(--color-heading); }

  .hero__row          { grid-template-columns: 100%; }
  .hero__feature-row  { grid-template-columns: 100%; padding-top: 40px; }
  .hero__feature-spacer { display: none; }
  .hero__feature-stack { margin-right: 0; }

  .products-featured-col { min-height: 400px; }

  .about__images      { grid-template-columns: 1fr; }
  .about__image--small { width: 100%; min-height: 300px; }

  .services__visual,
  .products__visual   { max-width: 560px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
  .container { width: min(calc(100% - 28px), var(--container)); }

  .section--hero {
    min-height: 100svh;
    padding: 0;
  }

  .section--hero__backdrop::before { display: none; }

  .hero__feature-stack,
  .about__feature-grid,
  .products-grid-col,
  .stats__cards,
  .testimonials__meta,
  .site-footer__menus,
  .woocommerce ul.products { grid-template-columns: 1fr; }

  .mini-feature--offset { margin-top: 0; }

  .slider-head { align-items: flex-start; flex-direction: column; }

  .service-card__image,
  .post-card__image,
  .shop-card__image,
  .product-card__image { height: 240px; }

  .site-footer__bottom-inner { flex-direction: column; }

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

  .cart-item          { grid-template-columns: 90px 1fr; }
  .cart-item__thumb img { width: 90px; height: 90px; }

  .woocommerce-shop-controls { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   SEARCH OVERLAY - PREMIUM GLASSMORPHISM
   ========================================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 38, 24, 0.98);
    backdrop-filter: blur(10px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.search-overlay__dialog {
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: scale(0.9) translateY(40px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.is-active .search-overlay__dialog {
    transform: scale(1) translateY(0);
}

.search-overlay__close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-overlay__close:hover {
    background: var(--color-accent);
    transform: rotate(90deg);
}

.search-overlay__title {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: -1px;
}

.search-overlay .search-form {
    display: flex;
    background: rgba(255,255,255,1);
    padding: 8px;
    border-radius: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.search-overlay .search-field {
    flex: 1;
    border: none !important;
    padding: 0 30px !important;
    height: 64px;
    font-size: 1.25rem;
    background: transparent;
    color: #122618;
    outline: none;
}

.search-overlay .search-submit {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.search-overlay .search-submit:hover {
    background: var(--color-accent);
    transform: scale(1.05);
}

/* ==========================================================================
   BREADCRUMBS & PAGE HEADER
   ========================================================================== */
.page-header {
    background-color: var(--color-secondary);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 8rem 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 38, 24, 0.7); /* Dark overlay */
    z-index: 1;
}

.page-header > .container {
    position: relative;
    z-index: 2;
}

.page-header__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.rank-math-breadcrumb {
    font-family: var(--body-font);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.rank-math-breadcrumb a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s;
}

.rank-math-breadcrumb a:hover {
    color: #fff;
}

.rank-math-breadcrumb .separator {
    margin: 0 12px;
    opacity: 0.6;
    color: #fff;
}

/* ==========================================================================
   PAGE / ARCHIVE LAYOUTS
   ========================================================================== */
.site-main-wrap {
    padding: 80px 0;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.single-post-content {
    max-width: 840px;
    margin: 0 auto;
}

.single-post-content img {
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.single-post-header {
    margin-bottom: 40px;
}

.single-post-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.single-post-meta {
    font-size: 0.9rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   PRODUCT CARD REDESIGN — match reference image exactly
   ========================================================================== */
.section--products .product-card {
    background: #F7F3EB;
    border-radius: 16px;
    padding: 0;
    transition: all 0.35s ease;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    overflow: hidden;
}

.section--products .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.section--products .product-card__image-link {
    display: block;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: #F7F3EB;
    border-radius: 0;
    margin-bottom: 0;
}

.section--products .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.section--products .product-card:hover .product-card__image {
    transform: scale(1.05);
}

.section--products .product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 18px 20px 20px;
	gap: 0;
}

.section--products .product-card__title {
    font-family: var(--heading-font);
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 1.3;
}

.section--products .product-card__title a {
    color: #1A3A32;
    text-decoration: none;
    transition: color 0.3s;
	 display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section--products .product-card__title a:hover {
    color: #3a5a3e;
}

.section--products .product-card__price {
    font-size: 1rem;
    font-weight: 600;
    color: #6B8E3A;
    margin-bottom: 16px;
    display: block;
    font-family: var(--heading-font);
    font-style: italic;
}

.section--products .product-card__btn {
    margin-top: auto;
    width: 100%;
    background: transparent !important;
    border: 1.5px solid #D5CFC0 !important;
    color: #1A3A32 !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    padding: 8px 18px;
    justify-content: center;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    min-height: auto !important;
}
/* ============================================================
   RESPONSIVE FIXES — ADDED
   ============================================================ */
@media (max-width: 1200px) {
  .agri__feature-row { grid-template-columns: 1fr !important; gap: 40px !important; }
  .agri__wheel { max-width: 500px !important; margin: 0 auto !important; }
}

@media (max-width: 1024px) {
  .why-item { width: calc(50% - 20px) !important; }
  .why-item:nth-child(4), .why-item:nth-child(5) { width: calc(50% - 20px) !important; }
  .site-header__actions .button--accent { display: none !important; }
  .site-header__inner { min-height: 70px !important; }
}

@media (max-width: 767px) {
	.why-item, .why-item:nth-child(4), .why-item:nth-child(5) { width: 100% !important; }
	.agri__wheel { max-width: 100% !important; }
	.product-card--featured__content { padding: 24px 20px !important; }
	.site-header__inner { min-height: 64px !important; }
	.section--products .product-card__image-link { aspect-ratio: 16/9 !important; }
	.hero__title { font-size: 2.2rem !important; }
	.section-heading__title { font-size: 1.8rem !important; }
}

/* ============================================================
   SEARCH DROPDOWN
   ============================================================ */
.header-search-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 25px;
  background: var(--color-white, #FFF);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.header-search-dropdown.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-search-dropdown .search-form {
  display: flex;
  position: relative;
  margin: 0;
}

.header-search-dropdown .search-field {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 1px solid #EAEAEA;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
  background: #F7F3EB;
}

.header-search-dropdown .search-field:focus {
  border-color: #1A3A32;
  background: #FFF;
}

.header-search-dropdown .search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #1A3A32;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 1.1rem;
}

@media (max-width: 639px) {
  .header-search-dropdown {
    position: fixed;
    top: 70px;
    left: 15px;
    right: 15px;
    width: auto;
  }
}

/* ============================================================
   LEGACY HOME BRIDGE OVERRIDES
   ============================================================ */
body.trangon-legacy-home #site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

body.admin-bar.trangon-legacy-home #site-header {
  top: 32px;
}

body.trangon-legacy-home #site-header .site-header__inner {
  width: min(calc(100% - 40px), var(--container));
  padding-block: 14px;
}

body.trangon-legacy-home #site-header .site-header__brand {
  flex: 0 0 auto;
	line-height: 1;
}

body.trangon-legacy-home #site-header .site-nav {
  flex: 1 1 auto;
}

body.trangon-legacy-home #site-header .site-nav__menu {
  justify-content: center;
}

body.trangon-legacy-home #site-header .site-nav__menu > li > a {
  color: #fff;
}

body.trangon-legacy-home #site-header .site-nav__menu > li.current-menu-item > a::after,
body.trangon-legacy-home #site-header .site-nav__menu > li.current-menu-ancestor > a::after,
body.trangon-legacy-home #site-header .site-nav__menu > li.current_page_item > a::after,
body.trangon-legacy-home #site-header .site-nav__menu > li.current_page_ancestor > a::after {
  background: var(--color-primary);
  bottom: -5px;
}

body.trangon-legacy-home #site-header .site-header__actions {
  gap: 12px;
}

body.trangon-legacy-home #site-header .site-header__icon,
body.trangon-legacy-home #site-header .site-header__toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

body.trangon-legacy-home #site-header .site-header__hotline,
body.trangon-legacy-home #site-header .site-logo,
body.trangon-legacy-home #site-header .site-logo-text {
  color: #fff;
}

body.trangon-legacy-home #site-header .site-header__cta {
  min-height: 56px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

body.trangon-legacy-home #site-header .site-header__cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

body.trangon-legacy-home #site-header .custom-logo-link img {
  filter: brightness(0) invert(1);
}

body.trangon-legacy-home #site-header .site-header__search-form {
  width: min(380px, calc(100vw - 40px));
}

body.trangon-legacy-home #site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(10, 10, 10, 0.08);
  border-bottom-color: rgba(37, 37, 37, 0.08);
}

body.trangon-legacy-home #site-header.is-scrolled .site-nav__menu > li > a,
body.trangon-legacy-home #site-header.is-scrolled .site-header__icon,
body.trangon-legacy-home #site-header.is-scrolled .site-header__toggle,
body.trangon-legacy-home #site-header.is-scrolled .site-header__hotline,
body.trangon-legacy-home #site-header.is-scrolled .site-logo,
body.trangon-legacy-home #site-header.is-scrolled .site-logo-text,
body.trangon-legacy-home #site-header.is-scrolled .site-header__cta {
  color: var(--color-heading);
}

body.trangon-legacy-home #site-header.is-scrolled .site-header__icon,
body.trangon-legacy-home #site-header.is-scrolled .site-header__toggle,
body.trangon-legacy-home #site-header.is-scrolled .site-header__cta {
  border-color: rgba(37, 37, 37, 0.12);
}

body.trangon-legacy-home #site-header.is-scrolled .custom-logo-link img {
  filter: none;
}

body.trangon-legacy-home .legacy-home {
  overflow: clip;
}


body.trangon-legacy-home .section-heading--center {
  margin-inline: auto;
  text-align: center;
}

body.trangon-legacy-home .section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--color-primary-dark);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

body.trangon-legacy-home .section-heading__title {
  margin: 0;
  color: var(--color-heading);
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

body.trangon-legacy-home .section-heading__title--light,
body.trangon-legacy-home .section-heading__eyebrow--light {
  color: #fff;
}

body.trangon-legacy-home .hero {
  padding-top: 170px;
}

body.trangon-legacy-home .hero__content {
  max-width: 650px;
}

body.trangon-legacy-home .site-footer {
  margin-top: 0;
}

@media (max-width: 1200px) {
  body.trangon-legacy-home #site-header .site-nav {
    display: none;
  }

  body.trangon-legacy-home #site-header .site-header__toggle {
    display: inline-flex;
  }
}

@media (max-width: 1024px) {
  body.trangon-legacy-home #site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(37, 37, 37, 0.08);
  }

  body.trangon-legacy-home #site-header .site-header__inner {
    min-height: 70px;
  }

  body.trangon-legacy-home #site-header .site-nav__menu > li > a,
  body.trangon-legacy-home #site-header .site-header__icon,
  body.trangon-legacy-home #site-header .site-header__toggle,
  body.trangon-legacy-home #site-header .site-header__hotline,
  body.trangon-legacy-home #site-header .site-logo,
  body.trangon-legacy-home #site-header .site-logo-text,
  body.trangon-legacy-home #site-header .site-header__cta {
    color: var(--color-heading);
  }

  body.trangon-legacy-home #site-header .custom-logo-link img {
    filter: none;
  }
}

@media (max-width: 782px) {
  body.admin-bar.trangon-legacy-home #site-header {
    top: 46px;
  }
}

@media (max-width: 767px) {
  body.trangon-legacy-home .section-heading__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  body.trangon-legacy-home .hero {
    padding-top: 140px;
    padding-bottom: 56px;
  }

  body.trangon-legacy-home .hero__row,
  body.trangon-legacy-home .hero__feature-row,
  body.trangon-legacy-home .stats__header,
  body.trangon-legacy-home .stats__row,
  body.trangon-legacy-home .agri__feature-row,
  body.trangon-legacy-home .testimonials {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.trangon-legacy-home .hero__content,
  body.trangon-legacy-home .stats__heading,
  body.trangon-legacy-home .stats__desc,
  body.trangon-legacy-home .testimonials__left,
  body.trangon-legacy-home .testimonials__right {
    max-width: 100%;
    width: 100%;
  }

  body.trangon-legacy-home .hero__feature-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-right: 0;
  }

  body.trangon-legacy-home .about__bottom,
  body.trangon-legacy-home .about__feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.trangon-legacy-home .about__box {
    position: static;
    margin-top: 24px;
    max-width: 100%;
  }

  body.trangon-legacy-home .feature-box--right {
    text-align: left;
  }


  body.trangon-legacy-home .why-item,
  body.trangon-legacy-home .why-item:nth-child(4),
  body.trangon-legacy-home .why-item:nth-child(5) {
    width: calc(50% - 16px);
  }

  body.trangon-legacy-home .blog-swiper,
  body.trangon-legacy-home .testimonials-swiper {
    margin: 0 !important;
  }
}

@media (max-width: 767px) {
  body.trangon-legacy-home .hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  body.trangon-legacy-home .hero__title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  body.trangon-legacy-home .hero__feature-stack {
    grid-template-columns: 1fr;
  }

  body.trangon-legacy-home .mini-feature,
  body.trangon-legacy-home .mini-feature--offset {
    margin-top: 0;
  }

  body.trangon-legacy-home .about__box {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  body.trangon-legacy-home .about__box-text {
    max-width: 100%;
    font-size: 16px;
  }

  body.trangon-legacy-home .stats__row,
  body.trangon-legacy-home .agri__feature-row,
  body.trangon-legacy-home .why__flex-grid {
    gap: 20px;
  }

  body.trangon-legacy-home .products-layout-wrapper,
  body.trangon-legacy-home .product-card--featured__footer {
    gap: 16px;
  }

  body.trangon-legacy-home .product-card--featured__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  body.trangon-legacy-home .slider-arrow--absolute {
    display: none;
  }

  body.trangon-legacy-home .blog-swiper,
  body.trangon-legacy-home .testimonials-swiper {
    margin: 0 !important;
  }

  body.trangon-legacy-home .testimonial-card {
    padding: 24px 20px;
  }

  body.trangon-legacy-home .why-item,
  body.trangon-legacy-home .why-item:nth-child(4),
  body.trangon-legacy-home .why-item:nth-child(5) {
    width: 100%;
  }
}

/* ============================================================
   FINAL RESPONSIVE REFINEMENTS
   ============================================================ */
body.trangon-legacy-home #site-header,
body.trangon-legacy-home #site-header .site-header__inner,
body.trangon-legacy-home #site-header .site-header__actions,
body.trangon-legacy-home #site-header .site-header__toggle {
  pointer-events: auto;
}

body.trangon-legacy-home #site-header .site-header__inner,
body.trangon-legacy-home #site-header .site-header__actions {
  position: relative;
  z-index: 3;
}

body.trangon-legacy-home #site-header .site-header__toggle {
  position: relative;
  z-index: 4;
  touch-action: manipulation;
}

@media (max-width: 1024px) {
  body.trangon-legacy-home .legacy-home .section:not(.section--hero) {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  body.trangon-legacy-home .section--hero {
    min-height: auto;
  }

  body.trangon-legacy-home .hero {
    padding-top: 132px;
    padding-bottom: 44px;
  }

  body.trangon-legacy-home .hero__title {
    font-size: clamp(3rem, 6vw, 4.3rem);
  }

  body.trangon-legacy-home .hero__text {
    max-width: 40rem;
    font-size: 17px;
  }

  body.trangon-legacy-home .hero__feature-row {
    padding-top: 28px;
  }

  body.trangon-legacy-home .hero__feature-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  body.trangon-legacy-home .mini-feature,
  body.trangon-legacy-home .mini-feature--offset {
    margin-top: 0;
  }

  body.trangon-legacy-home .mini-feature__icon {
    width: 64px;
    height: 64px;
    padding: 12px;
  }

  body.trangon-legacy-home .mini-feature__title {
    max-width: none;
    font-size: 16px;
  }

  body.trangon-legacy-home .about__top,
  body.trangon-legacy-home .products-layout-wrapper {
    gap: 24px;
  }

  body.trangon-legacy-home .about__feature-grid,
  body.trangon-legacy-home .products-grid-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  body.trangon-legacy-home .about__box {
    position: absolute !important;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin-top: 0;
    max-width: none;
    padding: 26px 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  body.trangon-legacy-home .about__box-text {
    max-width: 100%;
  }

  body.trangon-legacy-home .stats__row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch;
    gap: 18px;
  }

  body.trangon-legacy-home .stats__middle {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 18px;
    align-self: stretch;
  }

  body.trangon-legacy-home .stats__middle .button {
    width: 100%;
    justify-content: center;
  }

  body.trangon-legacy-home .stat-card {
    min-height: 300px;
    padding: 22px;
  }

  body.trangon-legacy-home .stat-card--elevated {
    min-height: 350px;
  }

  body.trangon-legacy-home .product-card--featured {
    min-height: 460px;
  }

  body.trangon-legacy-home .agri__feature-row {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr) minmax(0, 1fr) !important;
    gap: 18px;
    align-items: flex-start;
  }

  body.trangon-legacy-home .agri__wheel {
    max-width: min(100%, 260px);
    margin-inline: auto;
  }

  body.trangon-legacy-home .testimonials__meta {
    grid-template-columns: 1fr;
  }

  body.trangon-legacy-home .testimonials__right,
  body.trangon-legacy-home .blog-swiper,
  body.trangon-legacy-home .testimonials-swiper,
  body.trangon-legacy-home .testimonials-swiper .swiper-wrapper,
  body.trangon-legacy-home .testimonials-swiper .swiper-slide {
    min-width: 0;
  }

  body.trangon-legacy-home .testimonials-swiper .swiper-wrapper {
    align-items: stretch;
  }

  body.trangon-legacy-home .testimonials-swiper .swiper-slide {
    height: auto;
  }

  body.trangon-legacy-home .testimonial-card {
    width: 100%;
  }
}

@media (max-width: 767px) {
  body.trangon-legacy-home .legacy-home .section:not(.section--hero) {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  body.trangon-legacy-home #site-header .site-header__inner {
    width: min(calc(100% - 24px), var(--container));
    padding-block: 10px;
  }

  body.trangon-legacy-home .hero {
    padding-top: 104px;
    padding-bottom: 36px;
  }

  body.trangon-legacy-home .hero__title {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.1rem);
  }

  body.trangon-legacy-home .hero__text {
    font-size: 17px;
  }

  body.trangon-legacy-home .hero__actions .button {
    width: 100%;
    justify-content: center;
  }

  body.trangon-legacy-home .hero__feature-stack {
    grid-template-columns: 1fr;
	  gap: 10px;
  }

  body.trangon-legacy-home .mini-feature,
  body.trangon-legacy-home .mini-feature--offset {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 0 ;
    border-radius: 20px;
  }

  body.trangon-legacy-home .mini-feature__icon-wrap {
    margin: 0;
    flex: 0 0 auto;
  }

  body.trangon-legacy-home .mini-feature__icon {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  body.trangon-legacy-home .mini-feature__title {
    margin: 0;
    max-width: none;
    font-size: 17px;
  }

  body.trangon-legacy-home .section-heading__eyebrow {
    margin-bottom: 10px;
    font-size: 16px;
  }

  body.trangon-legacy-home .section-heading__title {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.12;
  }

  body.trangon-legacy-home .about__feature-grid {
    grid-template-columns: 1fr;
  }
  body.trangon-legacy-home .products-grid-col {
	 grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
  }

  body.trangon-legacy-home .feature-card__icon {
    width: 72px;
    height: 72px;
  }

  body.trangon-legacy-home .about__box {
    position: absolute !important;
    padding: 18px 16px;
  }

  body.trangon-legacy-home .stats__header {
    gap: 18px;
  }

  body.trangon-legacy-home .stats__row {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  body.trangon-legacy-home .stats__middle {
    display: contents;
  }

  body.trangon-legacy-home .stats__middle .stat-card--elevated {
    order: 2;
  }

  body.trangon-legacy-home .stats__row > .stat-card:last-child {
    order: 3;
  }

  body.trangon-legacy-home .stats__middle .button {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  body.trangon-legacy-home .stat-card {
    min-height: 300px;
    padding: 22px;
  }

  body.trangon-legacy-home .stat-card--elevated {
    min-height: 350px;
  }

  body.trangon-legacy-home .stat-card__value {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  body.trangon-legacy-home .stat-card__label {
    font-size: 16px;
  }

  body.trangon-legacy-home .stats__middle .button,
  body.trangon-legacy-home .product-card__btn,
  body.trangon-legacy-home .product-card--featured__btn {
    width: 100%;
    justify-content: center;
  }

  body.trangon-legacy-home .why__flex-grid {
    gap: 18px;
	  margin-top: 50px;
  }

  body.trangon-legacy-home .why-item__title {
    font-size: 20px;
  }

  body.trangon-legacy-home .agri__feature-row {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  body.trangon-legacy-home .agri__wheel {
    max-width: 280px;
  }

  body.trangon-legacy-home .product-card--featured {
    height: 100%;
	  min-height: 0;
  }

  body.trangon-legacy-home .product-card--featured__content {
    padding: 24px 20px !important;
  }

  body.trangon-legacy-home .product-card--featured__title {
    font-size: clamp(1.25rem, 6vw, 2rem);
  }

  body.trangon-legacy-home .testimonial-card {
    padding: 22px 18px;
  }

  body.trangon-legacy-home .testimonials__right,
  body.trangon-legacy-home .blog-swiper,
  body.trangon-legacy-home .testimonials-swiper,
  body.trangon-legacy-home .testimonials-swiper .swiper-wrapper,
  body.trangon-legacy-home .testimonials-swiper .swiper-slide {
    min-width: 0;
  }

  body.trangon-legacy-home .testimonial-card__quote {
    font-size: 16px;
    line-height: 1.7;
  }

  body.trangon-legacy-home .testimonial-card__footer {
    align-items: flex-start;
  }

  body.trangon-legacy-home .testimonial-card__avatar {
    width: 64px;
    height: 64px;
  }
	.feature-card__title {
		font-size: 20px;
	}

	.feature-card__icon-wrap {
  margin: 0 auto;
}
	.stats__header {
		margin-bottom: 20px;
	}
	.stats__desc {
		padding-top:0;
	}
	.stats__desc p{
		font-size: 16px;
	}
	.why__flex-grid {
		flex-direction: column;
	}
	.why-item {
		width: 100%;
		margin-top: 30px !important;
	}
	    .products-featured-col {
        min-height: 300px;
    }
	body.trangon-legacy-home .product-card--featured__footer {
		margin-top: 0;
	}
	.feature-box {
		margin: 0;
		text-align: left;
	}
	body.trangon-legacy-home .feature-box--right {
		text-align: left;
		align-items: flex-start;
		order: 2;
	}
	.agri__wheel {
		order: 3;
	}
	.feature-box__title {
		font-size: 20px;
	}
	body.trangon-legacy-home .hero__feature-row {
		padding-top: 0;
		gap: 0;
	}
	.section--products .product-card__body {
		padding: 12px;
	}
	.section--products .product-card__title {
		font-size: 1rem;
	}
	.about__intro {
		margin-bottom: 20px;
	}
	body.trangon-legacy-home .product-card--featured__btn {
		display: none;
	}
	.section--products .product-card__btn {
		padding: 8px 12px;
	}
	.section-heading {
		max-width: 100%;
		width: 100%;
	}
	
}
