/* ========================================
   Planty - CSS Stylesheet
   ======================================== */

/* CSS Variables */


:root {
  --green: #2F5D3A;
  --green-light: #3a7350;
  --beige: #EADDC6;
  --beige-light: #F5EDE0;
  --brown: #8B6B4F;
  --brown-light: #A08060;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray: #666666;
  --gray-light: #999999;
  --transition: all 0.3s ease;
  --top-border: 1px solid #b8d9c2;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main{
      overflow: hidden;
}

.secondary-color{
  color: var(--brown);
}
/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn--primary {
  background-color: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--brown);
}

.btn--outline {
  background-color: transparent;
  color: var(--brown);
  border: 1px solid var(--brown);
}

.btn--outline:hover {
  background-color:  var(--green);
  color: var(--white);
}

.btn--brown {
  background-color: var(--brown);
  color: var(--white);
}

.btn--brown:hover {
  background-color: var(--brown-light);
}

.btn--small {
  padding: 8px 20px;
  font-size: 13px;
}

.btn__icon {
  width: 20px;
  height: 20px;
}

.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: var(--transition);
}

.btn-icon:hover {
  color: var(--green);
}

/* ========================================
   Header
   ======================================== */
.header {
  padding: 20px 0;
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 120;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
}

.logo__icon {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-weight: 500;
  font-size: 15px;
  color: var(--gray);
  transition: var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--green);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--green);
  border-radius: 2px;
}

.header__actions {
  display: flex;
  gap: 12px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  padding: 60px 0 30px;
    background-color: var(--white);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--green);
  margin-bottom: 20px;
}

.hero__text {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 400px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__number {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}

.stat__label {
    font-size: 14px;
    color: var(--brown);
    font-weight: 500;
}

.hero__image {
  position: relative;
}

/* .hero__image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 400px;
} */

.hero__image-bg {
    position: absolute;
    width: 100%;
    height: 80%;
    bottom: 0;

    /* top 100% opacity -> bottom 0% opacity */
    background: linear-gradient(
        to bottom,
        rgba(230, 226, 222, 1) 0%,
        rgba(230, 226, 222, 0) 100%
    );

    border-radius: 80px 80px 0 0;
}

.hero__image img {
    position: relative;
    z-index: 2;
    max-width: 65%;
    margin: auto;
    height: auto;
    object-fit: contain;
}
/* ========================================
   Trending Section
   ======================================== */
.trending {
  padding: 30px;
  padding-bottom: 60px;  /* background-color: var(--beige-light); */
  padding-bottom: bottom;
}

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

.trending-card {
    display: flex;
    align-items: center;
    gap: 16px;
    /* background-color: var(--white); */
     background-color: var(--beige);
    border-radius: 2px;
    padding: 16px;
    transition: var(--transition);
    justify-content: space-evenly;
}

.trending-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.trending-card__image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
}

.trending-card__image img {
width: 100%;
    height: 100%;
    object-fit: fill;
}

.trending-card__tag {
  font-size: 12px;
      color: #444141;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.trending-card__title {
  font-size: 26px;
  font-weight: 600;
  color: var(--black);
  margin: 4px 0 8px;
  line-height: 1.3;
}

.trending-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  position: relative;
}

.trending-card__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--green);
}

.trending-card{
    height:100%;
}

.trending-card__image img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
}




.swiper-grid-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction:row !important;
}

.swiper-pagination{
  bottom: 6% !important;

}
  

.swiper-button-prev{
      left: 9%!important;
      width: 20px !important;
      top: 58%!important;
      /* font-size: 10px; */
      transform: scale(0.5)!important;
      color: #3a7350!important;
  }

 .swiper-button-next {
      right: 9%!important;
      width: 20px !important;
      top: 58%!important;
      /* font-size: 10px; */
      transform: scale(0.5)!important;
      color: #3a7350!important;
  }

  .swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}
  .swiper-pagination-bullet-active {
      background: #121416 !important;
  }

  /* .swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    color: #2d6a4f;
}
*/
.swiper-button-next i,
.swiper-button-prev i {
    font-size: 40px;
} 

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose {
  padding: 30px 0 50px;
  /* background-color: var(--white); */
   background-color: var(--beige);
}

.why-choose__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-choose__content{
  position: relative;
  z-index:2;
}
.why-choose__image img {
    width: 100%;
    border-radius: 20px;
    object-fit: contain;
    height: 85%;
    left: -26%;
    top: 4%;
    position: absolute;
    z-index: 2;
}

.why-choose__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

/* .why-choose__text {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 32px;
} */

.why-choose__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #3e4d44;
    max-width:100%;
    margin-bottom: 1rem;
    border-left: 4px solid #7bbf8a;
    padding-left: 1.2rem;
    background: #f4faf6;
    border-radius: 0 12px 12px 0;
    padding: 0.9rem 1.2rem;
}

/* .feature-list {

      display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 2.2rem;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature__icon {
  width: 48px;
  height: 48px;
  background-color: var(--beige);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature__icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.feature__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.feature__text {
  font-size: 14px;
  color: var(--gray);
} */

 /* ---- feature grid (9 items) ---- */
    .feature-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin-top: 0.5rem;
    }

    .feature {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      background: #fafdfb;
      padding: 0.7rem 1rem 0.7rem 0.9rem;
      border-radius: 2rem;
      transition: background 0.2s, box-shadow 0.2s;
      border: 1px solid rgba(90, 140, 100, 0.08);
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    }

    .feature:hover {
      background: #ffffff;
      box-shadow: 0 8px 18px -6px rgba(60, 110, 70, 0.12);
      border-color: #cde0d2;
    }

    .feature__icon {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 2.8rem;
      height: 2.8rem;
      background: #e6f3ea;
      border-radius: 50%;
      color: #2d6a4f;
      font-size: 1.3rem;
      flex-shrink: 0;
      transition: background 0.2s, color 0.2s, transform 0.15s;
    }

    .feature:hover .feature__icon {
      background: #2d6a4f;
      color: white;
      transform: scale(1.02);
    }

    .feature__info {
      display: flex;
      flex-direction: column;
    }

    .feature__title {
      font-size: 14px;
          font-weight: 600;
          color: #1b2e21;
          letter-spacing: -0.01em;
          line-height: 1.3;
    }
    .squre-edge{
  position: absolute;
    height: 100%;
    width: 20%;
    left: 0;
    top: 0;
    aspect-ratio: 2 / 3;
        background: #ffffff;
    }
    .rounded-edge {
      position: absolute;
      height: 100%;
      width: min-content;
      left: 20%;
      top: 0;
      aspect-ratio: 2 / 3;
      clip-path: ellipse(100% 50% at 0% 50%);
      background: #ffffff;
      z-index: 1;
    }
    /* optional subtitle hidden — we keep only title */
    .feature__text {
      display: none;
    }

    /* small adjustment for icon alignment */
    .feature i {
      line-height: 1;
    }



    /* ---------- FARM STATISTICS SECTION (new) ---------- */
    .farm-stats {
      background: #ffffff;
      border-radius: 2.5rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.10);
      padding:30px;
      /* max-width: 1280px; */
      width: 100%;
      padding-bottom: 60px;
    }

    .farm-stats__header {
      display: flex;
      flex-direction: column;
       align-items: flex-start;
    margin-bottom: 2.8rem;
    text-align: center;
    }

    .farm-stats__header h2 {
      font-size: 2.6rem;
      font-weight: 700;
      color: #1e2f23;
      letter-spacing: -0.02em;
    }

    .farm-stats__header h2 span,
    .primary-color
    {
      color: var(--green);
    }

    .farm-stats__header p {
      color: #1b1c1b;
      font-size: 1.1rem;
      max-width: 500px;
      margin-top: 0.4rem;
      border-top: var(--top-border);
      padding-top: 0.6rem;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.8rem 1.5rem;
    }

    .stat-item {
      background: var(--beige);
      border-radius: 2.2rem;
      padding: 1.8rem 0.8rem 1.5rem;
      text-align: center;
      transition: all 0.2s ease;
      border: 1px solid rgba(70, 130, 90, 0.08);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
    }

    .stat-item:hover {
      transform: translateY(-4px);
      background: #ffffff;
      border-color: #b5d6be;
      box-shadow: 0 14px 28px -10px rgba(40, 90, 50, 0.12);
    }

    .stat-item__icon {
      font-size: 2.2rem;
      color: #2d6a4f;
      background: #ffffff;
      width: 4rem;
      height: 4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 60px;
      margin-bottom: 0.2rem;
      transition: background 0.2s, color 0.2s;
    }

    .stat-item:hover .stat-item__icon {
      background: #2d6a4f;
      color: white;
    }

    .stat-item__number {
      font-size: 2.1rem;
      font-weight: 700;
      color: #1a3522;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .stat-item__label {
      font-size: 0.95rem;
      font-weight: 500;
      color: black;
      letter-spacing: 0.01em;
      max-width: 120px;
      margin: 0 auto;
    }

    /* small plus / k sign */
    .stat-item__number small {
      font-size: 1.3rem;
      font-weight: 600;
      color: black;
    }

    .source{
      width: 100%;
    }

.sourcing{
    position: relative;
    /* transform: scaleX(-1); */
    padding: 0;
    margin: 0;
    padding-bottom: 60px;
        padding-bottom: 60px;
    padding-top: 40px;

    .why-choose__content {
          /* transform: scaleX(-1); */
    }

    
}

 



/* ========================================
   How To Use Section
   ======================================== */
.how-to-use {
  padding: 80px 0;
  /* background-color: var(--beige-light); */
}

.how-to-use__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.how-to-use__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.how-to-use__text {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 24px;
}

.how-to-use__specs {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding: 20px;
  background-color: var(--beige);
  border-radius: 16px;
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec__label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.how-to-use__image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 400px;
}

/* ========================================
   New Products Section
   ======================================== */
.new-products {
  padding: 80px 0;
  background-color: var(--white);
}

.new-products__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.new-products__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--green);
  border-radius: 2px;
}

.new-products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.product-card {
  background-color: var(--beige-light);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-card--large {
  grid-row: span 2;
}

.product-card--large img {
  height: 100%;
  object-fit: cover;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.product-card__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.badge {
  background-color: var(--brown);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge--green {
  background-color: var(--green);
}

.badge__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.product-card__sale {
  font-size: 12px;
  color: var(--gray);
  display: block;
  margin-bottom: 12px;
}



        /* =============================================================
           WHO WE SUPPLY – FLEX MASONRY (no gaps, all cards fill space)
        ============================================================= */
        .supply-section {
            background: #ffffff;
            /* border-radius: 2.5rem; */
            /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.10); */
            padding: 30px;
            width: 100%;
        }

        .supply-header {
            text-align: center;
            margin-bottom: 2.8rem;
        }

        .supply-header h2 {
            font-size: 2.6rem;
            font-weight: 700;
            color: #1e2f23;
            letter-spacing: -0.02em;
            
        }

        .supply-header h2 span {
            color: #2d6a4f;
        }

        .supply-header p {
            color: #191a19;
            font-size: 1.1rem;
            width: fit-content;
            margin: 0.4rem auto 0;
            border-top:var(--top-border);
            padding-top: 0.6rem;
        }

        /* ----- FLEX MASONRY: all cards fill height, no gaps ----- */
        .supply-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
        }

        .supply-card {
            position: relative;
            border-radius: 1.8rem;
            overflow: hidden;
            background: #f5faf7;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(70, 130, 90, 0.06);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            cursor: default;
            flex: 1 1 auto;
            min-height: 220px;
            height: auto;
        }

        /* ---- fixed sizes using flex basis ---- */
        .card-big {
            flex: 2 1 400px;
            min-height: 340px;
        }

        .card-tall {
            flex: 1 1 200px;
            min-height: 340px;
        }

        .card-wide {
            flex: 2 1 400px;
            min-height: 220px;
        }

        .card-small {
            flex: 1 1 200px;
            min-height: 220px;
        }

        .supply-card:hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: 0 24px 44px -16px rgba(30, 70, 40, 0.25);
            border-color: #b0d4bc;
        }

        /* image background - cover the entire card */
        .supply-card__bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.6s ease;
            z-index: 0;
            width: 100%;
            height: 100%;
        }

        .supply-card:hover .supply-card__bg {
            transform: scale(1.06);
        }

        /* overlay gradient */
        .supply-card__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 35, 22, 0.8) 0%, rgba(20, 40, 25, 0.2) 50%, rgba(0, 0, 0, 0.05) 80%);
            z-index: 1;
            transition: background 0.3s;
        }

        .supply-card:hover .supply-card__overlay {
            background: linear-gradient(to top, rgba(10, 40, 25, 0.9) 0%, rgba(20, 40, 25, 0.3) 55%, rgba(0, 0, 0, 0.08) 80%);
        }

        /* content on top */
        .supply-card__content {
            position: relative;
            z-index: 2;
            padding: 1.4rem 1.2rem 1.2rem;
            color: white;
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        .supply-card__icon {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(4px);
            width: 2.6rem;
            height: 2.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 60px;
            margin-bottom: 0.2rem;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
            flex-shrink: 0;
        }

        .supply-card:hover .supply-card__icon {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
        }

        .supply-card__label {
            font-weight: 700;
            font-size: 2rem;
            letter-spacing: -0.01em;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .card-big .supply-card__label {
            font-size: 2.3rem;
        }

        .card-tall .supply-card__label {
            font-size: 2.1rem;
        }

        .supply-card__badge {
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            padding: 0.1rem 0.6rem;
            border-radius: 40px;
            display: inline-block;
            width: fit-content;
            border: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 0.05rem;
        }

        .supply-card__desc {
            font-size: 0.9rem;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.35s ease, max-height 0.4s ease, margin 0.3s ease;
            color: rgba(255, 255, 255, 0.85);
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
            font-weight: 400;
            margin-top: 0;
        }

        .supply-card:hover .supply-card__desc {
            opacity: 1;
            max-height: 50px;
            margin-top: 0.2rem;
        }

        /* ---- REAL IMAGES FROM UNSPLASH ---- */
        /* .card-wedding .supply-card__bg {
            background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=800&h=600&fit=crop');
        }
        .card-event .supply-card__bg {
            background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=800&h=600&fit=crop');
        }
        .card-florist .supply-card__bg {
            background-image: url('https://images.unsplash.com/photo-1526047932273-341f2a7631f9?w=800&h=600&fit=crop');
        }
        .card-exporter .supply-card__bg {
            background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=800&h=600&fit=crop');
        }
        .card-hotel .supply-card__bg {
            background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=800&h=600&fit=crop');
        }
        .card-banquet .supply-card__bg {
            background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=800&h=600&fit=crop');
        }
        .card-retail .supply-card__bg {
            background-image: url('https://images.unsplash.com/photo-1487700160041-babef9c3cb55?w=800&h=600&fit=crop');
        }
        .card-religious .supply-card__bg {
            background-image: url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=800&h=600&fit=crop');
        } */

        .supply-card__bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(60, 100, 70, 0.1);
            pointer-events: none;
        }


.compare-section{
  padding:30px;
  background-color: var(--beige);
.title{
    text-align:center;
    margin-bottom:50px;
}

.title .icon{
    color:#b28a3f;
    font-size:28px;
    margin-bottom:10px;
}

.title h1{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    color:#0f3b2d;
    line-height:1;
}

.title p{
    margin-top:15px;
    font-size:18px;
    color:#666;
}

/* ==========================
FILTERS
========================== */

.filters{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.left-filters{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.filter-box{
    min-width:180px;
}

/* .filter-box select{
    width:100%;
    height:58px;
    border:1px solid #ddd;
    border-radius:14px;
    padding:0 20px;
    background:white;
    font-size:15px;
    cursor:pointer;
} */

.search-box{
    position:relative;
}

.search-box input{
    width:250px;

    border:1px solid #ddd;
    border-radius:14px;
    padding: 14px 50px 14px 18px;
        font-size:15px;
}


.filter-box {
    position: relative;
    min-width: 220px;
}

.filter-box select {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 1px solid rgba(47, 93, 58, 0.15);
    border-radius: 14px;
    background: #fff;
    color: #2F5D3A;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;

    /* Remove default arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.filter-box select:hover {
    border-color: #2F5D3A;
}

.filter-box select:focus {
    outline: none;
    border-color: #2F5D3A;
    box-shadow: 0 0 0 4px rgba(47, 93, 58, 0.12);
}

/* Custom Arrow */
.filter-box::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 40%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #2F5D3A;
    border-bottom: 2px solid #2F5D3A;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

/* Hide IE arrow */
.filter-box select::-ms-expand {
    display: none;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:30px;
    transition:all .35s ease;
}

.product-grid.loading{
    opacity:0;
    transform:translateY(20px);
}

.pagination{
      display: flex;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 0px;
        flex-wrap: wrap;
}

.pagination button{
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid #ddd;
        background: white;
}

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

.pagination button.active{
    background:#1d6d43;
    color:#fff;
}

.pagination button:disabled{
    opacity:.5;
    cursor:not-allowed;
}
.life-row:first-of-type {
    margin-bottom: 5px;
}
.life-row span:first-of-type{
    font-weight: 500;

}
/* ==========================
COUNT
========================== */

.result-count{
    color:#0f3b2d;
    font-weight:600;
    margin: 20px 0 30px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 20px;
        flex-wrap: wrap;
        align-items: center;
}

/* ==========================
GRID
========================== */

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

.card{
    background:#fff;
    border-radius:18px;
    border:1px solid #ececec;
    overflow:hidden;
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.image-box{
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.image-box img{
    width: 100%;
    transition: .4s;
    object-fit: fill;
    height: 100%;
}

.card:hover img{
    transform:scale(1.08);
}

.card-content{
    padding:15px;
    padding-top: 0px;

}


.compare-filter-title{
    display: flex;
    height: 100%;
    align-content: center;
    align-items: center;
}
.card h3{
    color:var(--black);
    margin-bottom:2px;
    font-size:28px;
    font-weight: 500;
    line-height: 30px;

    /* font-family:'Cormorant Garamond',serif; */
}

.label{
    color:#888;
    font-size:14px;
}

.value{
    margin-top:4px;
    margin-bottom:18px;
    font-size:15px;
}

.life-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.badge{
    padding:6px 14px;
    border-radius:40px;
    font-size:13px;
}
/* 
.luxury{
    background:#fef3c7;
    color:#92400e;
}

.backdrop{
    background:#dbeafe;
    color:#1e40af;
}

.high{
    background:#dcfce7;
    color:#166534;
}

.medium{
    background:#fee2e2;
    color:#991b1b;
} */

/* Best For */
.backdrop{background:#dbeafe;color:#1e40af;}
.luxury{background:#fef3c7;color:#92400e;}
.indoor{background:#e0e7ff;color:#4338ca;}
.decoration{background:#fae8ff;color:#86198f;}
.landscape{background:#dcfce7;color:#166534;}
.garden{background:#d1fae5;color:#065f46;}
.outdoor{background:#cffafe;color:#155e75;}
.tropical{background:#fde68a;color:#92400e;}
.ground-cover{background:#ede9fe;color:#6d28d9;}
.flowering{background:#fce7f3;color:#be185d;}
.decorative{background:#f3f4f6;color:#374151;}

/* Shelf Life */
.high{background:#dcfce7;color:#166534;}
.medium{background:#ffedd5;color:#c2410c;}
.very-high{background:#bbf7d0;color:#14532d;}

.compare-btn{
              width: 100%;
        margin-top: 12px;
        height: 40px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        border-radius: 7px;
        background: var(--green);
        cursor: pointer;
        font-weight: 600;
        transition: 0.3s;
        color: white;
}

.compare-btn:hover{
    color:white;
    background-color: var(--brown);
}

/* ==========================
PAGINATION
========================== */

/* .pagination{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:50px;
} */

/* .pagination button{
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid #ddd;
    background:white;
    cursor:pointer;
} */

.pagination .active{
    background:#0f3b2d;
    color:white;
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:1400px){
    .product-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media(max-width:1100px){
    .product-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .title h1{
        font-size:45px;
    }

    .search-box input{
        width:100%;
    }

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

@media(max-width:550px){

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

    .filters{
        flex-direction:column;
    }

}

}


/* ========================================
   Social Feed Section
   ======================================== */
.social-feed {
  padding: 60px 0;
  background-color: var(--beige-light);
}

.social-feed__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 40px;
  text-align: center;
}

.social-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.social-feed__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.social-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.social-feed__item:hover img {
  transform: scale(1.05);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: var(--beige);
  padding: 60px 0 20px;
}

.footer__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand .logo {
  margin-bottom: 16px;
}

.footer__text {
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
      font-weight: 500;
}

.footer__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.footer__link {
    display: block;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 10px;
    transition: var(--transition);
    font-weight: 500;
}

.footer__link:hover {
  color: var(--green);
}

.footer__subscribe {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.footer__input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--brown);
  border-radius: 8px;
  font-size: 14px;
  background-color: var(--white);
  outline: none;
}

.footer__input:focus {
  border-color: var(--green);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--green);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--green);
  color: var(--white);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(139, 107, 79, 0.2);
}

.footer__bottom p {
  font-size: 14px;
  color: var(--black);
}

/* ========================================
   Products Page
   ======================================== */
.page-header {
  padding: 40px 0;
  background-color: var(--beige);
  text-align: center;
}

.page-header__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.page-header__text {
  font-size: 16px;
  color: var(--black);
}

.products-section {
  padding: 60px 0;
  background-color: var(--white);
}

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

.product-item {
  background-color: var(--beige-light);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-item__image {
  position: relative;
  overflow: hidden;
}

.product-item__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-item__info {
  padding: 20px;
}

.product-item__category {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-item__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  text-align: center;
}
.btn a{
  width: 100%;
}

.product-item__price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.product-item__price-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}

.product-item__price-old {
  font-size: 14px;
  color: var(--gray-light);
  text-decoration: line-through;
}

.product-item__btn {
  width: 100%;
  justify-content: center;
}

/* ========================================
   Single Product Page
   ======================================== */
.product-detail {
  padding: 60px 0;
  background-color: var(--white);
}

.product-detail__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail__gallery {
  display: flex;
  gap: 16px;
}

.product-detail__thumbnails {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumbnail:hover,
.thumbnail--active {
  border-color: var(--green);
}

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

.product-detail__main-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

.product-detail__main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.product-detail__info {
  padding-top: 20px;
}

.product-detail__category {
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.product-detail__name {
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.product-detail__price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.product-detail__price-current {
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
}

.product-detail__price-old {
  font-size: 20px;
  color: var(--gray-light);
  text-decoration: line-through;
}

.product-detail__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.rating-stars {
  display: flex;
  gap: 2px;
  color: #F5A623;
}

.rating-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rating-text {
  font-size: 14px;
  color: var(--gray);
}

.product-detail__description {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.product-detail__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--brown);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-selector button {
  width: 40px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--black);
  transition: var(--transition);
}

.quantity-selector button:hover {
  background-color: var(--beige);
}

.quantity-selector input {
  width: 50px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}

.product-detail__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--beige);
}

.meta-item {
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.meta-item__label {
  font-weight: 600;
  color: var(--black);
}

.meta-item__value {
  color: var(--gray);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
  padding: 60px 0;
  background-color: var(--white);
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact__info {
  padding-right: 40px;
}

.contact__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.contact__text {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 48px;
  height: 48px;
  background-color: var(--beige);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.contact-detail__info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.contact-detail__info p {
  font-size: 14px;
  color: var(--gray);
}

.contact__form-wrapper {
  background-color: var(--beige-light);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--brown);
  border-radius: 10px;
  font-size: 15px;
  background-color: var(--white);
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--green);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__map {
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  background-color: var(--beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .trending__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .new-products__grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card--large {
    grid-row: span 1;
  }

  .social-feed__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  .compare-section {

  .image-box{
    height:320px;
  }}
  .hero__container,
  .why-choose__container,
  .how-to-use__container,
  .product-detail__container,
  .contact__container {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 30px;
  }

      .btn {
        width: max-content;
    }
      .hero__buttons, .header__actions {
        width: 100%;
        flex-direction: row;
    }
    .best_for {
        display: grid;
        background: var(--green);
        width: 47px;
        padding: 15px 5px;
        border-radius: 59%;
        /* height: 50px; */
        justify-items: center;
        /* line-height: 30px; */
        font-size: 6px;
        text-transform: capitalize;
        position: absolute;
        right: -5%;
        top: -356%;
        color: white;
    }
  /* .nav {
    display: none;
  } */

  .trending__grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .trending-card__title {
    font-size: 18px;}

  .trending {
    padding: 0px;
      padding-bottom: 60px;}

  .new-products__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .product-detail__gallery {
    flex-direction: column-reverse;
  }

  .product-detail__thumbnails {
    flex-direction: row;
  }
}



    /* ---------- SECTION: why-choose sourcing ---------- */
        .why-choose.sourcing {
            position: relative;
            background: var(--beige);
            /* border-radius: 2rem; */
            /* box-shadow: 0 20px 40px -12px rgba(47, 93, 58, 0.12); */
            overflow: hidden;
            width: 100%;
            /* max-width: 1200px; */

        .why-choose__container {
            display: flex;
            flex-direction: column;
            padding: 0;
        }

        @media (min-width: 820px) {
            .why-choose__container {
                flex-direction: row;
                min-height: 550px;
            }
        }

        /* ---------- LEFT: image panel ---------- */
        .why-choose__image {
            flex: 1 1 45%;
            /* background: #f4ece1; */
            position: relative;
            overflow: hidden;
            min-height:500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .why-choose__image .img-wrapper {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .why-choose__image .img-wrapper img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0;
            transform: scale(0.97);
            transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                        transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
            will-change: transform, opacity;
            backface-visibility: hidden;
        }

        .why-choose__image .img-wrapper img.active {
            opacity: 1;
            transform: scale(1);
        }

        /* fallback (when images fail) */
        .image-fallback {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #EADDC6, #dccdb3);
            color: #2F5D3A;
            font-weight: 500;
            gap: 0.6rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            z-index: 2;
            padding: 1.5rem;
            text-align: center;
        }

        .image-fallback.show {
            opacity: 1;
        }

        .image-fallback i {
            font-size: 3.2rem;
            opacity: 0.6;
            color: #2F5D3A;
        }

        /* loading shimmer */
        .why-choose__image.loading::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            background-size: 200% 100%;
            animation: shimmer 1.8s infinite;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        /* ---------- RIGHT: content panel ---------- */
        .why-choose__content {
            flex: 1 1 55%;
            padding:45px;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 20px;
        }

        .why-choose__title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2F5D3A; /* GREEN */
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .why-choose__text {
            color: #8B6B4F; /* BROWN */
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .why-choose__text i {
            color: #2F5D3A; /* GREEN */
            margin-right: 8px;
            font-size: 1.2rem;
        }

        /* ---------- DROPDOWN items ---------- */
        .dropdown-item {
            border-bottom: 1px solid #eaddc6; /* BEIGE Border */
            padding: 1.2rem 0;
            transition: border-color 0.2s;
        }

        .dropdown-item:last-of-type {
            border-bottom: none;
        }

        .dropdown-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            cursor: pointer;
            user-select: none;
            padding: 0.2rem 0;
        }

        .dropdown-header h3 {
            font-weight: 600;
            font-size: 1.2rem;
            color: #2F5D3A; /* GREEN */
            transition: color 0.2s;
            letter-spacing: -0.01em;
        }

        .dropdown-header .learn-btn {
        border: none;
        background: none;
        font-size: 0.9rem;
        font-weight: 600;
        color: white;
        background: var(--green);
        padding: 12px;
        border-radius: 40px;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.2s ease;
        cursor: pointer;
        white-space: nowrap;
        letter-spacing: 0.2px;
    
        }

        .dropdown-header .learn-btn i {
            font-size: 0.75rem;
            transition: transform 0.3s ease;
        }

        .dropdown-header .learn-btn:hover {
            background: #8B6B4F;
            color: white;
        }

        .dropdown-item.expanded .learn-btn {
            background: #2F5D3A;
            border-color: #2F5D3A;
            color: white;
        }

        .dropdown-item.expanded .learn-btn i {
            transform: rotate(180deg);
        }

        .dropdown-body {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        opacity 0.4s ease,
                        margin 0.2s;
            margin-top: 0;
            padding-right: 0.5rem;
        }

        .dropdown-item.expanded .dropdown-body {
            max-height: 350px;
            opacity: 1;
            margin-top: 1rem;
        }

        .dropdown-body p {
            color: #333333;
            line-height: 1.7;
            font-size: 1rem;
            background: #fbf9f6;
            padding: 1rem 1.25rem;
            border-radius: 14px;
            border-left: 4px solid #2F5D3A; /* GREEN accent line */
        }

      }    



        /* ---------- NEW ENHANCED CONTACT SECTION LAYOUT ---------- */
        .contact-layout {
            display: flex;
            flex-direction: column;
            background: white;
            border-radius: 2.5rem;
            box-shadow: 0 30px 60px -15px rgba(47, 93, 58, 0.18);
                border: 1px solid #3a7350;
            overflow: hidden;
            width: 100%;
            /* max-width: 1200px; */
        }

        @media (min-width: 992px) {
            .contact-layout {
                flex-direction: row;
            }
        }

        /* Left Side: Call-to-action & Newsletter (Bold Box Accent) */
        /* .contact-layout__cta-box {
            background: #2F5D3A; 
            color: white;
            padding: 4rem 3.5rem;
            flex: 1 1 45%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        } */

        .contact-layout__cta-box {
    position: relative;
    background: #2F5D3A;
    color: #fff;
    padding: 4rem 3.5rem;
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

/* Background Image */
.contact-layout__cta-box::before {
  content: "";
    position: absolute;
    inset: 0;
    background: url(image/bart-zimny-W5XTTLpk1-I-unsplash.jpg) center center / cover no-repeat;
    /* opacity: 0.5; */
    z-index: -2;
    background-size: contain;
}

/* Glassy / Glossy Overlay */
.contact-layout__cta-box::after {
  content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 255, 255, 0) 100%); */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}

/* Make sure all content stays above overlays */
.contact-layout__cta-box > * {
    position: relative;
    z-index: 2;
}

        .contact-layout__cta-box h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .contact-layout__cta-box p {
            color: #EADDC6; /* BEIGE Accent Text */
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .large-newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
        }

        .large-newsletter-form input {
            width: 100%;
            padding: 1.1rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1.05rem;
            outline: none;
            transition: all 0.3s;
        }

        .large-newsletter-form input::placeholder {
            color: rgba(234, 221, 198, 0.6);
        }

        .large-newsletter-form input:focus {
            border-color: #EADDC6;
            background: rgba(255, 255, 255, 0.18);
        }

        .large-newsletter-form button {
            background: #EADDC6; /* BEIGE primary button contrast */
            color: #2F5D3A;
            border: none;
            padding: 1.1rem 2rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .large-newsletter-form button:hover {
            background: white;
            transform: translateY(-2px);
        }

        /* Right Side: Structured Corporate Directory Info */
        .contact-layout__info-box {
            padding: 4rem 3.5rem;
            flex: 1 1 55%;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 2.5rem;
        }

        .directory-section-title {
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #8B6B4F; /* BROWN label classification */
            border-bottom: 2px solid #EADDC6;
            padding-bottom: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .directory-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.75rem;
        }

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

        .directory-node {
            display: flex;
            gap: 0.4rem;
            align-items: center;
        }

        .directory-node .icon-frame {
            background: #f4ece1;
            color: #2F5D3A;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .directory-node__details h4 {
            font-size: 1.05rem;
            color: #8B6B4F;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .directory-node__details p, 
        .directory-node__details a {
            font-size: 1.05rem;
            color: #2F5D3A;
            text-decoration: none;
            font-weight: 500;
            line-height: 1.4;
        }

        .directory-node__details a:hover {
            text-decoration: underline;
        }

        /* Corporate Management Directory Cards */
        .management-hierarchy {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .management-card {
            background: #fbf9f6;
            border: 1px solid #EADDC6;
            border-radius: 16px;
            padding:10px;
            display: flex;
            align-items: center;
            gap: 1.2rem;
            transition: transform 0.2s;
        }

        .management-card:hover {
            transform: translateX(5px);
            border-color: #8B6B4F;
        }

        .management-card .avatar-frame {
            background: #2F5D3A;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            flex-shrink: 0;
        }

        .management-card__meta h4 {
            font-size: 1.1rem;
            color: #2F5D3A;
            font-weight: 700;
        }

        .management-card__meta p {
            font-size: 0.9rem;
            color: #8B6B4F;
            font-weight: 500;
            margin-top: 0.1rem;
        }

        @media (min-width: 820px ) and (max-width: 1024px) {
          .nav {
    display: flex;
    gap: 22px;
}
            .why-choose.sourcing .why-choose__image {
                flex: 1 1 13%;
            }
            .rounded-edge {
              position: absolute;
              height: 100%;
              width: min-content;
              left: 14%;
              top: 0;
              aspect-ratio: 2 / 3;
              clip-path: ellipse(100% 50% at 0% 50%);
              background: #ffffff;
              z-index: 1;
          }
              .swiper-button-next {
              right: 1% !important;
                  top: 56% !important;

            }
            .swiper-button-prev {
              left: 1% !important;
                  top: 56% !important;

            }
        }
        .why-choose.sourcing {
          padding: 50px;
        }
        /* ---------- RESPONSIVE MOBILE ADJUSTMENTS ---------- */
        @media (max-width: 766px) {
            .why-choose__content, 
            .contact-layout__cta-box, 
            .contact-layout__info-box { padding: 2.5rem 2rem; }
            .why-choose__title { font-size: 1.8rem; }
            .contact-layout__cta-box h2 { font-size: 2rem; }
            .directory-grid { grid-template-columns: 1fr; }
            .why-choose__image img {
              width: 100%;
              border-radius: 20px;
              object-fit: contain;
              height: 23%;
              left: 18%;
              top: 80%;
              position: absolute;
              z-index: 2;
          }
          .farm-stats__header {
              display: flex;
              flex-direction: column;
              align-items: center;
              margin-bottom: 20px;
                      text-align: center;
          }

          .stat-item:first-of-type{
            width: 100%;
          }
          .stats-grid {
              display: flex;
              grid-template-columns: repeat(2, 1fr);
              gap: 10px;
              flex-wrap: wrap;
          }
          .stat-item {
                background: var(--beige);
                border-radius: 20px;
                width: 48%;
            }
            .why-choose.sourcing {
            .why-choose__content {
                flex: 1 1 55%;
                padding: 45px 25px;
              }}
              .supply-section {
                background: #ffffff;
                padding: 30px 0px;
              }
              .compare-section,
              .supply-section
              {
                padding: 30px 0px;
              }
              .supply-header {
                text-align: center;
                margin-bottom: 10px;
            }
            .supply-header h2 {
                font-size: 37px;
                font-weight: 700;
                color: #1e2f23;
                line-height: 45px;
                letter-spacing: -0.02em;
            }
            .compare-section {

                .card h3 {
                  color: var(--black);
                  margin-bottom:2px;
                }
              }
              .rounded-edge,
              .squre-edge
              {
                background-color: var(--beige);
              }
              .why-choose.sourcing {
                  padding: 29px;
              }
                  .why-choose__image img {
                            height: 23%;

                  }
                      .why-choose__content {
                  padding: 0px;}
                                .why-choose__container {
                            display: grid;
                            grid-template-columns: 1fr 1fr;
                            gap: 40px;
                            align-items: center;
                        }

                            .why-choose__image img {
                  width: 100%;
                  border-radius: 20px;
                  object-fit: contain;
                  height: 23%;
                  left: 0;
                  top: 80%;
                  position: relative;
                  z-index: 2;
              }

                  .why-choose.sourcing {
                    .why-choose__content {
                        flex: 1 1 71%;
                        padding: 30px 25px;
                        z-index: 5;
                    }
                }
                .why-choose.sourcing {
                .why-choose__image {
                      display: contents;

                }}
                .supply-card {

                      justify-content: center;

                }
        }


        /* ========================================
   Responsive Media Queries 
   ======================================== */

/* Desktop & Large Tablets Adjustments */
@media (min-width: 821px) {
  .why-choose.sourcing .why-choose__container {
    flex-direction: row;
    min-height: 550px;
  }
  .why-choose.sourcing .why-choose__image {
    flex: 1 1 45%;
  }
  .why-choose.sourcing .why-choose__content {
    flex: 1 1 55%;
    padding: 45px;
  }
}

@media (min-width: 750px) and (max-width: 821px){
  .why-choose.sourcing .why-choose__image
  {
    display: none;
  }
     /* .why-choose__container, .how-to-use__container, .product-detail__container {
        grid-template-columns: revert-rule;
        gap: 30px;
    } */
     .why-choose__container {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-end;
    flex-direction: column;
}
.why-choose__content {
  width: 50%;
}
  .stat-item {
    padding: 10px;
  }
  .why-choose__image img {
    width: 100%;
    border-radius: 20px;
    object-fit: contain;
    height: 69%;
    left: -33%;
    top: 12%;
    position: absolute;
    z-index: 2;
  }
  .rounded-edge {
        position: absolute;
        height: 100%;
        width: min-content;
        left: 24%;
        background: #eaddc6;
        z-index: 1;
  }

  .hero__content{
    text-align: center;
  }
  .hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: center;
}

.hero__stats {
    display: flex;
    gap: 40px;
    justify-content: space-around;
}
.hero__text{max-width: 100%;}
.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 800px) and (max-width: 821px) {
      .hero__content {
        text-align: left;
      }
    .hero__buttons {
        display: flex;
        gap: 16px;
        margin-bottom: 40px;
        justify-content: flex-start;
    }
}

@media (min-width: 992px) {
  .contact-layout {
    flex-direction: row;
  }
  .contact-layout__cta-box {
    flex: 1 1 45%;
    padding: 4rem 3.5rem;
  }
  .contact-layout__info-box {
    flex: 1 1 55%;
    padding: 4rem 3.5rem;
  }
}

/* Tablets Landscape and Lower */
@media (max-width: 1024px) {
  .new-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card--large {
    grid-row: span 1;
  }
  .footer__container {
    /* grid-template-columns: repeat(2, 1fr); */
  }
  .compare-section {
    .filter-box {
        position: relative;
        min-width: fit-content;
    }
}
}

/* Tablets Portrait & Large Mobile Viewports */
@media (max-width: 768px) {
  .hero__container,
  .why-choose__container,
  .how-to-use__container,
  .product-detail__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .logo {
        width: max-content !important;
  }
  /* .nav {
    display: none; 
  } */

  .hero__image img {
    max-width: 55%;
  }

  .new-products__grid {
    grid-template-columns: 1fr;
  }

  .product-detail__gallery {
    flex-direction: column;
  }

  .product-detail__thumbnails {
    flex-direction: row;
    justify-content: center;
  }

  .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    bottom: 2% !important;
  } 
 
  .two-no {
    display: block !important;}
    .swiper-button-next i, .swiper-button-prev i {
      font-size: 70px;
  }
  .swiper-button-prev, .swiper-button-next {
    width: 20px !important;
    top: 97% !important;
    transform: scale(0.4) !important;
  }
  .swiper-button-next {
      right: 4% !important;
  }
    .swiper-button-prev {
      left: 4% !important;
  }
  .hero__image-bg {
    position: absolute;
    width: 100%;
    height: 80%;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(230, 226, 222, 1) 29%, rgba(230, 226, 222, 0) 100%);
    border-radius: 80px 80px 0 0;
}
.trending-card__image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 2fr));
    gap: 15px;
    margin-top: 1.5rem;
}
  .farm-stats {
    padding: 30px 5px;
  }
  .fa-chevron-down {
    --fa: "\f078";
    display: none !important;
}
.dropdown-header .learn-btn {
    border: none;
    background: var(--green);
    color: white;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}
    header .btn {
      display: none;
    }

        .best_for {
        display: grid;
        background: var(--green);
        width: 47px !important;
        padding: 15px 5px;
        border-radius: 59%;
        /* height: 50px; */
        justify-items: center;
        /* line-height: 30px; */
        font-size: 6px !important;
        text-transform: capitalize;
        position: absolute;
        right: -5%;
        top: -356% !important;
        color: white;
    }
    
}

/* Small Smart Phones (Standard Mobile View) */
@media (max-width: 480px) {
  .hero__buttons, .header__actions {
    width: 100%;
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }

  .hero__stats {
    justify-content: space-between;
    gap: 15px;
  }

  .trending-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .filters {
    flex-direction: column;
    align-items: stretch;
  }

  .left-filters {
    flex-direction: column;
  }

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


.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1f2937;
}
@media (max-width: 992px) {

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        /* padding: 100px 0 30px; */
        box-shadow: 10px 0 30px rgba(0,0,0,.1);
        transition: all .4s ease;
        z-index: 1000;
    }

    .nav.active {
        left: 0;
    }

    .nav__link {
        width: 100%;
        padding: 16px 30px;
        border-bottom: 1px solid #f1f1f1;
    }

    .header__actions {
        display: none;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.4);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        z-index: 100;
    }

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