:root {
  --bg: #0a190f;
  --bg-muted: #0e2416;
  --text: #eef3ea;
  --text-dim: #c9d2c4;
  --accent: #ffb43a;
  --card: #f3f2ee;
  --shadow: rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0 !important;
  padding: 0;
  overflow-x: hidden !important;
  position: relative;
}

body {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
#wpforms-submit-95 {
  width: auto !important;
  margin-top: 15px;
}
.container {
  width: min(1380px, 90%);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  background: transparent;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.hero-content.aos-init.aos-animate {
  text-align: center;
}
.site-brand {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  font-size: 20px;
}

.primary-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 35px;
}

.primary-nav a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
}

/* ===== AGRICA HEADER STYLES ===== */




header.site-header.agrica-header > div{
  position: relative;
  padding: 14px 0 17px;
}

header.site-header.agrica-header > div::before{
  position: absolute;
  left: 10%;
  content: "";
  height: 100%;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(10px);
  width: 120%;
  z-index: -1;
}


.agrica-header::after {
  position: absolute;
  left: 25%;
  content: "";
  height: 100%;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  z-index: -1;
}

.agrica-header {
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.agrica-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0;
  height: 90px;
  position: relative;
}

/* Logo Section */
.site-brand-wrapper {
  background: #4caf50;
  padding: 0 50px;
  height: 90px;
  display: flex;
  align-items: center;
  position: relative;
}

.agrica-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.agrica-logo::after {
  position: absolute;
  left: 0;
  top: -55px;
  content: "";
  height: 197px;
  width: 100%;
  background: #4caf50;
  z-index: 1;
  box-shadow: 0 8px 25px 0 rgb(0 0 0 / 10%);
  border-radius: 0 0 0 10px;
}

.agrica-logo::before {
  position: absolute;
  right: -25px;
  bottom: -52px;
  content: "";
  border-bottom: 35px solid transparent;
  border-left: 25px solid #4caf50;
  opacity: 0.9;
}

.logo-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.logo-image {
  height: 120px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  z-index: 2;
}

.site-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navigation Menu */
.agrica-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 100;
}

.agrica-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
  align-items: center;
}

.agrica-menu > li {
  position: relative;
  z-index: 10;
}

.agrica-menu > li.menu-item-has-children {
  position: relative;
}

.agrica-menu > li.menu-item-has-children:hover {
  z-index: 100;
}

.agrica-menu > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  transition: color 0.3s ease;
  position: relative;
}

.agrica-menu > li > a:hover {
  color: #4caf50;
}

.agrica-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #4caf50;
  transition: width 0.3s ease;
}

.agrica-menu > li > a:hover::after,
.agrica-menu > li.current-menu-item > a::after {
  width: 100%;
}

.dropdown-icon {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.agrica-menu > li:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Submenu Dropdown */
.agrica-menu .sub-menu {
  position: absolute;
  top: 50px;
  left: 0;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  padding: 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  list-style: none;
  margin: 0;
  margin-top: 0;
  pointer-events: none;
}

/* Create invisible bridge between menu and submenu */
.agrica-menu > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 20px;
  background: transparent;
  z-index: 1000;
  display: none;
}

.agrica-menu > li.menu-item-has-children:hover::after {
  display: block;
}

.agrica-menu > li:hover > .sub-menu,
.agrica-menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.agrica-menu .sub-menu li {
  padding: 0;
  position: relative;
}

.agrica-menu .sub-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.agrica-menu .sub-menu a:hover {
  background: transparent;
  color: #4caf50;
  padding-left: 35px;
}

.agrica-menu .sub-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #4caf50;
  transition: width 0.3s ease;
}

.agrica-menu .sub-menu a:hover::before {
  width: 4px;
}

/* Menu Item Badge */
.menu-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #4caf50;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 8px;
  flex-shrink: 0;
}

.menu-badge.new {
  background: #4caf50;
}

.menu-badge.hot {
  background: #ff5722;
}

.menu-badge.sale {
  background: #ff9800;
}

/* Menu text wrapper */
.menu-text {
  flex: 1;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Cart Icon */
.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cart-icon-wrapper:hover {
  color: #4caf50;
  transform: scale(1.1);
}

.cart-icon {
  width: 24px;
  height: 24px;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff5722;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Register Button */
.btn-register {
  padding: 12px 32px;
  background: transparent;
  border: 2px solid #333;
  border-radius: 30px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-register:hover {
  background: #4caf50;
  border-color: #4caf50;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .agrica-menu {
    gap: 20px;
  }

  .agrica-menu > li > a {
    font-size: 15px;
  }

  .site-brand-wrapper {
    padding: 0 30px;
    min-width: 0;
  }

  .site-brand-wrapper::after {
    right: -20px;
    border-left-width: 20px;
  }
}

@media (max-width: 768px) {
  .agrica-header .header-inner {
    height: 70px;
  }

  .admin-bar header.site-header.agrica-header {
    top: 32px;
  }

  .site-brand-wrapper {
    height: 70px;
    padding: 0 20px;
    min-width: 0;
    display: block;
  }

  .site-brand-wrapper::after {
    right: -15px;
    border-left-width: 15px;
    border-top-width: 35px;
    border-bottom-width: 35px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-image {
    height: 40px;
    max-width: 150px;
  }

  .site-title {
    font-size: 22px;
  }

  .btn-register {
    padding: 10px 24px;
    font-size: 14px;
  }

  .header-actions {
    gap: 15px;
  }
}

.site-main {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* Eco Landing Background Styles */
.eco-landing {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100%;
}

/* Responsive background for landscape images */
@media (max-width: 1200px) {
  .eco-landing {
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
  }
}

@media (max-width: 768px) {
  .eco-landing {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
  }
}

#primary {
  position: relative;
}

.hero {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
}

/* Hero Slider Styles */
.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Zoom effect for hero slider background images */
.hero-swiper .swiper-slide .zoom-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Continuous zoom animation for single slide */
.hero-swiper .swiper-slide .zoom-bg.continuous-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: none;
  animation: continuousZoom 8s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Reset continuous zoom animation when needed */
.hero-swiper .swiper-slide .zoom-bg.continuous-zoom.reset {
  animation: none;
  transform: scale(1);
}

/* Ensure continuous zoom works properly on desktop */
@media (min-width: 769px) {
  .hero-swiper .swiper-slide .zoom-bg.continuous-zoom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: continuousZoom 8s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
}

@keyframes continuousZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Optimize zoom effect for mobile devices */
@media (max-width: 768px) {
  .hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center center;
  }
  
  .hero-swiper .swiper-slide .zoom-bg {
    background-size: cover !important;
    animation: none !important;
    transform: scale(1) !important;
  }
}

/* Reduce zoom intensity on very small screens */
@media (max-width: 480px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
  }
  
  .hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center center;
  }
  
  .hero-swiper .swiper-slide .zoom-bg {
    background-size: cover;
    animation: none !important;
    transform: scale(1) !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
  }
  
  .hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center center;
  }
  
  .hero-swiper .swiper-slide .zoom-bg {
    background-size: cover;
    animation: none !important;
    transform: scale(1) !important;
  }
}

.hero-swiper .swiper-slide .hero-inner {
  align-items: center;
  padding: 60px 0;
  z-index: 3;
}
.title-right.aos-init.aos-animate {
  margin-left: 70px;
}

/* AOS Animation optimizations for hero slider */
.hero-swiper .swiper-slide {
  overflow: visible;
}

.hero-swiper .swiper-slide .hero-inner {
  overflow: visible;
}

/* AOS Animation optimizations for hero slider */
.hero-swiper .swiper-slide [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  will-change: transform, opacity;
  visibility: hidden;
}

/* Prevent initial flash by hiding slider until ready */
.hero-slider-wrapper {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-slider-wrapper.aos-ready {
  opacity: 1;
}

/* Ensure smooth loading without flicker */
.hero-slider-wrapper .swiper-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-slider-wrapper.aos-ready .swiper-slide {
  opacity: 1;
}

.hero-swiper .swiper-slide [data-aos].aos-init {
  visibility: visible;
}

/* Prevent initial flash by hiding elements until AOS is ready */
.hero-swiper .swiper-slide [data-aos]:not(.aos-init) {
  opacity: 0 !important;
  visibility: hidden !important;
}

.hero-swiper .swiper-slide [data-aos="fade-right"] {
  transform: translateX(-30px);
}

.hero-swiper .swiper-slide [data-aos="fade-left"] {
  transform: translateX(30px);
}

.hero-swiper .swiper-slide [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-swiper .swiper-slide [data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

.hero-swiper .swiper-slide [data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* Prevent initial flash for non-active slides */
.hero-swiper .swiper-slide:not(.swiper-slide-active) [data-aos] {
  opacity: 0;
  transform: translateY(30px);
}

.hero-swiper .swiper-slide:not(.swiper-slide-active) [data-aos="fade-right"] {
  transform: translateX(-30px);
}

.hero-swiper .swiper-slide:not(.swiper-slide-active) [data-aos="fade-left"] {
  transform: translateX(30px);
}
/* Hero Navigation Buttons */
.hero-nav-next,
.hero-nav-prev {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background: transparent !important;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  transition: all 0.3s ease;
}

.hero-nav-next:after,
.hero-nav-prev:after {
  font-size: 24px;
  font-weight: 700;
}

.hero-nav-next:hover,
.hero-nav-prev:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.hero-nav-prev {
  left: 30px;
}

.hero-nav-next {
  right: 30px;
}

.hero-nav-next.swiper-button-disabled,
.hero-nav-prev.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Hero Pagination */
.hero-pagination {
  bottom: 30px;
  z-index: 15;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Subtle vignette matching mockup with natural lighting */
.hero .overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 15, 0.3) 0%,
    rgba(10, 25, 15, 0.5) 30%,
    rgba(10, 25, 15, 0.7) 60%,
    rgba(10, 25, 15, 0.85) 100%
  );
  height: 100%;
}

/* Overlay for each slide */
.hero-swiper .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 15, 0.3) 0%,
    rgba(10, 25, 15, 0.5) 30%,
    rgba(10, 25, 15, 0.7) 60%,
    rgba(10, 25, 15, 0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}
.hero-content > div, .hero-content > h1{
  margin-bottom: 26px;
}
.brand-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(64px, 7vw, 110px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.brand-title p {
  margin: 0;
}

.brand-sub {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin: 20px 0 10px;
  opacity: 0.9;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #1b1404;
  box-shadow: 0 6px 16px rgba(255, 180, 58, 0.4);
}

.btn-primary:hover {
  background: #ffc04d;
  box-shadow: 0 8px 24px rgba(255, 180, 58, 0.5);
  transform: translateY(-2px);
}

.about {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 80px;
  padding: 100px 0;
  align-items: flex-start;
}

.about-media {
  position: relative;
}

.about-card {
  position: relative;
}

.about-media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: -18px;
  top: 30%;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8e4bd 0%, #a8d19a 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.about-text {
  padding-top: 20px;
  text-align: center;
}

.about-text h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 42px);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.about-text > p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
}

.about .features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  counter-reset: feature-counter;
}

.about .features li {
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  counter-increment: feature-counter;
  text-align: left;
}

.about .features li::before {
  content: counter(feature-counter);
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(168, 209, 154, 0.3);
  color: #fff;
  text-align: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 35px;
  line-height: 36px;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 48px;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.products {
  padding: 60px 0 100px;
  overflow: hidden;
}

.products-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: calc(100vw - max(calc((100vw - 1380px) / 2), 5%));
  margin-left: max(calc((100vw - 1380px) / 2), 5%);
}

/* Swiper container - sát bên phải */
.products-swiper {
  overflow: visible !important;
  width: 100% !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-right: 0 !important;
}

.products-swiper .swiper-wrapper {
  padding-bottom: 20px;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.products-swiper .swiper-slide {
  width: 26% !important;
  height: auto;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.products-swiper .swiper-slide .card {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.products-swiper .swiper-slide-active .card {
  transform: scale(1);
  opacity: 1;
}

/* Navigation buttons */
.products-slider-wrapper .swiper-button-next,
.products-slider-wrapper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 180, 58, 0.95);
  border-radius: 50%;
  color: #1b1404;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.products-slider-wrapper .swiper-button-next:after,
.products-slider-wrapper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 700;
}

.products-slider-wrapper .swiper-button-next:hover,
.products-slider-wrapper .swiper-button-prev:hover {
  background: rgba(255, 180, 58, 1);
  transform: scale(1.1);
}

.products-slider-wrapper .swiper-button-prev {
  left: 20px;
}

.products-slider-wrapper .swiper-button-next {
  right: 20px;
}

.products-slider-wrapper .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}

.card {
  background: var(--card);
  color: #1a1a1a;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: auto;
  height: 390px;
  display: block;
  margin: 0 0 24px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.card-title {
  font-size: 22px;
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #0a190f;
}

.card-desc {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

#order input{
  width: 100% !important;
    padding: 15px 0 !important;
    border-radius: 12px !important;
    background: none !important;
    color: var(--text) !important;
    font-family: ui-sans-serif, system-ui, sans-serif !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    height: auto !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.order {
  padding: 90px 0 120px;
  position: relative;
}

.order-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.order-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.order-copy p {
  margin: 0 0 24px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
}

.order-copy.aos-init.aos-animate {
  text-align: center;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 35px;
  align-items: center;
  justify-content: center;
}

.socials img {
  width: 20px;
}
.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffc04d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 180, 58, 0.25);
}

.socials a:hover {
  background: rgba(255, 180, 58, 0.25);
  transform: scale(1.1);
}

.order-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 32px 28px;
  border-radius: 18px;
  display: grid;
  gap: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

div#wpforms-95 {
  width: 100%;
}

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: rgba(255, 180, 58, 0.4);
  background: rgba(0, 0, 0, 0.35);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(238, 243, 234, 0.5);
}

.order-form textarea {
  min-height: 110px;
  resize: vertical;
  font-family: inherit;
}

.order-form button {
  margin-top: 8px;
}

/* WPForms Styling - Override default styles */
div.wpforms-container-full .wpforms-form {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
  padding: 32px 28px !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
  margin-bottom: 16px !important;
  padding: 0 !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field-label {
  color: var(--text) !important;
  font-family: ui-sans-serif, system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  margin-bottom: 8px !important;
  display: block !important;
}

div.wpforms-container-full .wpforms-form input[type="text"],
div.wpforms-container-full .wpforms-form input[type="email"],
div.wpforms-container-full .wpforms-form input[type="tel"],
div.wpforms-container-full .wpforms-form input[type="url"],
div.wpforms-container-full .wpforms-form input[type="number"],
div.wpforms-container-full .wpforms-form input[type="date"],
div.wpforms-container-full .wpforms-form select,
div.wpforms-container-full .wpforms-form textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(0, 0, 0, 0.3) !important;
  color: var(--text) !important;
  font-family: ui-sans-serif, system-ui, sans-serif !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
  height: auto !important;
  line-height: 1.5 !important;
  max-width: 100% !important;
}

div.wpforms-container-full .wpforms-form input:focus,
div.wpforms-container-full .wpforms-form select:focus,
div.wpforms-container-full .wpforms-form textarea:focus {
  outline: none !important;
  border-color: rgba(255, 180, 58, 0.4) !important;
  background: rgba(0, 0, 0, 0.35) !important;
  box-shadow: none !important;
}

div.wpforms-container-full .wpforms-form input::placeholder,
div.wpforms-container-full .wpforms-form textarea::placeholder {
  color: rgba(238, 243, 234, 0.5) !important;
}

div.wpforms-container-full .wpforms-form textarea {
  min-height: 110px !important;
  resize: vertical !important;
  font-family: inherit !important;
}

div.wpforms-container-full .wpforms-form .wpforms-submit-container {
  margin-top: 8px !important;
}

div.wpforms-container-full .wpforms-form button[type="submit"],
div.wpforms-container-full .wpforms-form .wpforms-submit {
  display: inline-block !important;
  padding: 14px 32px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  font-family: ui-sans-serif, system-ui, sans-serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
  border: none !important;
  background: var(--accent) !important;
  color: #1b1404 !important;
  box-shadow: 0 6px 16px rgba(255, 180, 58, 0.4) !important;
  width: 100% ;
  height: auto !important;
}

div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
div.wpforms-container-full .wpforms-form .wpforms-submit:hover {
  background: #ffc04d !important;
  box-shadow: 0 8px 24px rgba(255, 180, 58, 0.5) !important;
  transform: translateY(-2px) !important;
  width: 100%;
}

/* WPForms Error Messages */
div.wpforms-container-full .wpforms-form .wpforms-field-label-inline,
div.wpforms-container-full .wpforms-form label.wpforms-error {
  color: #ff6b6b !important;
  font-size: 13px !important;
  margin-top: 6px !important;
}

div.wpforms-container-full .wpforms-form .wpforms-error {
  border-color: rgba(255, 107, 107, 0.4) !important;
}

/* WPForms Success Message */
div.wpforms-confirmation-container-full {
  background: rgba(168, 209, 154, 0.2) !important;
  border: 1px solid rgba(168, 209, 154, 0.3) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  color: var(--text) !important;
  text-align: center !important;
}

/* Hide WPForms branding */
div.wpforms-container-full .wpforms-form .wpforms-submit-container::after {
  display: none !important;
}

.site-footer {
  padding: 40px 0;
  color: var(--text-dim);
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   Agrica Footer Styles
   ========================================================================== */

.agrica-footer {
  position: relative;
  background: #1a4d3a;
  color: #ffffff;
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-shape-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  max-width: 250px;
}

.footer-shape-left img {
  width: 100%;
  height: auto;
}

.footer-shape-right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  max-width: 600px;
  opacity: 0.15;
}

.footer-shape-right img {
  width: 100%;
  height: auto;
}

.footer-main {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 50px;
}

/* Footer Column 1 - About */
.footer-about {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-brand {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
}

.footer-logo-image {
  height: 145px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 15px;
}

.footer-newsletter {
  overflow: hidden;
}
#footer-newsletter-form {
  position: relative;
}

#footer-newsletter-form div {
  margin: 0 !important;
}

#footer-newsletter-form .wpforms-form {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  width: 100% !important;
  padding: 0 !important;
  display: block !important;
}

#footer-newsletter-form .wpforms-field input {
  background: #fff !important;
  color: #000 !important;
}

#footer-newsletter-form .wpforms-submit {
  position: absolute;
  top: -49px;
  right: 8px;
  z-index: 111111;
  border-radius: 100% !important;
  width: 45px !important;
  height: 45px !important;
  padding: 0 !important;
}

#footer-newsletter-form .wpforms-field input::placeholder {
  color: #000 !important;
}

.footer-newsletter input {
  flex: 1;
  border: none;
  padding: 15px 25px;
  font-size: 15px;
  outline: none;
  background: transparent;
  color: #333;
}

.footer-newsletter input::placeholder {
  color: #999;
}

.footer-newsletter button {
  background: #ffb43a;
  color: #1a4d3a;
  border: none;
  padding: 15px 35px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.footer-newsletter button:hover {
  background: #ff9f1a;
  transform: translateX(-2px);
}

/* Footer Column 2 - Links */
.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ffb43a;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-menu a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #ffb43a;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: #ffb43a;
  transform: translateX(5px);
}

/* Footer Column 3 - Recent Posts */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.post-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.post-thumb img {
  width: auto;
  height: 80px;
  transition: transform 0.3s ease;
}



.post-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-date {
  font-size: 13px;
  color: #ffb43a;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.post-info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-info a:hover {
  color: #ffb43a;
}

/* Footer Column 4 - Contact Info */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb43a;
  transition: all 0.3s ease;
}

.contact-icon img{
  width: 20px;
}

.contact-list li:hover .contact-icon {
  background: #ffb43a;
  color: #1a4d3a;
  transform: scale(1.1);
}

.contact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-content strong {
  font-size: 13px;
  color: #ffb43a;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.contact-content span,
.contact-content a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-content a:hover {
  color: #ffb43a;
}

/* Footer Bottom */
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-bottom a {
  color: #ffb43a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ff9f1a;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .agrica-footer {
    padding: 60px 0 0;
  }

  .card img{
    width: 100%;
    height: auto;
  }

  .footer-main {
    padding-bottom: 40px;
  }

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

  .footer-about {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-newsletter {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-shape-left,
  .footer-shape-right {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-newsletter {
    flex-direction: column;
    border-radius: 10px;
  }

  .footer-newsletter button {
    border-radius: 0 0 10px 10px;
  }

  .footer-brand {
    font-size: 24px;
  }

  .footer-logo svg {
    width: 40px;
    height: 40px;
  }

  .footer-logo-image {
    width: 190px;
        height: auto;
  }
}

@media (max-width: 1100px) {
  .about {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-media {
    max-width: 500px;
    margin: 0 auto;
  }

  .order-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
  }

  .hero-nav-next,
  .hero-nav-prev {
    width: 50px;
    height: 50px;
    top: 62%;
  }

  .blog-post-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}

  .hero-nav-next:after,
  .hero-nav-prev:after {
    font-size: 20px;
  }

  .hero-nav-prev {
    left: 20px;
  }

  .hero-nav-next {
    right: 20px;
  }

  .hero-pagination {
    bottom: 20px;
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .services-details__sidebar-single-btn .thm-btn {
    padding: 13px 15px 13px !important;
  }

  .brand-title {
    font-size: clamp(48px, 10vw, 72px);
  }

  .products-swiper .swiper-slide {
    width: 60% !important;
  }

  .about {
    padding: 65px 0;
  }

  .products {
    padding: 50px 0 70px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .products-slider-wrapper {
    width: calc(100vw - 5%);
    margin-left: 5%;
  }

  .products-swiper {
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .products-slider-wrapper .swiper-button-next,
  .products-slider-wrapper .swiper-button-prev {
    width: 44px;
    height: 44px;
  }

  .products-slider-wrapper .swiper-button-next:after,
  .products-slider-wrapper .swiper-button-prev:after {
    font-size: 18px;
  }

  .order {
    padding: 60px 0 80px;
  }
}

@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .products-slider-wrapper {
    width: calc(100vw - 20px);
    margin-left: 20px;
  }

  .products-swiper {
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .products-swiper .swiper-slide {
    width: 60% !important;
  }

  .products-slider-wrapper .swiper-button-next,
  .products-slider-wrapper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .products-slider-wrapper .swiper-button-next:after,
  .products-slider-wrapper .swiper-button-prev:after {
    font-size: 16px;
  }

  .products-slider-wrapper .swiper-button-prev {
    left: 10px;
  }

  .products-slider-wrapper .swiper-button-next {
    right: 10px;
  }

  .about .features {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    gap: 16px;
  }
}

/* ==========================================================================
   Single Post Styles
   ========================================================================== */

.single-post-main {
  min-height: 100vh;
  padding: 80px 0 100px;
  position: relative;
}

.single-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 15, 0.85) 0%,
    rgba(10, 25, 15, 0.9) 50%,
    rgba(10, 25, 15, 0.95) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.single-post-article {
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-dim);
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--accent);
}

.breadcrumb-separator {
  color: var(--text-dim);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--text);
  font-weight: 500;
}

/* Post Header */
.post-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.2;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.post-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 15px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.post-date svg {
  opacity: 0.7;
}

/* Post Content Wrapper */
.post-content-wrapper {
  display: grid;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* Featured Image */
.post-featured-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-featured-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

/* Post Content Box */
.post-content-box {
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-subtitle {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  color: var(--agriox-primary, #334b35);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255, 180, 58, 0.3);
}

/* Post Description */
.post-description {
  margin-bottom: 40px;
}

.description-text {
  color: var(--agriox-primary, #334b35);
  font-size: 17px;
  line-height: 1.8;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

/* Post Main Content */

.entry-content {
  color: var(--agriox-primary, #334b35);
  font-size: 18px;
  line-height: 1.9;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.entry-content p {
  margin: 0 0 20px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--agriox-primary, #334b35);
  margin: 32px 0 16px;
  font-weight: 600;
}

.entry-content h2 {
  font-size: 32px;
}

.entry-content h3 {
  font-size: 26px;
}

.entry-content h4 {
  font-size: 22px;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
  color: var(--text-dim);
}

.entry-content li {
  margin-bottom: 8px;
}

.entry-content a {
  color: var(--accent);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.entry-content a:hover {
  opacity: 0.8;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}

.entry-content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 180, 58, 0.08);
  border-radius: 8px;
  font-style: italic;
  color: var(--text-dim);
}

/* Post Navigation */
.post-navigation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.nav-link:hover {
  background: rgba(255, 180, 58, 0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 180, 58, 0.2);
}

.nav-link svg {
  flex-shrink: 0;
}

.nav-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.nav-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  font-weight: 600;
}

.nav-title {
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-home {
  justify-content: center;
  font-weight: 500;
  background: rgba(255, 180, 58, 0.1);
  border-color: rgba(255, 180, 58, 0.3);
}

.nav-home:hover {
  background: rgba(255, 180, 58, 0.2);
}

.nav-prev {
  justify-content: flex-start;
}

.nav-next {
  justify-content: flex-end;
}

.services-details__sidebar-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  margin-top: 30px;
}

.services-details__sidebar-single-contact-box {
  position: relative;
  display: block;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 50px 0px 44px;
  z-index: 1;
}

.icon-phone-call-2:before {
  content: "\e92b";
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.text-center {
  text-align: center !important;
}

.services-details__sidebar-single-contact-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--agriox-secondary-rgb, 109, 140, 84), 0.93);
  border-radius: 10px;
  content: "";
  z-index: -1;
}

.services-details__sidebar-single-contact-box .icon {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 50%;
  background: var(--agriox-base, #f1cf69);
  line-height: 80px;
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.services-details__sidebar-single-contact-box .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--agriox-primary, #334b35);
  font-size: 30px;
  line-height: 60px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-details__sidebar-single-contact-box .title {
  position: relative;
  display: block;
  margin-top: 20px;
  margin-bottom: 42px;
}

.services-details__sidebar-single-contact-box .title h2 {
  color: #ffffff;
  font-size: 36px;
  line-height: 46px;
  font-weight: 500;
  font-family: var(--agriox-font-3, "Shadows Into Light", cursive);
}

.services-details__sidebar-single-contact-box .phone {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
}
.services-details__sidebar-single-contact-box .phone a {
  text-decoration: none;
}
.services-details__sidebar-single-contact-box p {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
}

.services-details__sidebar-single-contact-box .phone a:hover {
  color: var(--agriox-base, #f1cf69);
}

.services-details__sidebar-single-contact-box .phone a {
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-details__sidebar-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-details__sidebar-single-btn {
  position: relative;
  display: block;
}
.services-details__sidebar-single-btn .thm-btn {
  font-size: 22px;
  padding: 13px 50px 13px;
  display: flex;
}
.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--agriox-base, #f1cf69);
  color: var(--agriox-primary, #334b35);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 18px 50px 18px;
  border-radius: 10px;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  overflow: hidden;
  z-index: 1;
}

.icon-pdf svg {
  width: 60px;
  height: 60px;
  margin-right: 7px;
}

.thm-btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 100%;
  background: rgba(var(--agriox-primary-rgb, 51, 75, 53), 0.15);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  content: "";
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 700ms ease;
  transition: 700ms ease;
  z-index: -1;
}

.thm-btn:hover:before {
  width: 100%;
  opacity: 1;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  border-radius: 0;
  background: var(--agriox-primary, #334b35);
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.thm-btn {
  text-decoration: none;
  width: 100%;
}

.thm-btn:hover {
  color: #ffffff;
}
/* Responsive Design */
@media (max-width: 768px) {
  .single-post-main {
    padding: 60px 0 80px;
  }
  .hero-inner {
    display: inline-block;
    text-align: center;
  }
  .title-right.aos-init.aos-animate {
    margin-top: 30px;
  }
  .breadcrumb {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .post-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .post-title {
    margin-bottom: 16px;
  }

  .post-content-wrapper {
    gap: 32px;
  }

  .post-featured-image {
    padding: 24px;
    border-radius: 16px;
  }

  .post-content-box {
    padding: 0 24px;
    border-radius: 16px;
  }

  .content-subtitle {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .description-text {
    font-size: 16px;
  }

  .entry-content {
    font-size: 15px;
  }

  .entry-content h2 {
    font-size: 26px;
  }

  .entry-content h3 {
    font-size: 22px;
  }

  .entry-content h4 {
    font-size: 19px;
  }

  .post-navigation {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 40px;
    padding-top: 32px;
  }

  .nav-link {
    padding: 16px 20px;
  }

  .nav-prev,
  .nav-next,
  .nav-home {
    justify-content: center;
  }
}

/* ==========================================================================
   Single Post Hero Section
   ========================================================================== */

.single-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a190f 0%, #0e2416 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 150px 0 60px;
  margin-top: 0;
}

.single-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 15, 0.7) 0%,
    rgba(10, 25, 15, 0.85) 100%
  );
  pointer-events: none;
}

.single-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.single-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.single-hero .breadcrumb-link,
.single-hero .breadcrumb-current {
  color: var(--text);
  font-weight: 600;
}

.single-hero .breadcrumb-link:hover {
  color: var(--accent);
}

.single-hero .hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.single-hero .category-description {
  max-width: 800px;
  margin: 20px auto 0;
  color: var(--text);
  opacity: 0.9;
  font-size: 16px;
  line-height: 1.6;
}

.single-hero .category-description p {
  margin: 0;
}

/* ==========================================================================
   Single Post Layout with Sidebar
   ========================================================================== */

.single-post-main {
  background: #fff;
  padding: 60px 0 100px;
}

.single-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 15px;
  align-items: start;
}

/* Blog Page Styles */
.blog-container {
  padding: 80px 0;
  background: #fff;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}

.blog-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.blog-post-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.blog-post-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.blog-post-image {
  width: 100%;
  height: auto;
  position: relative;
}

.blog-post-image img {
  width: auto;
  height: 160px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post-content {
  padding: 10px 30px 30px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.post-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #687469;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.post-category svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.post-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #687469;
  font-size: 14px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.post-date svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.blog-post-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: #0a190f;
  margin: 0 0 10px;
  line-height: 1.3;
}

.blog-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-title a:hover {
  color: #ffb43a;
}

.blog-post-excerpt {
  color: #687469;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 25px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.8em * 2); /* 2 lines with line-height 1.8 */
}

.learn-more-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ffb43a;
  color: #0a190f;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: ui-sans-serif, system-ui, sans-serif;
  text-transform: capitalize;
}

.learn-more-btn:hover {
  background: #0a190f;
  color: #fff;
  transform: translateX(5px);
}

/* Sidebar Styles */
.single-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: #f6f4ec;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  color: #0a190f;
  margin: 0 0 25px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255, 180, 58, 0.3);
}

/* Search Widget */
.search-form {
  position: relative;
}

.search-form input[type="search"] {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 15px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  background: #fff;
  transition: all 0.3s ease;
}

.search-form input[type="search"]:focus {
  outline: none;
  border-color: #ffb43a;
  box-shadow: 0 0 0 3px rgba(255, 180, 58, 0.1);
}

.search-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  color: #687469;
  transition: color 0.3s ease;
}

.search-form button:hover {
  color: #ffb43a;
}

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

/* Recent Posts Widget */
.sidebar-recent-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-recent-post {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.sidebar-post-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sidebar-recent-post:hover .sidebar-post-thumb img {
  transform: scale(1.1);
}

.sidebar-post-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-post-date {
  font-size: 13px;
  color: #ffb43a;
  font-weight: 600;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.sidebar-post-info a {
  color: #0a190f;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.sidebar-post-info a:hover {
  color: #ffb43a;
}

/* Category List Widget */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.category-item:hover {
  background: #ffb43a;
  transform: translateX(5px);
}

.category-item a {
  color: #0a190f;
  text-decoration: none;
  font-size: 16px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  flex: 1;
  transition: color 0.3s ease;
}

.category-count {
  color: #687469;
  font-size: 14px;
  font-weight: 600;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.category-item:hover .category-count {
  color: #0a190f;
}

.category-item.current-cat {
  background: #7ab642;
  transform: translateX(5px);
}

.category-item.current-cat a {
  color: #fff;
  font-weight: 600;
}

.category-item.current-cat .category-count {
  color: #fff;
}

/* Tags Widget */
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-item {
  display: inline-block;
}

.tag-item a {
  display: inline-block;
  padding: 8px 18px;
  background: #fff;
  color: #0a190f;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: ui-sans-serif, system-ui, sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tag-item a:hover {
  background: #ffb43a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 180, 58, 0.3);
}

/* Pagination Styles */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  padding: 30px 0;
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #f6f4ec;
  color: #0a190f;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: ui-sans-serif, system-ui, sans-serif;
  transition: all 0.3s ease;
}

.pagination-link:hover,
.pagination-link.current {
  background: #ffb43a;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .single-sidebar {
    position: static;
  }

  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-post-image {
    height: auto;
  }

  .blog-post-content {
    padding: 25px;
  }

  .blog-post-title {
    font-size: 26px;
  }

  .sidebar-widget {
    padding: 20px;
  }
}

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

.product-item {
  border-radius: 8px;
  transition: all 0.3s ease;
}

.product-item.current a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  opacity: 1;
  background: #ffffff;
  border-radius: 10px;
  -webkit-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  color: var(--agriox-color-1, #687469);
  text-decoration: none;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.4;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
}

.product-item:not(.current) .product-link {
  opacity: 0.8;
}

.product-link:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(90deg);
  transform: perspective(400px) rotateX(90deg);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.product-link:hover:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.product-link svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.product-link:hover svg {
  opacity: 1;
  transform: translateX(4px);
}

/* Content Area */
.single-content {
  min-height: 100vh;
}

.single-content .post-featured-image {
  margin-bottom: 40px;
}

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

.single-content .post-navigation {
  margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .single-layout {
    grid-template-columns: 250px 1fr;
    gap: 32px;
  }

  .single-sidebar {
    top: 80px;
  }

  .sidebar-widget {
    padding: 20px;
  }

  .widget-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .product-link {
    font-size: 13px;
    padding: 10px 14px;
  }
}

@media (max-width: 768px) {
  .single-hero {
    min-height: 40vh;
    padding: 80px 0 40px;
  }

  .single-hero .hero-title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .single-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .single-sidebar {
    position: relative;
    top: 0;
    order: 2;
  }

  .single-content {
    order: 1;
    min-height: auto;
  }

  .sidebar-widget {
    padding: 20px;
  }

  .product-list {
    display: inline-block;
    gap: 8px;
    text-align: left !important;
    width: 100%;
  }

  .product-link {
    padding: 15px;
    font-size: 16px;
    text-align: left !important;
    flex-direction: column;
    gap: 4px;
    display: inline-block;
    width: 100%;
  }

  .product-link svg {
    display: none;
  }
}

/* ========================================
   ABOUT AGRICULTURE SECTION
   ======================================== */

.about-agriculture-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-agriculture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Column - Image Wrapper */
.about-image-wrapper {
  position: relative;
  height: 700px;
}

.leaf-decoration {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.leaf-decoration .leaf-img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.main-image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

/* Right Column - Content Wrapper */
.about-content-wrapper {
  padding-left: 20px;
}

.about-main-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #0a190f;
  line-height: 1.2;
  margin: 0 0 24px 0;
  font-family: "Playfair Display", Georgia, serif;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 40px 0;
  font-family: "Open Sans", sans-serif;
}

/* Statistics Section */
.about-statistics {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px 0;
}

.stat-number {
  font-size: 72px;
  font-weight: 700;
  color: #5cb85c;
  line-height: 1;
  font-family: "Playfair Display", Georgia, serif;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-text span {
  font-size: 18px;
  font-weight: 600;
  color: #0a190f;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
}

/* Feature Boxes Grid */
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  left: -163px;
  position: relative;
}

.feature-box {
  padding: 40px 30px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-box-yellow {
  background: #f5c563;
}

.feature-box-green {
  background: #5cb85c;
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
}

.feature-text {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.95;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

/* Responsive Design for About Section */
@media (max-width: 1200px) {
  .about-agriculture-grid {
    gap: 60px;
  }

  .about-image-wrapper {
    height: 600px;
  }

  .leaf-decoration .leaf-img {
    width: 220px;
  }
}

@media (max-width: 992px) {
  .about-agriculture-section {
    padding: 80px 0;
  }

  .about-agriculture-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-wrapper {
    height: 500px;
    max-width: 600px;
    margin: 0 auto;
  }

  .leaf-decoration {
    left: -40px;
  }

  .leaf-decoration .leaf-img {
    width: 180px;
  }

  .about-content-wrapper {
    padding-left: 0;
    text-align: left;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-agriculture-section {
    padding: 60px 0;
  }

  .about-image-wrapper {
    height: 400px;
  }

  .leaf-decoration {
    display: none;
  }

  .about-main-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .about-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .about-statistics {
    margin-bottom: 30px;
  }

  .stat-number {
    font-size: 56px;
  }

  .stat-text span {
    font-size: 16px;
  }

  .feature-box {
    padding: 30px 25px;
    min-height: 240px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .about-agriculture-section {
    padding: 40px 0;
  }

  .about-image-wrapper {
    height: 350px;
  }

  .about-main-title {
    font-size: 28px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-text span {
    font-size: 14px;
  }

  .feature-box {
    padding: 25px 20px;
    min-height: auto;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-title {
    font-size: 18px;
  }
}

/* ========================================
   Healthy Life Section
======================================== */
.healthy-life-section {
  background-color: #fff;
  overflow: hidden;
}

.healthy-life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.healthy-life-image {
  position: relative;
  overflow: hidden;
}

.healthy-life-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.healthy-life-content {
  background: linear-gradient(135deg, #2d5f4f 0%, #1e4437 100%);
  position: relative;
  padding: 80px 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.content-inner {
  position: relative;
  z-index: 2;
}

.healthy-life-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 25px;
}

.healthy-life-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 90%;
}

.organic-stats-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.circular-progress-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.circular-progress {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 3;
}

.progress-ring-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 3;
  stroke-linecap: round;
  transition: none;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.progress-number {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.organic-label {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  text-align: center;
}

.features-checklist {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.check-label {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.vegetables-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.vegetables-decoration img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles for Healthy Life Section */
@media (max-width: 1024px) {
  .healthy-life-grid {
    grid-template-columns: 1fr;
  }

  .healthy-life-image {
    min-height: 500px;
  }

  .healthy-life-content {
    padding: 60px 40px;
  }

  .healthy-life-title {
    font-size: 42px;
  }

  .vegetables-decoration {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .healthy-life-section {
    padding: 60px 0;
  }

  .healthy-life-image {
    min-height: 400px;
  }

  .healthy-life-content {
    padding: 50px 30px;
  }

  .healthy-life-title {
    font-size: 36px;
  }

  .healthy-life-description {
    font-size: 15px;
    max-width: 100%;
  }

  .organic-stats-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }

  .circular-progress-wrapper {
    gap: 12px;
  }

  .circular-progress {
    width: 100px;
    height: 100px;
  }

  

  .organic-label {
    font-size: 16px;
  }

  .progress-number {
    font-size: 28px;
  }

  .vegetables-decoration {
    width: 250px;
    opacity: 0.6;
  }
}

@media (max-width: 480px) {
  .healthy-life-content {
    padding: 40px 20px;
  }

  .healthy-life-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .healthy-life-description {
    margin-bottom: 35px;
  }

  .organic-stats-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .circular-progress-wrapper {
    gap: 10px;
  }

  .organic-label {
    font-size: 15px;
  }

  .features-checklist {
    gap: 12px;
    width: 100%;
  }

  .check-label {
    font-size: 15px;
  }

  .vegetables-decoration {
    width: 200px;
    bottom: -20px;
  }
}

/* ========================================
   Our Farmers Section
======================================== */
.our-farmers-section {
  padding: 100px 0;
  background-color: #fff;
  overflow: hidden;
}

.farmers-grid {
  display: grid;
  grid-template-columns: 615px 1fr;
  gap: 80px;
  align-items: center;
}

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

.farmers-subtitle {
  font-size: 20px;
  color: #5cb85c;
  font-weight: 600;
  font-family: "Caveat", cursive;
  display: block;
  letter-spacing: 0.5px;
}

.farmers-title {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

.btn-farmers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #4caf50;
  color: #fff;
  padding: 18px 35px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 10px;
}

.btn-farmers:hover {
  background-color: #388e3c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.farmers-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 15px 0 15px 5px;
  margin: -15px 0 -15px -5px;
}

.farmers-swiper {
  overflow: visible;
  padding-right: 5px;
}

.farmers-swiper .swiper-wrapper {
  display: flex;
  gap: 0;
}

.farmers-swiper .swiper-slide {
  width: calc(50% - 14px);
  margin-right: 28px;
}

.farmer-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  flex-direction: column;
}

.farmer-image-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  background-color: #f5f5f5;
}

.farmer-image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.farmer-card:hover .farmer-image-wrapper img {
  transform: scale(1.08);
}

.social-share-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.social-share-trigger {
  width: 40px;
  height: 40px;
  background-color: #ffb03b;
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  text-align: center;
}


.social-share-trigger:hover,
.social-share-wrapper.active .social-share-trigger {
  background-color: #ff9800;
}

.social-icons {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.social-icons img{
  width: 16px;
  align-items: center;
  justify-content: center;
  display: flex;
}


.social-share-wrapper:hover .social-icons,
.social-share-wrapper.active .social-icons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
  bottom: 40px;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  animation: socialIconSlideUp 0.3s ease forwards;
}

.social-icon img {
  width: 16px;
  height: 16px;
}

.social-icon:nth-child(1) {
  animation-delay: 0.05s;
}

.social-icon:nth-child(2) {
  animation-delay: 0.1s;
}

.social-icon:nth-child(3) {
  animation-delay: 0.15s;
}

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

.social-icon {
  background-color: #1877f2;
}

.social-icon:hover {
  background-color: #145dbf;
  transform: scale(1.1);
}

.social-twitter {
  background-color: #1da1f2;
}

.social-twitter:hover {
  background-color: #0c85d0;
  transform: scale(1.1);
}

.social-linkedin {
  background-color: #0077b5;
}

.social-linkedin:hover {
  background-color: #005885;
  transform: scale(1.1);
}

.farmer-info {
  padding: 25px 0 28px;
  float: right;
}

.farmer-role {
  font-size: 14px;
  color: #777;
  display: block;
  margin-bottom: 8px;
  text-transform: capitalize;
  font-weight: 400;
}

.farmer-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.3;
}

/* Responsive Styles for Our Farmers Section */
@media (max-width: 1200px) {
  .farmers-grid {
    grid-template-columns: 340px 1fr;
    gap: 60px;
  }

  .farmers-title {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .farmers-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .farmers-title {
    font-size: 42px;
  }

  .farmers-swiper .swiper-slide {
    width: calc(50% - 12px);
    margin-right: 24px;
  }
}

@media (max-width: 768px) {
  .our-farmers-section {
    padding: 60px 0;
  }

  .farmers-grid {
    gap: 40px;
  }

  .farmers-title {
    font-size: 36px;
  }

  .btn-farmers {
    padding: 15px 30px;
    font-size: 15px;
  }

  .farmers-swiper .swiper-slide {
    width: calc(55.55% - 14px);
    margin-right: 24px;
  }

  .social-share-trigger {
    width: 42px;
    height: 42px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-share-wrapper:hover .social-icons,
  .social-share-wrapper.active .social-icons {
    bottom: 54px;
  }

  .farmer-info {
    padding: 20px 15px;
  }

  .farmer-name {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .our-farmers-section {
    padding: 50px 0;
  }

  .farmers-content {
    text-align: center;
    align-items: center;
  }

  .farmers-title {
    font-size: 28px;
  }

  .farmers-swiper .swiper-slide {
    width: 100%;
    margin-right: 0;
  }

  .btn-farmers {
    width: 100%;
  }

  .social-share-trigger {
    width: 40px;
    height: 40px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
  }

  .social-share-wrapper:hover .social-icons,
  .social-share-wrapper.active .social-icons {
    bottom: 50px;
  }

  .farmer-info {
    padding: 18px 12px;
  }

  .farmer-role {
    font-size: 13px;
  }

  .farmer-name {
    font-size: 17px;
  }
}

/* ========================================
   Farming History Timeline Section
======================================== */
.farming-history-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 80%;
  filter: grayscale(0);
}

.farming-history-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  opacity: 0.1;
  filter: grayscale(100%);
  z-index: 0;
}

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

.history-content-wrapper {
  padding: 20px 0;
}

.timeline-item.aos-init.aos-animate {
  position: relative;
  z-index: 1;
}

.history-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a3a2e;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
  width: 1033px;
  margin: 0 auto 20px;
}

.history-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  width: 600px;
  margin: 0 auto;
  margin-bottom: 30px;
}

/* Timeline Container */
.timeline-container {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 30px;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
}

.timeline-line::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6ba53a 0%, #8bc34a 100%);
}

.timeline-item {
  position: relative;
  flex: 1;
  text-align: center;
  padding-top: 40px;
}

.timeline-dot {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #fff;
  border: 3px solid #6ba53a;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(107, 165, 58, 0.1);
  transition: all 0.3s ease;
}

.timeline-dot::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 6px;
  width: 2px;
  height: 33px;
  background: #6ba53a;
  z-index: 1;
  z-index: -1;
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 0 6px rgba(107, 165, 58, 0.2);
}

.timeline-year {
  font-size: 42px;
  font-weight: 700;
  color: #1a3a2e;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  transition: color 0.3s ease;
}

.timeline-item:hover .timeline-year {
  color: #6ba53a;
}

.timeline-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .history-content-wrapper {
    max-width: 700px;
  }

  .history-title {
    font-size: 42px;
  }

  .timeline-year {
    font-size: 36px;
  }

  .timeline-label {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .farming-history-section {
    padding: 80px 0;
    background-size: auto 60%;
    background-position: left top;
  }

  .history-content-wrapper {
    max-width: 100%;
    margin-left: 0;
  }

  .history-title {
    font-size: 38px;
  }

  .timeline-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .farming-history-section {
    padding: 60px 0;
    background-size: auto 40%;
    background-position: left bottom;
  }

  .farming-history-section::before {
    opacity: 0.05;
  }

  .history-title {
    font-size: 32px;
  }

  .history-description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .timeline-container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .timeline-item {
    flex: 1 1 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }

  .timeline-line {
    display: none;
  }

  .timeline-year {
    font-size: 32px;
  }

  .timeline-label {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .farming-history-section {
    padding: 40px 0;
    background-image: none !important;
  }

  .farming-history-section::before {
    display: none;
  }

  .history-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .history-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .timeline-item {
    flex: 1 1 100%;
    min-width: 100%;
    padding-top: 20px;
  }

  .timeline-dot {
    top: -5px;
    width: 16px;
    height: 16px;
    border-width: 2px;
  }

  .timeline-year {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .timeline-label {
    font-size: 12px;
  }
}

/* ========================================
   Products Page Styles
   ======================================== */

/* Products Archive Section */
.products-archive {
  padding: 60px 0;
  background-color: #f8f9fa;
}

/* Products Toolbar */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 20px 0;
  border-radius: 8px;
  flex-wrap: wrap;
  gap: 15px;
}

.toolbar-left {
  display: flex;
  align-items: center;
}

.view-toggle {
  display: flex;
  gap: 8px;
  padding: 4px;
  border-radius: 6px;
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e9f1ee;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #fff;
  color: #6ab04c;
}

.view-btn.active {
  background: #6ab04c;
  color: #fff;
  box-shadow: 0 2px 4px rgba(106, 176, 76, 0.3);
}

.toolbar-center {
  flex: 1;
  text-align: center;
}

.result-count {
  margin: 0;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.toolbar-right {
  display: flex;
  align-items: center;
}

.orderby-select {
  padding: 10px 40px 10px 15px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  color: #333;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  transition: all 0.3s ease;
}

.orderby-select:focus {
  outline: none;
  border-color: #6ab04c;
  box-shadow: 0 0 0 3px rgba(106, 176, 76, 0.1);
}

/* Products List - Grid View */
.products-list {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
  transition: all 0.4s ease;
}

.products-list.grid-view {
  grid-template-columns: repeat(4, 1fr);
}

.products-list.list-view {
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Product Card */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 68px 0 rgba(174,175,175,.17);
  border-radius: 7px;
}

.grid-view .product-card {
  padding: 40px 37px 0;
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #6ab04c;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(106, 176, 76, 0.4);
}

/* Product Image */
.product-image {
  position: relative;
  width: 100%;
  text-align: center;
}

.product-image img {
  width: auto;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}


/* Product Info */
.product-info {
  padding: 20px;
}

.product-categories {
  font-size: 11px;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.product-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.product-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: #6ab04c;
}

.product-description {
  font-size: 14px;
  color: #000;
}

.products-list.aos-init.aos-animate.grid-view .product-description,
.products-list.aos-init.aos-animate.grid-view .product-title {
  text-align: center;
}

.product-price {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.old-price {
  font-size: 15px;
  color: #999;
  text-decoration: line-through;
}

.current-price {
  font-size: 20px;
  font-weight: 700;
  color: #6ab04c;
}

/* Add to Cart Button */
.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid #f4a900;
  border-radius: 50px;
  color: #f4a900;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: #f4a900;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 169, 0, 0.3);
}

.add-to-cart-btn svg {
  width: 18px;
  height: 18px;
}

/* List View Styles - Horizontal Layout */
.products-list.list-view .product-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  align-items: stretch;
  height: auto;
  padding: 30px;
}

.products-list.list-view .discount-badge {
  top: 15px;
  left: 15px;
  right: auto;
}

.products-list.list-view .product-image {
  height: 100%;
  flex-shrink: 0;
}

.products-list.list-view .product-image img {
  height: 210px;
  object-fit: cover;
}

.products-list.list-view .product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 30px;
}

.products-list.list-view .product-categories {
  font-size: 11px;
  margin-bottom: 10px;
}

.products-list.list-view .product-title {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.products-list.list-view .product-price {
  margin-bottom: 20px;
}

.products-list.list-view .current-price {
  font-size: 24px;
}

.products-list.list-view .old-price {
  font-size: 17px;
}

.products-list.list-view .add-to-cart-btn {
  width: auto;
  max-width: 220px;
  padding: 14px 24px;
}

/* Pagination */
.products-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.products-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  margin: 0 5px;
  padding: 0 15px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.products-pagination .page-numbers:hover,
.products-pagination .page-numbers.current {
  background: #6ab04c;
  border-color: #6ab04c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(106, 176, 76, 0.3);
}

.products-pagination .page-numbers.dots {
  border: none;
  background: transparent;
}

.products-pagination .page-numbers.dots:hover {
  transform: none;
  box-shadow: none;
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  color: #999;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .products-list.grid-view {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .products-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .toolbar-left,
  .toolbar-center,
  .toolbar-right {
    width: auto;
    justify-content: flex-start;
  }

  .toolbar-center {
    text-align: center;
    order: -1;
    margin-bottom: 15px;
  }

  .products-list.grid-view {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .products-list.list-view {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-list.list-view .product-card {
    grid-template-columns: 200px 1fr;
  }

  .products-list.list-view .product-info {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .products-archive {
    padding: 40px 0;
  }
  .products-list.list-view .product-image img{
    height: 115px;
  }

  .products-toolbar {
    padding: 15px 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .orderby-select {
    width: auto;
    min-width: 150px;
  }

  .products-list.grid-view {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .products-list.list-view {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .products-list.list-view .product-card {
    grid-template-columns: 160px 1fr;
  }

  .product-info {
    padding: 15px;
  }

  .product-title {
    font-size: 16px;
  }

  .current-price {
    font-size: 18px;
  }

  .add-to-cart-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .products-list.list-view .product-title {
    font-size: 16px;
  }

  .products-list.list-view .current-price {
    font-size: 19px;
  }

  .products-list.list-view .product-info {
    padding: 15px;
  }

  .products-list.list-view .add-to-cart-btn {
    max-width: 180px;
    padding: 10px 16px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .products-list.grid-view {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .products-list.grid-view .product-card {
    padding: 20px 15px 0;
  }

  .products-list.grid-view .product-image img {
    height: 100px;
  }

  .product-description{
    font-size: 10px;
  }
  .products-list.grid-view .product-info {
    padding: 15px 10px;
  }

  .products-list.grid-view .product-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .products-list.grid-view .current-price {
    font-size: 16px;
  }

  .products-list.grid-view .old-price {
    font-size: 13px;
  }

  .products-list.grid-view .add-to-cart-btn {
    padding: 8px 12px;
    font-size: 11px;
  }

  .products-list.list-view {
    grid-template-columns: 1fr;
  }

  .products-list.list-view .product-card {
    grid-template-columns: 120px 1fr;
  }

  .products-list.list-view .product-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .products-list.list-view .current-price {
    font-size: 17px;
  }

  .products-list.list-view .old-price {
    font-size: 14px;
  }

  .products-list.list-view .product-info {
    padding: 12px;
  }

  .products-list.list-view .add-to-cart-btn {
    max-width: 100%;
    font-size: 10px;
    padding: 8px 12px;
  }

  .products-list.list-view .product-categories {
    font-size: 9px;
  }

  .view-toggle {
    width: auto;
  }

  .result-count {
    font-size: 14px;
  }

  .products-pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
    margin: 0 3px;
  }
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-section {
  padding: 100px 0;
  background: #E9F1EE;
  position: relative;
  overflow: hidden;
}


.contact-section .container{
  width: min(1200px, 90%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Contact Form Container */
.contact-form-container {
  background-color: #ffffff;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: visible;
}

.farmer-illustration {
  position: absolute;
  bottom: -50px;
  left: -221px;
  width: 260px;
  height: auto;
  z-index: 1;
}

.farmer-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form-content {
  position: relative;
  z-index: 2;
}

.contact-subtitle {
  color: #7ab642;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Caveat', cursive;
  display: block;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 35px;
  line-height: 1.2;
}

/* WPForms Styling for Contact Page - Scoped to contact section only */
.contact-section .contact-form-content .wpforms-container {
  margin: 0;
  padding: 0;
}

.contact-section .contact-form-content .wpforms-form {
  margin: 0;
  padding: 0 !important;
  box-shadow: none !important;
}

.contact-section .contact-form-content .wpforms-field-container {
  margin: 0;
  padding: 0;
}

.contact-section .contact-form-content .wpforms-field {
  margin-bottom: 20px;
  padding: 0;
}

.contact-section .contact-form-content .wpforms-field-label {
  display: none;
}

.contact-section .contact-form-content .wpforms-field-sublabel {
  display: none;
}

.contact-section .contact-form-content .wpforms-field-description {
  display: none;
}

/* Input Fields */
.contact-section .contact-form-content .wpforms-field input[type="text"],
.contact-section .contact-form-content .wpforms-field input[type="email"],
.contact-section .contact-form-content .wpforms-field input[type="tel"],
.contact-section .contact-form-content .wpforms-field input[type="url"],
.contact-section .contact-form-content .wpforms-field input[type="number"],
.contact-section .contact-form-content .wpforms-field select,
.contact-section .contact-form-content .wpforms-field textarea {
  width: 100% !important;
  padding: 18px 25px !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  color: #666 !important;
  background-color: #fafafa !important;
  transition: all 0.3s ease !important;
  font-family: inherit !important;
  box-shadow: none !important;
  height: auto !important;
  line-height: normal !important;
}

.contact-section .contact-form-content .wpforms-field input:focus,
.contact-section .contact-form-content .wpforms-field select:focus,
.contact-section .contact-form-content .wpforms-field textarea:focus {
  outline: none !important;
  border-color: #7ab642 !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(122, 182, 66, 0.1) !important;
}

.contact-section .contact-form-content .wpforms-field input::placeholder,
.contact-section .contact-form-content .wpforms-field textarea::placeholder {
  color: #999 !important;
}

.contact-section .contact-form-content .wpforms-field textarea {
  resize: vertical !important;
  min-height: 150px !important;
}

/* Row with 2 columns (Email and Phone) */
.contact-section .contact-form-content .wpforms-field-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

.contact-section .contact-form-content .wpforms-field-row .wpforms-field {
  margin-bottom: 0 !important;
  width: 100% !important;
}

/* Submit Button */
.contact-section .contact-form-content .wpforms-submit-container {
  margin-top: 10px !important;
  padding: 0 !important;
  text-align: left !important;
}

.contact-section .contact-form-content .wpforms-submit {
  background-color: #f4a135 !important;
  color: #ffffff !important;
  padding: 18px 45px !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  box-shadow: none !important;
  text-shadow: none !important;
  width: auto !important;
}

/* Error Messages */
.contact-section .contact-form-content .wpforms-error {
  color: #dc3545 !important;
  font-size: 14px !important;
  margin-top: 5px !important;
}

.contact-section .contact-form-content .wpforms-field.wpforms-has-error input,
.contact-section .contact-form-content .wpforms-field.wpforms-has-error textarea,
.contact-section .contact-form-content .wpforms-field.wpforms-has-error select {
  border-color: #dc3545 !important;
}

/* Success Message */
.contact-section .contact-form-content .wpforms-confirmation-container-full {
  background-color: #d4edda !important;
  border: 1px solid #c3e6cb !important;
  color: #155724 !important;
  padding: 20px !important;
  border-radius: 10px !important;
  margin-bottom: 20px !important;
}

/* Required Field Indicator */
.contact-section .contact-form-content .wpforms-required-label {
  color: #dc3545;
  margin-left: 3px;
}

/* Contact Information Container */
.contact-info-container {
  background-color: transparent;
  padding: 60px 50px;
  position: relative;
  overflow: visible;
  min-height: 100%;
}

.contact-info-content {
  position: relative;
  z-index: 2;
}

.contact-info-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-info-description {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-info-item {
  margin-bottom: 35px;
}

.contact-info-item:last-of-type {
  margin-bottom: 0;
}

.info-label {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.info-value {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.info-value a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-value a:hover {
  color: #7ab642;
}

/* Plant Illustration at bottom right of section */
.plant-illustration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.plant-illustration img {
  width: 80%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-wrapper {
    gap: 40px;
  }

  .farmer-illustration {
    left: -60px;
    width: 160px;
  }

  .plant-illustration {
    width: 250px;
    right: 30px;
  }
}

@media (max-width: 992px) {
  .contact-section {
    background: #e8f0dc;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 50px 40px;
  }

  .farmer-illustration {
    left: -40px;
    width: 140px;
  }

  .plant-illustration {
    width: 200px;
    right: 20px;
    bottom: 20px;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-info-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 40px 30px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-info-title {
    font-size: 28px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* WPForms Responsive */
  .contact-section .contact-form-content .wpforms-field-row {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .farmer-illustration {
    display: none;
  }

  .plant-illustration {
    width: 150px;
    right: 10px;
    bottom: 10px;
  }

  .contact-form .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .contact-section .contact-form-content .wpforms-submit {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .contact-form-container,
  .contact-info-container {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-info-title {
    font-size: 24px;
  }

  .contact-form .form-control {
    padding: 15px 20px;
    font-size: 15px;
  }

  .contact-form .btn-submit {
    padding: 15px 35px;
    font-size: 16px;
  }

  /* WPForms Mobile */
  .contact-section .contact-form-content .wpforms-field input,
  .contact-section .contact-form-content .wpforms-field select,
  .contact-section .contact-form-content .wpforms-field textarea {
    padding: 15px 20px !important;
    font-size: 15px !important;
  }

  .contact-section .contact-form-content .wpforms-submit {
    padding: 15px 35px !important;
    font-size: 16px !important;
  }

  .plant-illustration {
    width: 120px;
    right: 0;
    bottom: 0;
    opacity: 0.5;
  }
}

/* About Page - Team Members Social Icons */
.about-page .social-icons {
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
  position: absolute;
  bottom: 0;
  left: 5px;
  pointer-events: none;
  z-index: 10;
}

.about-page .social-share-wrapper:hover .social-icons,
.about-page .social-share-wrapper.active .social-icons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
  bottom: 42px;
}

.about-page .social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  animation: socialIconSlideUp 0.3s ease forwards;
}

.about-page .social-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.about-page .social-icon:hover {
  transform: scale(1.1);
}

.about-page .social-icon:hover img {
  transform: scale(1.05);
}

.about-page .social-icon:nth-child(1) {
  animation-delay: 0.05s;
}

.about-page .social-icon:nth-child(2) {
  animation-delay: 0.1s;
}

.about-page .social-icon:nth-child(3) {
  animation-delay: 0.15s;
}

.about-page .social-facebook {
  background-color: #1877f2;
}

.about-page .social-facebook:hover {
  background-color: #145dbf;
}

.about-page .social-twitter {
  background-color: #1da1f2;
}

.about-page .social-twitter:hover {
  background-color: #0c85d0;
}

.about-page .social-linkedin {
  background-color: #0077b5;
}

.about-page .social-linkedin:hover {
  background-color: #005885;
}

.about-page .social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.about-page .social-instagram:hover {
  background: linear-gradient(45deg, #d17d2d 0%, #c85a32 25%, #b71f38 50%, #a61d57 75%, #9a1474 100%);
}

.about-page .social-youtube {
  background-color: #ff0000;
}

.about-page .social-youtube:hover {
  background-color: #cc0000;
}

.about-page .social-pinterest {
  background-color: #e60023;
}

.about-page .social-pinterest:hover {
  background-color: #ad081b;
}

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

/* Responsive for About Page Social Icons */
@media (max-width: 768px) {
  .about-page .social-icon {
    width: 34px;
    height: 34px;
  }

  .about-page .social-icon img {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .about-page .social-icon {
    width: 32px;
    height: 32px;
  }

  .about-page .social-icon img {
    width: 12px;
    height: 12px;
  }

  .about-page .social-icons {
    gap: 8px;
    left: 3px;
  }

  .about-page .social-share-wrapper:hover .social-icons,
  .about-page .social-share-wrapper.active .social-icons {
    bottom: 38px;
  }
}

/* ===== MOBILE MENU STYLES ===== */

/* Hide hamburger button and mobile menu on desktop by default */
.mobile-menu-toggle,
.mobile-nav-overlay {
  display: none;
}

/* Desktop styles - Above 1024px */
@media (min-width: 1025px) {
  /* Show desktop nav */
  .desktop-nav {
    position: relative !important;
    display: flex !important;
    left: auto !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible !important;
    margin-left: -22%;
  }
  
  /* Hide mobile nav on desktop */
  .mobile-nav-overlay {
    display: none !important;
  }
  
  .desktop-nav .agrica-menu {
    display: flex !important;
    flex-direction: row !important;
    gap: 35px !important;
    align-items: center !important;
  }
}

/* Mobile-only styles - Only apply below 1024px */
@media (max-width: 1024px) {
  /* Show hamburger button on mobile */
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  /* Hide desktop nav on mobile */
  .desktop-nav {
    display: none !important;
  }
  
  /* Show mobile nav overlay */
  .mobile-nav-overlay {
    display: flex !important;
  }

  /* Reset PC Header Styles for Mobile */
  .agrica-header::after,
  .admin-bar header.site-header.agrica-header > div::before {
    display: none !important;
  }

  .agrica-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
    width: 100% !important;
  }

  .admin-bar .agrica-header {
    top: 46px !important;
  }

  .agrica-header .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .agrica-logo::before, .agrica-logo::after{
    content: none !important;
    display: none !important;
  }
  
  .site-brand-wrapper {
    background: transparent !important;
    padding: 0 !important;
  }

  /* Mobile Header Layout */
  .agrica-header .header-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 5px 20px !important;
    gap: 15px !important;
    height: auto !important;
    max-width: 100vw !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: #fff !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    overflow: hidden !important;
  }

  /* Logo on Mobile - Right side */
  .site-brand-wrapper {
    z-index: 10001 !important;
    flex-shrink: 0;
    order: 2;
    background: transparent !important;
    border: none !important;
    height: auto !important;
    padding: 0 !important;
  }

  .site-brand-wrapper .logo-image,
  .site-brand-wrapper img {
    height: 40px !important;
    width: auto !important;
    max-width: 180px !important;
    display: block !important;
    object-fit: contain !important;
  }
  
  /* Hamburger Button - Left side */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-around !important;
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    z-index: 10001 !important;
    position: relative !important;
    transition: transform 0.3s ease !important;
    order: 1 !important;
  }

  .mobile-menu-toggle:hover {
    transform: scale(1.1);
  }

 

  .hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
  }

  /* Hamburger Animation when menu is open */
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Hide navigation on mobile, show as overlay when active */
  .mobile-nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    bottom: 0 !important;
    width: 75% !important;
    max-width: 400px !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 9999 !important;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5) !important;
    padding:50px 0 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    visibility: visible !important;
  }

  .about-features-grid{
    left: 0 !important;
  }
  
  .timeline-dot::before{
    height: 15px;
  }

  .mobile-nav-overlay.active {
    left: 0 !important;
    visibility: visible !important;
  }

  /* Mobile Menu Styles */
  .agrica-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 1 !important;
  }

  .agrica-menu > li {
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    width: 100% !important;
    min-height: 50px !important;
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
  }

  .agrica-menu > li:last-child {
    border-bottom: none !important;
  }

  .agrica-menu > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    padding: 16px 20px !important;
    color: #eef3ea !important;
    text-decoration: none !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    position: relative !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    width: 100% !important;
    min-height: 50px !important;
    white-space: nowrap !important;
  }

  .agrica-menu > li > a .menu-text {
    color: #000 !important;
    display: inline-block !important;
    visibility: visible !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    flex: 1 !important;
  }

  .agrica-menu > li > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 87% !important;
    background: #e0e0e0;
    transition: transform 0.3s ease;
    margin: 0 auto;
  }

  .agrica-menu > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }

  .agrica-menu > li > a:hover,
  .agrica-menu > li.current-menu-item > a {
    background: rgba(255, 180, 58, 0.1) !important;
    color: var(--accent) !important;
  }

  .agrica-menu > li > a:hover::before,
  .agrica-menu > li.current-menu-item > a::before {
    transform: scaleY(1);
  }

  /* Mobile Submenu */
  .agrica-menu .sub-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 0 0 8px 8px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    box-shadow: none !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    display: block !important;
  }

  .agrica-menu li.menu-item-has-children.open > .sub-menu {
    max-height: 500px !important;
    padding: 10px 0 !important;
  }

  .agrica-menu .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent !important;
  }

  .agrica-menu .sub-menu li:last-child {
    border-bottom: none;
  }

  .agrica-menu .sub-menu a {
    display: flex !important;
    align-items: center !important;
    padding: 12px 40px !important;
    color: var(--text-dim) !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
  }

  .agrica-menu .sub-menu a:hover {
    color: var(--accent) !important;
    padding-left: 48px !important;
    background: rgba(255, 180, 58, 0.05) !important;
  }

  /* Dropdown Icon for Mobile */
  .agrica-menu .dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: auto;
  }

  .agrica-menu li.menu-item-has-children.open > a .dropdown-icon {
    transform: rotate(180deg);
  }

  /* Menu Badge in Mobile */
  .agrica-menu .menu-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    margin-left: 8px;
  }

  .agrica-menu .menu-badge.new {
    background: #4caf50;
    color: #fff;
  }

  .agrica-menu .menu-badge.hot {
    background: #ff5722;
    color: #fff;
  }

  .agrica-menu .menu-badge.sale {
    background: var(--accent);
    color: #1a1a1a;
  }

  /* Overlay Backdrop */
  .mobile-menu-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px) !important;
    pointer-events: none !important;
  }

  .mobile-menu-backdrop.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Prevent body scroll when menu is open */
  body.mobile-menu-open {
    overflow: hidden !important;
    position: relative !important;
  }

  /* Animation for menu items */
  .mobile-menu-overlay.active .mobile-menu > li {
    animation: slideInRight 0.4s ease forwards;
    opacity: 0;
  }

  .mobile-menu-overlay.active .mobile-menu > li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .mobile-menu-overlay.active .mobile-menu > li:nth-child(2) {
    animation-delay: 0.15s;
  }

  .mobile-menu-overlay.active .mobile-menu > li:nth-child(3) {
    animation-delay: 0.2s;
  }

  .mobile-menu-overlay.active .mobile-menu > li:nth-child(4) {
    animation-delay: 0.25s;
  }

  .mobile-menu-overlay.active .mobile-menu > li:nth-child(5) {
    animation-delay: 0.3s;
  }

  .mobile-menu-overlay.active .mobile-menu > li:nth-child(6) {
    animation-delay: 0.35s;
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Adjust hero section for fixed header */
  .hero-section,
  .page-hero{
    padding-top: 80px;
  }

  .admin-bar .hero-section,
  .admin-bar .page-hero{
    padding-top: 112px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .mobile-menu-overlay {
    max-width: 100%;
  }

  .mobile-menu > li > a {
    font-size: 16px;
    padding: 14px 16px;
  }

  .mobile-menu .sub-menu a {
    font-size: 14px;
    padding: 10px 32px;
  }

  .mobile-logo .logo-image,
  .mobile-logo img {
    height: 40px;
  }
}
