:root {
  --primary-color: #688539;
  --secondary-color: #EFE8D8;
  --heading-color: #022B0D;
  --para-color: #757B77;
  --button-color: #6B8E23;
  --second-button-color: #DA9D2A;
  --background-color: #F4F3E9;
  --banner-bg-color: #00280A;
  --badge-color: #FF0B0B;
  --second-badge-color: #063312;
  --Heading-font: "DM Sans", sans-serif;
  --para-font: "Work Sans", sans-serif;

}

body {
  /* font-family: "Mulish", sans-serif!important;
  font-family: "Source Sans 3", sans-serif !important; */
  padding: 0px;
  margin: 0px;

}

a {
  text-decoration: none !important;
}

/* topbar css */

.topbar-section {
  z-index: 1055;
  background-color: #d7f5a9;
  height: 50px;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-family: var(--para-font) !important;
  color: var(--heading-color);
  letter-spacing: .1rem;
  padding: 1rem 0;

}

.topbar-section p {
  margin: 0;
}

.topbar-center span {
  text-align: center;
  font-size: 16px;
}

.topbar-right {

  display: flex;
  align-items: center;
  gap: 5px;

}

.topbar-right h3 {

  font-size: 16px;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
  font-size: 16px;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* navbar css */
.navbar {
  top: 40px !important;

  position: fixed !important;
  z-index: 1040;
  padding-top: 120px;
  width: 100%;
  background-color: #efe8db !important;
  padding: 0.5rem 1rem !important;
  gap: 10px;
}

.navbar-nav {
  gap: 10px;
}

.navbar .nav-link {
  font-size: 16px !important;
}

.offcanvas {
  width: 350px !important;
}

.offcanvas .navbar-nav .nav-link {
  font-size: 1rem !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
}

.offcanvas-header button i {
  color: black;
  font-size: 22px;
}

.logo {
  max-height: 120px;
}

.nav-logo-sm {
  display: none;
}

.navbar-nav {
  gap: 30px;
}

.navbar-nav li a {
  font-family: var(--Heading-font) !important;
  font-weight: bold;
  color: var(--heading-color);
}

.navbar-right i {
  font-size: 22px;
  color: #222;
}

.search-overlay {

  top: 186px;
  left: 0;
  right: 0;
  z-index: 1050;
  display: none;
  transition: all 0.3s ease;
}

.search-overlay.active {
  display: block;
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* hero section  */
.hero-section {
  margin-top: 140px;
}

.image-sm {
  display: none;
}


/* just arrived section  */

.just-arrived-section {
  padding-top: 60px;
  position: relative;
  background: #fbfdf6;
}

.top-left-bg,
.bottom-right-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background-size: cover;
  opacity: 0.2;
}



.just-arrived-swiper-container {
  margin-top: 35px;
}

.just-arrived-heading {
  color: #4b6b2d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.product-swiper-arrow {
  position: absolute;
  right: 0;
  top: 71%;
  transform: translateY(-50%);
}

.new-product-card {
  background-color: #fff;
  width: 100%;
  margin: 10px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.new-product-card:hover {
  background-color: #68853910;
}

.new-product-card-img::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000000;
  opacity: 0;
  transition: all 0.3s ease;
  content: "";
  display: none;
}

.new-product-card:hover .new-product-card-img::before {
  opacity: 0.2;
  display: block;
  background-color: #6885399c;
  z-index: 1;
}

.view-more-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 50px;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
}

.new-product-card:hover .view-more-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.new-product-card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 10px 10px 0 0;

}

.off-section {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #d89200;
  padding: 3px 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 600
}

.like {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 20px;
  color: rgb(184, 4, 4);
  cursor: pointer;
  z-index: 2;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.like:hover {
  background-color: rgb(184, 4, 4);
  color: #fff;
}

.new-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-product-card-content {
  padding: 15px 10px;
}

.new-product-card-content h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.new-product-card-content .desc {
  color: #00000090;
  font-size: 0.9rem;
  margin-bottom: 7px;
}


.cart-img {
  transition: all 0.3s ease;
  cursor: pointer;
}

.cart-img:hover {
  transform: translateY(-5px);
}

.price {
  font-size: 1.25rem;
  color: #000;
  font-weight: 600;
}

.home-counter {
  background-color: var(--primary-color);
  color: #fff;
  padding: 3px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.home-counter-action {
  cursor: pointer;
}


/* just arrived products section  */

.just-arrived-products-container {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  /* justify-content: space-between; */
  margin-bottom: 60px;
}

.just-arrived-product-wrap {
  width: calc((100% - 90px) / 4);
}

.feature-product-section {
  padding-bottom: 60px;
}






/* subhero section  */
.sub-header-section {
  margin-top: 186px;
  height: 200px;
  background: url("./assets/sub-header-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sub-header-section h1 {
  color: var(--heading-color);
}




.title-underline {
  width: 160px;
  height: 3px;
  background-color: #ffa804;
}


.product-card:hover .product-overlay {
  opacity: 1;
}

.product-card:hover .product-overlay i {
  transform: scale(1) translateY(0);
}


.swiper-arrows .swiper-button-prev,
.swiper-arrows .swiper-button-next {
  position: static !important;
  width: 30px;
  height: 30px;
  border: 1px solid var(--banner-bg-color);
  border-radius: 50%;
  color: var(--heading-color);
}

.swiper-arrows .swiper-button-prev.clicked,
.swiper-arrows .swiper-button-next.clicked {
  background-color: #ddd;
}

.swiper-arrows .swiper-button-prev::after,
.swiper-arrows .swiper-button-next::after {
  font-size: 14px;

}

.swiper-arrows .swiper-button-prev.swiper-button-disabled,
.swiper-arrows .swiper-button-next.swiper-button-disabled {
  opacity: 0;
  cursor: not-allowed;
  pointer-events: none;
}


.swiper-wrapper {
  height: fit-content !important;
}



/* trending category */

.trend-view {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background-color: var(--second-button-color);
  padding: 8px 15px;
  border-radius: 5px;
  border: none;
  outline: none;
  transition: all 0.3s ease-in-out
}

.trend-view a {
  text-decoration: none;
  color: #fff;
}

.trend-view:hover {
  background-color: var(--primary-color);
}



/* top category */

.trending-category {
  background-color: #f4e8c51f;
  position: relative;
  padding: 60px 0;
}

.trending-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.trending-title {
  text-align: center;
  font-family: var(--Heading-font);
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 600;
}

.section-header .line {
  width: 8%;
  height: 2px;
  background-color: var(--second-button-color);
}

.section-header h2 {
  font-size: 2rem;
  margin: 10px 0;
}

.section-icon {
  width: 45px;
  height: auto;
  margin: 10px 0;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.category-item .circle {
  max-width: 220px;
  max-height: 220px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}



.category-item .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.category-item:hover .circle {
  transform: translateY(-10px);
}




.category-item button {
  padding: 0.5rem 2rem;
  background-color: #d89200;
  color: white;
  border: none;
  border-radius: 20px;
  transition: background 0.3s ease;
  cursor: pointer !important;
  max-width: 200px;
  width: 100%;
}

.category-item button:hover {
  background: linear-gradient(135deg, #ffb347, #ffcc33);
}

.section-bg {
  position: absolute;
  bottom: 0;
  right: 10px;
  max-width: 990px;
  width: 100%;
  max-height: 600px;
  height: 100%;
  background: url('organicwala_assets/assets/product/house-mountain.png') no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}


/* banner css */

.organic-banner-section {
  padding-top: 60px;
  margin: 0 auto
}

.jewelry-banner {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 12px;
  border: 1px solid var(--banner-bg-color);
}

.jewelry-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.jewelry-banner:hover img {
  transform: scale(1.05);
}

.banner-text {
  position: absolute;
  top: 45px;
  left: 36px;
  color: #fff;
  z-index: 1;
}

.banner-text h3 {
  font-size: 17px;
  margin-top: 7px;
  margin-bottom: 10px;
  color: #6E533E;
  font-family: var(--para-font);
  font-style: italic;
}

.banner-text h4,
.banner-text h5 {
  font-family: var(--Heading-font);
  color: var(--heading-color);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}


.banner-large {
  max-height: 300px;
}

.banner-small {
  height: 100%;
  min-height: 220px;
}

.banner-btn {
  background-color: var(--button-color);
  padding: 4px 30px;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer !important;
  font-size: 20px;
}

.banner-btn:hover {
  background-color: #fff;
  color: var(--button-color);
  border: 1px solid var(--button-color);
}

.banner-btn .shop-link {
  text-decoration: none;
  color: #fff;
}

.banner-btn .shop-link:hover {
  text-decoration: none;
  color: var(--heading-color);
}




/* return policy */

.info-strip {
  height: 200px;
  background-image: url(./assets/product/return-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #688539;
  padding: 1.5rem 0;
  color: #fff;
}

.strip-container {
  padding: 30px;
  display: flex;
  justify-content: space-around;

}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}

.info-item p {
  font-size: 20px;
  text-align: center;
}

/* Special Products */
.special-products {
  /* background-image:url('./assets/product/tructor.png'); */
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #1f6440;
  padding: 1.5rem 0;
  color: #fff;
  opacity: 5px;
  margin-top: 60px;
  position: relative;
}

.bottom-left-img {
  position: absolute;

  bottom: 35px;
  right: 0;
  width: 100%;
  max-width: 170px;
  z-index: 0;
}

.special-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.special-card {
  position: relative;
  padding: 5rem 2rem 2rem 0rem;
  display: flex;
  flex-direction: column;
}

.tab {
  position: absolute;
  /* left: 190px; */
  /* top: 1px; */
  background-color: var(--second-button-color);
  color: #fff;
  padding: 1rem 3.2rem;
  border-radius: 30px;
  font-size: 25px;
}

.spe-text {
  display: block;
}

.special-card h3 {
  font-size: 2rem;
  margin: 1rem 0;
  color: #333;
}

.spe-txt-1 {
  color: var(--secondary-color);
  font-family: var(--Heading-font);
  font-size: 25px;
  font-weight: 700px;
}

.spe-txt-2 {
  color: var(--secondary-color);
  font-family: var(--para-font);
  font-size: 18px;
  font-weight: 300px;
  letter-spacing: 3px;

}

.special-card .btn {
  width: 200px;
  /* margin-left: 20px;
margin-top: 3rem; */
  background-color: var(--second-button-color);
  color: #fff;
  /* padding: 0.8rem 5.5rem; */
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
  height: 50px;
}

.special-card .btn:hover {
  background-color: #026c08;
}

.bottom-curve {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: auto;
}

.sale-timer-section {
  margin-top: 40px;
  /* padding: 40px 0; */

}

.sale-title {
  color: #4b6b2d;
  font-family: var(--Heading-font);
  font-size: 26px;
  font-weight: semibold;
}

.sale-subtitle {
  font-family: var(--para-font);
  font-size: 1.2rem;
  color: var(--para-color);
}

.separator {
  font-size: 1.6rem;
  color: #000;
  margin: 0 10px;
}

.hurry-text {
  font-family: var(--para-font);
  color: var(--para-color);
  font-size: 20px;
}

#sale-timer {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
}

.sale-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.timer-box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.product-title {
  color: #4b6b2d;
  font-size: 1rem;
  font-weight: 600;
}

.currency-icon img {

  width: 20px;
  height: 20px;
}

.product-price {
  font-size: 1.1rem;
  color: #4b6b2d;
}

.product-note {
  font-size: 0.85rem;
  color: #777;
}

.discount-text {
  font-size: 0.95rem;
  color: #28a745;
}

/* testimonial css */

.swiper-testimonial-section {
  margin-top: 30px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

  /* background: url('./assets/testimonial-bg.jpg') no-repeat center center;
background-size: cover; */
  padding: 60px 0;
  /* height: 600px; */
  opacity: 0.9;
}

.green-heading {
  font-family: var(--Heading-font);
  color: var(--heading-color);
  font-size: 2.3rem;
  /* position: relative; */
  /* margin-bottom: 40px; */
}

.testimonial-card {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-card p {
  margin: 10px 0;
  font-size: 14px;
  color: #333;
}

.shadow-effect img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px auto;
}

.testimonial-card .name {
  font-weight: bold;
  font-size: 16px;
}

.testimonial-card .designation {
  font-size: 13px;
  color: #777;
}

.testimonial-slide {
  padding-bottom: 60px;
}

.testimonial-swiper-3 .swiper-slide.item {
  opacity: .2;
  transform: scale3d(0.8, 0.8, 1);
  transition: all 0.3s ease-in-out;
}

.testimonial-swiper-3 .swiper-slide.item.center {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* Swiper arrows */
.swiper-testimonial-prev,
.swiper-testimonial-next {
  color: #2e7d32 !important;
  background: #ffffff !important;
  border-radius: 50% !important;
  width: 60px !important;
  height: 60px !important;
  top: 40% !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.swiper-testimonial-pagination {
  margin-top: 20px;
}

.swiper-pagination-3 {
  bottom: 10px !important;
}

.swiper-testimonial-pagination .swiper-pagination-bullet {
  background: #2e7d32;
  opacity: 0.5;
}

.swiper-testimonial-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* newsletter css */
.newsletter-organic {
  background: url('./assets/newsletter\ -bg.webp') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
  min-height: 30vh;
  display: flex;
  align-items: center;
}

.newsletter-organic .container {
  position: relative;
  z-index: 2;
}

.newsletter-text {
  text-align: left;
  padding-right: 30px;
}

.newsletter-text h2 {
  font-size: 2.3rem;
  color: #2e7d32;
  font-weight: 500;
  margin-bottom: 20px;
}

.newsletter-text p {
  color: #4b4b4b;
  font-size: 1.1rem;
}

.newsletter-form {
  position: relative;
  display: flex;
  background: #e8f5e9;
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 18px 25px;
  border: none;
  /* background: transparent; */
  font-size: 1rem;
  color: #2e7d32;
}

.newsletter-form input:focus {
  outline: none;

  background: #ffffff;

  box-shadow: 0 0 10px rgba(129, 199, 132, 0.5);
  transition: all 0.3s ease;
  color: #2e7d32;
}

.newsletter-form input::placeholder {
  color: #81c784;
}

.newsletter-form button {
  background: #DA9D2A;
  border: none;
  padding: 0 30px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: linear-gradient(45deg, #43a047, #66bb6a);
}


/* footer css*/
.footer-container {
  gap: 30px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}



.organic-footer {
  background-color: #688539;
  position: relative;
  height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: #fff;
  padding-top: 40px;

  position: relative;
}

.organic-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('organicwala_assets/assets/product/bg.png') no-repeat center;
  background-size: cover;
  opacity: 0.2;
  z-index: 1;
}

.organic-footer .footer-content,
.organic-footer .footer-container {
  position: relative;
  z-index: 2;
}

.footer-content {
  flex: 1;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 20px;
}

.link-column {
  width: calc((100% - 120px) / 5);
}

.link-column h5 {
  font-size: 20px;
  margin-bottom: 15px;
}

.link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-column ul li {
  margin-bottom: 10px;
}

.link-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.link-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom-image img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-icon:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.arrow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.link-column ul {
  list-style: none;
  padding-left: 0;
}

.link-column li {
  margin-bottom: 8px;
}

.link-column .icon {
  margin-right: 10px;
  color: #fff;
  font-size: 15px;

  transition: transform 0.3s ease, color 0.3s ease;
}

.link-column h5 i {
  margin-right: 8px;
  color: #043807;
}

li:hover .icon {
  transform: translateX(5px);
  /* Move icon slightly right on hover */
  color: #0c3304;
  /* Change icon color on hover */
}

.footer-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0;
  max-width: 1500px;
  margin: 0 auto;
  gap: 10px;
}

.footer-bottom p {
  color: #fff;
  margin: 0;
}

.footer-bottom .social-icons a {
  color: #fff;
  font-size: 18px;
  margin-left: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-bottom .social-icons a:hover {
  color: #1a2a00;
  transform: scale(1.2);
}


/* sticky cart */
.sticky-cart {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 100%;
  max-width: 600px;
  background-color: #b0d870;
  color: #fff;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.sticky-cart-bottom {
  background-color: var(--primary-color);
  padding: 10px;
}

.sticky-cart-bottom a {
  color: #fff;
}

.sticky-cart-top {
  background-color: #d7f5a9;
  color: var(--heading-color);
  padding: 5px;
  border-radius: 20px 20px 0 0;
}

.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #b0d870;
  ;
  height: 74px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  color: var(--primary-color);
  display: none;
}

.sticky-footer p {
  margin: 0;
  font-size: 0.8rem;
}




/* Plate Bounce Animation */
.bounce {
  animation: bounce 1.5s infinite;
  position: absolute;
  /* bottom: 50px; 
  left: 20px; */
  transition: all 0.5s ease-in-out;
}

/* Bounce Animation Keyframes */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Arrow Bounce Animation */
.bounce-arrow {
  max-width: 98px;
  width: 100%;
  animation: bounce-arrow 1.5s infinite;
  margin-top: 20px;
  cursor: pointer;
  right: 217px;
  position: absolute;
  bottom: 20px;
  transform: rotateY(-42deg);
  transition: transform 0.5s ease-in-out;
}

/* Bounce Arrow Keyframes */
@keyframes bounce-arrow {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(0);
  }
}


.arrow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.link-column ul {
  list-style: none;
  padding-left: 0;
}

.link-column li {
  margin-bottom: 8px;
}

.link-column .icon {
  margin-right: 10px;
  color: #fff;
  font-size: 15px;
}

.link-column h5 i {
  margin-right: 8px;
  color: #043807;
}

/* certification css */
.certifications-section {
  background: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-content>div {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

.marquee-content img {
  height: 80px;
  width: auto;
  margin-right: 30px;
  display: block;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}




/* Responsive */

@media screen and (max-width: 1260px) {

  .link-column {
    width: calc((100% - 60px) / 3) !important;
  }

  .footer-logo {
    width: 100% !important;
    text-align: center
  }

}

@media screen and (max-width: 1200px) {
  .just-arrived-product-wrap {
    width: calc((100% - 60px) / 3);
  }

  .special-card h3 {
    margin: 3.5rem 0 !important;
  }

  .category-item .circle {
    width: 180px;
    height: 180px;
  }

  .category-item button {
    padding: 5px 10px;
    width: fit-content;
  }

  .banner-text h4,
  .banner-text h5 {
    font-size: 17px;
  }

  .banner-text h3 {
    font-size: 15px;
  }

  .special-card {
    padding: 1rem 2rem 3rem 2rem;
  }

  .spe-txt-1 {
    font-family: var(--Heading-font);
    font-size: 20px;
    font-weight: 700px !important;
    margin-top: 20px;
  }

  .spe-txt-2 {
    font-size: 16px;
  }

  .special-card .btn {
    width: 250px !important;
  }
}

@media screen and (max-width: 1194px) {
  .bottom-curve {
    bottom: -10px;
  }

  .special-card .btn {
    width: 350px !important;
  }
}

@media screen and (max-width: 991px) {
  .organic-banner-section {
    padding-top: 40px;
  }

  .just-arrived-section {
    padding-top: 40px;
  }

  .trending-category {
    padding: 40px 0;
  }

  .feature-product-section {
    padding-bottom: 40px;
  }

  .just-arrived-products-container {
    margin-bottom: 40px;
  }

  .just-arrived-products-container {
    gap: 5px;
  }

  .just-arrived-product-wrap {
    width: calc((100% - 10px) / 2);
  }

  .category-item .circle {
    width: 200px;
    height: 200px;
  }

  .navbar-nav {
    gap: 0;
  }

  .offcanvas-header {
    padding-top: 80px !important;
  }

  .banner-small {
    height: 100%;
    max-height: 220px;
  }


  .banner-large {
    max-height: 220px;
  }

  .navbar-toggler-icon {
    width: 2.2rem !important;
    height: 2.2rem !important;
  }

  .footer-logo img {
    width: 70px;
    margin-bottom: 20px;
  }

  .link-column h5 {
    font-size: 1.3rem;
  }

  .link-column {
    width: calc((100% - 30px) / 2) !important;
  }

  .footer-logo {
    width: 100% !important;
    text-align: center
  }

  .organic-footer {
    height: auto;
    padding-bottom: 150px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .link-column h5 {
    font-size: 1rem;
  }

  .link-column {
    width: calc((100% - 10px) / 2);
    font-size: 0.7rem;
  }

  .hero-carousel {
    margin-top: 146px !important;
  }

  .bounce-arrow {

    right: 253px;
    position: absolute;
    bottom: 50px;
    transform: rotateY(-42deg);
    transition: transform 0.5s ease-in-out;
    width: 57px;
  }

  .bounce-arrow {
    max-width: 70px;
    right: 296px;
  }

  .bottom-left-img {
    position: absolute;
    bottom: 0;
    right: 100px;
    width: 150px;
    z-index: 0;
  }
}

@media (max-width: 768px) {
  .topbar-center p {
    font-size: 14px;
  }

  .topbar-right h3 {
    font-size: 14px;
  }

  .special-card {
    flex-direction: column;
  }

  .navbar-nav {
    gap: 3px;
  }

  .btn-hero {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .sticky-cart {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    width: 100%;

    background-color: #b0d870;
    color: #fff;
    border-radius: 20px 20px 0 0;
    text-align: center;

  }

  .info-strip {
    background-image: none;
  }

  .category-item .circle {
    width: 180px;
    height: 180px;
  }

  .topbar-center {
    display: none;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .special-container {
    flex-direction: column;
    align-items: center;
  }

  .special-card {
    flex-direction: column;
  }

  .special-card .btn {
    margin-top: 0;
  }

  .special-card .btn {
    width: 200px !important;
  }

  .info-item {
    gap: 20px;
  }

  .info-item img {
    width: 40px;
    height: 40px;
  }

  .info-item p {
    font-size: 12px;
    font-weight: 700;

    padding-left: 2px;
  }

  .jst-arv-title {
    font-size: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .view-all {
    font-size: 13px;
  }

  .sale-title {
    font-size: 18px;
  }

  .sale-subtitle {
    font-size: 13px;
  }

  .green-heading {
    font-size: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .swiper-testimonial-prev,
  .swiper-testimonial-next {
    display: none !important;
  }

  .newsletter-text {
    text-align: center;
    padding: 0 0 30px 0;
  }

  .newsletter-form {
    flex-direction: row;

  }

  .newsletter-form input {
    padding: 19px 89px;
    text-align: center;
  }

  .newsletter-form button {
    width: 100%;
    /* padding: 0; */
  }

  .newsletter-text h2 {
    font-size: 20px;
    text-align: center !important;
  }

  .newsletter-text p {
    font-size: 13px;
  }

  .category-item .circle {
    width: 140px;
    height: 140px;
  }

  .category-item button {
    padding: 7px 20px;


  }

  .footer-container {
    flex-direction: column;
  }

  .footer-logo {
    text-align: center;
  }

  .tab {
    padding: 1rem 2.2rem;
  }

  .top-left-bg,
  .bottom-right-bg {
    width: 200px;
    height: 200px;
  }

}

@media screen and (max-width: 991px) {
  .hero-section {
    margin-top: 117px;
  }
  
}

@media screen and (max-width: 767px) {
  .nav-logo {
    max-height: 80px;
  }

  .navbar-nav li a i {
    font-size: 1.2rem !important;
  }

  .hero-section {
    margin-top: 144px;
  }

  .sub-header-section {
    margin-top: 102px;
    height: 150px;
  }

  .search-overlay {
    top: 102px;
  }

  .image-sm {
    display: block;
  }

  .image-lg {
    display: none !important;
  }

  .navbar-toggler {
    border: none !important;
    font-size: 0.8rem !important;
  }

  .navbar {
    padding: 0 !important;
  }

  .navbar i {
    font-size: 2rem !important;
  }

  .navbar .nav-link {
    font-size: 1rem !important;
  }

  /* .new-product-card-img {
    height: 200px;
  } */

}


@media screen and (max-width: 600px) {
  .sticky-cart {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100%;
    background-color: #b0d870;
    color: #fff;
    border-radius: 20px 20px 0 0;
    text-align: center;
  }

}


@media (max-width: 575px) {
  .footer-content .row {
    flex-direction: column;
    align-items: center;
  }

  .link-column {
    width: 100% !important;
  }

  .footer-logo {
    width: 100% !important;
    text-align: center
  }

  .col-2,
  .col-3 {
    width: 100%;
    max-width: 400px;
  }

  .footer-bottom-image img {
    margin-top: 30px;
  }

  .sticky-footer {
    display: flex;
  }

  .sticky-cart {
    display: block;
  }

  .new-product-card-content h4{
    font-size: 1rem !important;
  }

 
}


@media (max-width: 545px) {
  .newsletter-form input {
    padding: 19px 54px;
    text-align: center;
  }

  .carousel-caption-wrapper {
    left: 6%;
  }

  .sticky-cart {
    bottom: 74px !important;
  }

  .organic-footer::before {
    background-position: left;
  }
}



@media screen and (max-width: 483px) {
  .category-item .circle {
    width: 100px;
    height: 100px;
  }

}


@media screen and (max-width: 450px) {
  .newsletter-form input {
    padding: 19px 10px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .hero-section {
    margin-top: 146px !important;
  }
}

@media screen and (max-width: 370px) {
  .newsletter-form button {
    padding: 0px !important;
  }

  .just-arrived-products-container {
    gap: 0px;
    row-gap: 10px;
  }

  .just-arrived-product-wrap {
    width: 100%;
  }

}