/*style.css - Main styles for homepage sections */

/* Navigation Styles */

/* Header/Navigation start*/
.home-screen {
  margin: 0em auto;
}

.header {
  padding: 1.2em 0;
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  margin: 1em auto;
  position: sticky;
  top: 10px;
  z-index: 1000;
  width: 90%;
  margin-bottom: 15px;
}

.alert-danger{
    color:red;
    font-size: 14px;
    margin-bottom: 10px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 1.5em;
}

.nav__logo {
  font-weight: 600;
  color: var(--primary-green);
  width: auto;
  display: flex;
  justify-content: center;
}

.nav__logo img {
  height: 60px;
  width: 100%;
  object-fit: contain;
  border: none !important;
}

.nav__menu {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__wrapper {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.hamburger {
  display: block;
  width: 22px;
  height: 2.4px;
  background: #236255;
  position: relative;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2.4px;
  background: #236255;
  transition: all 0.3s ease-in-out;
  left: 0;
  border-radius: 3px;

}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(8px);
}

/* Hamburger Animation */
.nav.active .hamburger {
  background: transparent;
}

.nav.active .hamburger::before {
  transform: rotate(45deg);
}

.nav.active .hamburger::after {
  transform: rotate(-45deg);
}

.nav__item {
  position: relative;
}

.nav__link {
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  /*padding: var(--spacing-xs) 0;*/
  font-size: 18px;
  font-family: "General Sans", sans-serif;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: max-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
  z-index: 100;
  padding: 0;
  display: flex;
}

.nav__item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  color: var(--text-dark);
  text-decoration: none;
  padding: 10px var(--spacing-md);
  display: block;
  transition: background-color 0.3s ease;
  font-size: 16px;
  font-family: "General Sans", sans-serif;
}


.nav__link-arrow {
  width: 9px;
  height: 9px;
  border: solid #236255;
  border-width: 0 3px 3px 0;
  display: inline-block;
  transform: rotate(45deg);
  margin-top: -4px;
}

.nav__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  cursor: pointer;
}

.nav__actions button {
  background: none;
  border: none;
  cursor: pointer;
  width: 2em;
  height: 2em;
  padding: 0;
}

.nav__actions button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.btn-cart {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #236256;
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
    padding: 2px 6px;
    line-height: 1;
}


/* Header/Navigation end*/

/* Banner Section start*/
.banner-section {
  /* padding: 2rem 0; */
  border-radius: 1em;
  width: 90%;
  margin: 40px auto;
  margin-top: 0px;
  padding-top: 10px;
}

.banner-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 0 1.5rem; */
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
}

.main-banner {
  position: relative;
  /* background: var(--light-green); */
  border-radius: 1em;
  overflow: hidden;
  height: 530px;
}

.banner-slide {
  height: 530px;
  position: relative;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.side-banner {
  /* background: var(--bg-light); */
  border-radius: 16px;
  /* padding: 1.5rem; */
  position: relative;
  height: 530px;
  overflow: hidden;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--white) !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.owl-nav button.owl-prev {
  left: 20px;
}

.owl-nav button.owl-next {
  right: 20px;
  color: #236255 !important;
}

.owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.owl-dot span {
  width: 8px !important;
  height: 8px !important;
  margin: 0 4px !important;
  border-radius: 50%;
  border: 1px solid white;
  background-color: transparent !important;
}

.owl-dot.active span {
  background: var(--white) !important;
}

/* Banner Section end*/

/* Side Banner start*/
.side-banner {
  /* background: var(--bg-light); */
  border-radius: var(--radius-lg);
  /* padding: var(--spacing-md); */
  position: relative;
}

.trending-tag {
  /* position: absolute; */
  /* top: var(--spacing-sm);
    right: var(--spacing-sm); */
  background: var(--primary-green);
  color: var(--white);
  padding: 0.5rem 2em;
  border-radius: 50px;
  font-size: 15px;
  width: auto;
  margin: 0 auto;
}

/* Side Banner end*/

/* Top Sellers Section start*/
/* Top Sellers Section Styles */
.ts-top-sellers {
  padding: 20px 0px;
  width: 90%;
  margin: 0 auto;
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  position: relative;
}

.ts-container-tab-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.ts-section-title {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  width: 90%;
  margin-left: 15%;
}

.ts-tab-switcher {
  display: flex;
}

.ts-tab-button {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid black;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  margin-left: 10px;
  transition: all 0.3s ease;
  color: #236255;
  font-weight: 500;
}

.ts-tab-button.ts-active {
  background: #2d6a4f;
  color: white;
  border-color: #2d6a4f;
  font-family: "General Sans", sans-serif;
}

.ts-products-slider {
  position: relative;
}


.ts-product-image-container {
  margin-bottom: 15px;
  background: #f2f2f2;
  border-radius: 4px;
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.ts-product-card:hover .ts-product-image-container .ts-product-image {
  transform: scale(1.1);
}

.ts-product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.ts-product-title {
  font-size: 20px;
  font-weight: 600;
  /* margin: 0 0 10px; */
}

.ts-price-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.ts-current-price {
  font-weight: bold;
  font-size: 16px;
  margin-right: 10px;
}

.ts-original-price {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
}

.ts-add-to-cart-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 30px;
  background: #98c104;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.ts-add-to-cart-btn:hover {
  background: #7cb342;
}

.ts-no-products {
  text-align: center;
  padding: 40px;
  font-size: 16px;
  color: #666;
}

/* Navigation arrows customization */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: #2d6a4f !important;
  color: white !important;
  font-size: 24px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ts-products-slider .owl-nav button.owl-prev {
  left: -20px;
  background-color: #73b8aa !important;
}

.ts-products-slider .owl-nav button.owl-next {
  right: -20px;
  background-color: #73b8aa !important;
}

/* Top Sellers Section end*/

/* Carousel Navigation start*/
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px !important;
  height: 40px !important;
  background: var(--white) !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.owl-nav button.owl-prev {
  left: 5px;
  color: #236255 !important;
}

.owl-nav button.owl-next {
  right: 5px;
}

.owl-dots {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
}

.owl-dot span {
  width: 8px !important;
  height: 8px !important;
  margin: 0 4px !important;
  background: rgba(255, 255, 255, 0.5) !important;
}

.owl-dot.active span {
  background: var(--white) !important;
}

/* Carousel Navigation end*/

/* Features Section Styles start*/
.features-section {
  text-align: center;
  width: 90%;
  margin: 50px auto;
}

.features-section .container {
  width: 100%;
  margin: 0 auto;
  /* padding: 0 15px; */
}

.features-content {
  margin: 0 auto;
}

.features-title {
  font-family: "General Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  width: 35%;
  margin: 0 auto;
  margin-bottom: 16px;
  color: #000;
}

.features-subtitle {
  font-family: "General Sans", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.feature-icon img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.feature-name {
  font-family: "General Sans", sans-serif;
  line-height: 1.1;
  font-size: 25px;
  font-weight: 600;
  color: #000;
}

/* Different border radius for each feature icon with hover animations */
.features-grid .feature-item:nth-child(1) .feature-icon {
  border-radius: 42% 58% 54% 46% / 44% 56% 44% 56%;
  background-color: #c6db62;
  transition: all 0.7s ease-in-out;
  width: 175px;
  height: 180px;
}

.features-grid .feature-item:nth-child(1) .feature-icon:hover {
  border-radius: 51% 49% 46% 54% / 54% 46% 54% 46%;
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 5px 15px rgba(198, 219, 98, 0.4);
}

.features-grid .feature-item:nth-child(2) .feature-icon {
  border-radius: 32% 68% 30% 70% / 61% 31% 69% 39%;
  background-color: #d6c3dc;
  transition: all 0.5s ease-in-out;
  width: 175px;
  height: 180px;
}

.features-grid .feature-item:nth-child(2) .feature-icon:hover {
  border-radius: 68% 32% 70% 30% / 31% 61% 39% 69%;
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 5px 15px rgba(214, 195, 220, 0.4);
}

.features-grid .feature-item:nth-child(3) .feature-icon {
  border-radius: 46% 54% 57% 43% / 28% 41% 59% 72%;
  background-color: #fad472;
  transition: all 0.7s ease-in-out;
  width: 175px;
  height: 180px;
}

.features-grid .feature-item:nth-child(3) .feature-icon:hover {
  border-radius: 54% 46% 43% 57% / 41% 28% 72% 59%;
  transform: rotate(7deg) scale(1.05);
  box-shadow: 0 5px 15px rgba(250, 212, 114, 0.4);
}

.features-grid .feature-item:nth-child(4) .feature-icon {
  border-radius: 50% 50% 42% 58% / 68% 69% 31% 32%;
  background-color: #dd6b30;
  transition: all 0.7s ease-in-out;
  width: 175px;
  height: 180px;
}

.features-grid .feature-item:nth-child(4) .feature-icon:hover {
  border-radius: 60% 40% 58% 42% / 38% 59% 41% 62%;
  transform: rotate(-7deg) scale(1.05);
  box-shadow: 0 5px 15px rgba(221, 107, 48, 0.4);
}

/* Hover effect for the icons inside feature items */
.feature-icon img {
  transition: transform 0.5s ease;
}

.feature-icon:hover img {
  transform: scale(1.1);
}

/*  styles for a smoother experience */
.feature-item {
  cursor: pointer;
}

.feature-name {
  transition: color 0.3s ease;
}

.feature-item:hover .feature-name {
  color: #333;
}

/* Premium Product Section Styles */
.premium-product-section {
  padding: 20px 0 60px;
  width: 90%;
  margin: 0 auto;
  padding-top: 0px;
}

.desktop-banner {
  display: block;
  width: 100%;
}

.mobile-banner {
  display: none;
  width: 100%;
}

/* Styling for the container */
.product-image-sec {
  position: relative;
}

/* Circle text container positioning */
.circle-text-container {
  position: absolute;
  top: -60px;
  left: -28px;
  width: 150px;
  height: 150px;
  z-index: 10;
  display: none;
}

/* The actual circular text styling */
.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 10s linear infinite;
  color: #236255;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

/* Styling for images within the circle */
.circle-text span img {
  height: 15px;
  width: 15px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

/* Rotate animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Position each letter/image around the circle */
.circle-text span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform-origin: center center;
  /* Set rotation origin to the center */
}

/* Calculate the rotation for each span */
.circle-text span:nth-child(1) {
  transform: rotate(0deg);
}

.circle-text span:nth-child(2) {
  transform: rotate(12deg);
}

.circle-text span:nth-child(3) {
  transform: rotate(24deg);
}

.circle-text span:nth-child(4) {
  transform: rotate(36deg);
}

.circle-text span:nth-child(5) {
  transform: rotate(48deg);
}

.circle-text span:nth-child(6) {
  transform: rotate(60deg);
}

.circle-text span:nth-child(7) {
  transform: rotate(72deg);
}

.circle-text span:nth-child(8) {
  transform: rotate(84deg);
}

.circle-text span:nth-child(9) {
  transform: rotate(96deg);
}

.circle-text span:nth-child(10) {
  transform: rotate(108deg);
}

.circle-text span:nth-child(11) {
  transform: rotate(120deg);
}

.circle-text span:nth-child(12) {
  transform: rotate(132deg);
}

.circle-text span:nth-child(13) {
  transform: rotate(144deg);
}

.circle-text span:nth-child(14) {
  transform: rotate(156deg);
}

.circle-text span:nth-child(15) {
  transform: rotate(168deg);
}

.circle-text span:nth-child(16) {
  transform: rotate(180deg);
}

.circle-text span:nth-child(17) {
  transform: rotate(192deg);
}

.circle-text span:nth-child(18) {
  transform: rotate(204deg);
}

.circle-text span:nth-child(19) {
  transform: rotate(216deg);
}

.circle-text span:nth-child(20) {
  transform: rotate(228deg);
}

.circle-text span:nth-child(21) {
  transform: rotate(240deg);
}

.circle-text span:nth-child(22) {
  transform: rotate(252deg);
}

.circle-text span:nth-child(23) {
  transform: rotate(264deg);
}

.circle-text span:nth-child(24) {
  transform: rotate(276deg);
}

.circle-text span:nth-child(25) {
  transform: rotate(288deg);
}

.circle-text span:nth-child(26) {
  transform: rotate(300deg);
}

.circle-text span:nth-child(27) {
  transform: rotate(312deg);
}

.circle-text span:nth-child(28) {
  transform: rotate(324deg);
}

.circle-text span:nth-child(29) {
  transform: rotate(336deg);
}

.circle-text span:nth-child(30) {
  transform: rotate(348deg);
}

/* Ensure images are properly aligned */
.circle-text span img {
  transform: rotate(170deg);
}

/* Product image styling */
.product-image-sec img {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
}

/* Features Section Styles end*/

/* natural fresh section css start */
/* Freshness Section Styles */
.natural-fresh-section {
  padding: 10px 0;
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
}

.natural-fresh-container {
  margin: 0 auto;
}

.natural-fresh-content {
  display: flex;
  gap: 6em;
  /* flex-direction: column; */
}

.natural-fresh-text {
  text-align: left;
  max-width: 100%;
  margin-bottom: 40px;
  width: 40%;
}

.natural-fresh-title {
  color: #236255;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 55px;
}

.natural-fresh-description {
  color: #000000;
  font-size: 20px;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 30px;
  max-width: 600px;
}

.natural-fresh-shop-now-btn {
  background-color: #236255;
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 20px;
  display: inline-block;
  width: auto;
}

.natural-fresh-shop-now-btn:hover {
  background-color: #98c104;
  color: #000;
}

.natural-fresh-comparison-container {
  display: flex;
  gap: 40px;
  width: 100%;
  margin-top: 10px;
}

.natural-fresh-comparison-column {
  flex: 1;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.natural-fresh-comparison-title,
.natural-fresh-product-image,
.natural-fresh-feature-list {
  position: relative;
  z-index: 2;
}

.natural-pattern img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.other-pattern img {
  position: absolute;
  bottom: 0;
  right: 0;
  /* width: 100%;
        height: 100%; */
  pointer-events: none;
  z-index: 1;
}

.natural-fresh-natural {
  background-color: #236255;
  color: white;
}

.natural-fresh-other {
  background-color: #d3d8c2;
  color: #236255;
}

.natural-fresh-comparison-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 60%;
  margin: 0px auto 20px;
  height: 75px;
  display: flex;
  align-items: start;
  justify-content: center;
}

.natural-fresh-product-image {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.natural-fresh-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.natural-fresh-feature-list {
  list-style: none;
  padding: 0;
  width: 100%;
  margin: 0;
}

.natural-fresh-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.3;
}

.natural-fresh-feature-text {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-family: "General Sans", sans-serif;
}

.natural-fresh-check-icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.natural-fresh-check-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.natural-fresh-cross-icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.natural-fresh-cross-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.natural-fresh-negative {
  color: #555;
}




.natural-fresh-comparison-container {
  display: flex;
  gap: 40px;
  width: 100%;
  margin-top: 10px;
  align-items: stretch;
}

.natural-fresh-comparison-column {
  flex: 1;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.natural-fresh-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-grow: 1;
  padding: 0;
  width: 100%;
  margin: 0;
}

.natural-fresh-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.3;
  min-height: 30px;
}

.natural-fresh-feature-text {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-family: "General Sans", sans-serif;
  margin-left: 10px;
}

.natural-fresh-check-icon,
.natural-fresh-cross-icon {
  margin-right: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.natural-fresh-check-icon img,
.natural-fresh-cross-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-top: 5px;
}

.natural-fresh-negative {
  color: #555;
}



/* natural fresh section css end */

/* Freshness in Every Scroll Section Styles */
.freshness-scroll-section {
  padding: 50px 0;
  background-color: #fff;
  overflow: hidden;
  margin-left: 4.5em;
}

.freshness-scroll-container {
  /* margin: 0 auto; */
  /* padding: 0 20px; */
  display: flex;
  align-items: start;
  gap: 40px;
}

.freshness-scroll-left {
  flex: 0 0 30%;
}

.freshness-scroll-right {
  flex: 0 0 120%;
  position: relative;
}

.freshness-scroll-item {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}


.freshness-scroll-title {
  font-family: "GeneralSans-Medium", sans-serif;

  font-size: 50px;
  line-height: 55px;
  color: #1c5a44;
  font-weight: 700;
  margin-bottom: 20px;
}

.freshness-scroll-description {
  font-family: "General Sans", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 32px;
  max-width: 90%;
}

.freshness-scroll-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.freshness-scroll-instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #1c5a44;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "General Sans", sans-serif;
  font-size: 20px;
  transition: background-color 0.3s;
}

.freshness-scroll-instagram:hover {
background-color: #000000;
        color: #fffdfd;}

.freshness-scroll-instagram img {
  width: 20px;
  height: 20px;
}

.freshness-scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #8cd6ae;
  border-radius: 50%;
}

.freshness-scroll-arrow img {
  width: 16px;
  height: 16px;
}

/* Carousel Cards */
.freshness-organic-carousel {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.freshness-scroll-item {
  padding: 5px;
  width: 100%;
  max-width: 350px !important;
}

.freshness-scroll-card {
  background-color: #f2f2f2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.freshness-scroll-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
}

.freshness-scroll-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.freshness-scroll-logo {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #236255;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.freshness-scroll-logo img {
  width: 25px !important;
  height: 25px !important;
}

.freshness-scroll-brand-text {
  display: flex;
  flex-direction: column;
}

.freshness-scroll-brand-name {
  font-family: "General Sans", sans-serif;

  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.freshness-scroll-brand-location {
  font-family: "General Sans", sans-serif;

  font-size: 12px;
  color: #777;
}

.freshness-scroll-more {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.freshness-scroll-more img {
  width: 24px;
  height: 24px;
}

.freshness-scroll-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.freshness-scroll-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  padding: 0 15px;
}

.freshness-scroll-actions {
  display: flex;
  gap: 16px;
  padding: 12px 15px;
}

.freshness-scroll-like,
.freshness-scroll-comment,
.freshness-scroll-share {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.freshness-scroll-like img,
.freshness-scroll-comment img,
.freshness-scroll-share img {
  width: 24px;
  height: 24px;
}

.freshness-scroll-footer {
  padding: 0 15px 15px;
}

.freshness-scroll-info {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.freshness-scroll-product {
  font-family: "General Sans", sans-serif;

  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.freshness-scroll-date {
  font-family: "General Sans", sans-serif;

  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Owl Carousel Custom Styles */
.freshness-organic-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.freshness-organic-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.freshness-organic-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
  display: block;
}

.freshness-organic-carousel .owl-dot.active span {
  background-color: #1c5a44;
}

.freshness-organic-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.freshness-organic-carousel .owl-item {
  display: flex;
  height: auto;
}

/* Ensure cards maintain size when resizing */
.freshness-organic-carousel.owl-carousel .owl-item .freshness-scroll-item {
  width: 100%;
}

/* <!-- Freshness in Every Scroll Section end --> */

/* footer section ui start */

/* Footer Styles */
.footer {
  background-color: #236255;
  color: white;
  padding: 50px 5em 30px;
  border-top-right-radius: 2em;
  border-top-left-radius: 2em;
}

.fixed-app.hide {
  display: none;
}


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

/* Footer Main Content */
.footer-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* Footer Column Styles */
.footer-column {
  width: 23%;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* Logo Section */
.footer-logo {
  text-align: right;
}

.footer-logo img {
  max-width: 120px;
  margin-bottom: 20px;
}

/* Social Icons */
.footer-social {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 1em;
  width: 15%;

}

.footer-social a {
  display: inline-block;
  margin-left: 10px;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

/* Contact Info */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact-section {
  width: 25%;
}

.footer-contact .icon {
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
}

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

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}

.natural-fresh-footer-logo {
  /* width: 150px;
 height: 150px; */
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-logo {
  width: 25%;

}

.natural-fresh-footer-logo img {
  max-width: 120px;

  object-fit: contain;
}

/* Footer Links */
.footer-links {
  display: flex;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
  font-size: 14px;
}

.footer-links a:not(:last-child)::after {
  content: "|";
  margin-left: 20px;
}

/* Payment Methods */
.footer-payment {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
}

.footer-payment img {
  height: 35px;
  margin-left: 10px;
  object-fit: contain;
  aspect-ratio: 12 / 6;
}

/* Logo Style */
.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.logo-natural {
  color: white;
}

.logo-ampersand {
  color: #e9e021;
  font-style: italic;
}

.logo-fresh {
  color: white;
}

/* Credits */
.footer-credits {
  text-align: right;
  font-size: 12px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-credits-sec {
  display: flex;
}

.footer-credits-sec a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
}

.footer-credits-sec div:not(:last-child)::after {
  content: "|";
  margin-left: 20px;
}

/* Mobile Footer */
.footer-mobile {
  display: none;
}

.mobile-accordion {
  padding: 10px 0;
}

.mobile-accordion h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
}

ul.footer-contact span {
  color: #fff;
}

.mobile-accordion h3 .arrow img {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}

.mobile-accordion h3.active .arrow img {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  display: none;
  padding-top: 5px;
  text-decoration: none;
}

.mobile-accordion-content ul {
  list-style: none;
}

.mobile-accordion-content ul a {
  color: #ffffff;
  text-decoration: none;
}

.mobile-accordion-content ul li {
  padding: 5px 0;
}

.mobile-footer-contact {
  padding: 20px 0;
}

.mobile-footer-logo {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid #ffffff;
}

.mobile-footer-bottom {
  padding-top: 0px;
}

.mobile-footer-links {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.mobile-footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.mobile-footer-links a:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
}

.mobile-footer-payment {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}

.mobile-footer-payment img {
  height: 25px;
  margin: 0 5px;
}

.mobile-footer-credits {
  text-align: center;
  font-size: 12px;
  margin-top: 15px;
}

/* footer section ui end */

/* Default styles - desktop */
.desktop-image {
  display: block !important;
  width: 100%;
}

.mobile-image {
  display: none !important;
  width: 100%;
}

section.ts-top-sellers .product-item {
  width: auto;
}

.fix {
  text-align: center;
  margin: 0 auto;
  empty-cells: 80%;
  width: 90%;
  position: relative;
  z-index: 99;
}

.trending-section-container {
  display: flex;
  margin-top: 30px;
}

.category-tilte-sec {
  display: flex;
  gap: 2em;
  align-items: center;
}

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

.trending-section-container {
  display: flex;
  margin-top: 30px;
}


/* Search Menu Styles start*/
@keyframes expandSearchMenu {
  0% {
    transform: translateX(-50%) scaleX(0);
    opacity: 0;
  }

  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }
}

.search-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
  width: 100%;
  background-color: #fff;
  padding: 20px 40px 30px;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  overflow-y: auto;
  display: none;
  opacity: 0;
}

.search-menu.active {
  display: block;
  animation: expandSearchMenu 0.5s ease forwards;
}


.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  /* border-radius: 5px; */
  margin-bottom: 20px;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 19px;
  font-weight: 500;
  text-align: left;
  line-height: 44px;
  font-family: "GeneralSans-Medium", sans-serif
}

img.search-toggle {
  cursor: pointer !important;
  width: 24px;
  padding-top: 6px;
}

.trending-section ul li {
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  line-height: 25px;
  font-family: GeneralSans-Medium, sans-serif;
  cursor: pointer;
}

.search-bar .close-search {
  background: var(--primary-green);
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  border-radius: 40px;
  display: inline-block;
  padding: 5px 20px;
  cursor: pointer !important;
}

.trending-section {
  margin-bottom: 20px;
  width: 30%;
}



.trending-section ul {
  list-style: none;
}

.trending-section li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
}

.trending-section li img {
  height: 20px;
}

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

.category-tile {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-tile h3 {
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
}

.category-tile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

/* Search Menu Styles end */

.category-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  width: 30% !important;
}

.category-card .product-image {
  position: relative;
  background-color: #f2f2f2;
  height: 160px;
}

.inner-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-card {
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
  margin-top: 8em;
  box-shadow: -3px 3px 5.5px 0px #00000080;

  position: absolute;
  right: 0;
}

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

.inner-card.left {
  transform: translateX(25%) rotate(-31deg);
}

.inner-card.right {
  transform: translateX(27%) rotate(-10deg);
}

.category-card:hover .inner-card.left {
  transform: translateX(26%) rotate(-28deg) scale(1);
}

.category-card:hover .inner-card.right {
  transform: translateX(26%) rotate(-5deg) scale(1.1);
}

.category-card .product-details h3 {
  color: #000000;
  line-height: 25px;
  font-family: GeneralSans-Medium, sans-serif;
  font-size: 19px;
  text-align: justify;
  color: #1e1e1e;
  text-transform: capitalize;
  font-weight: 400;
  padding-top: 10px;
}


.category-section.trending-sec-category {
  width: 60%;
}

/* Category Section Styles end */
/* Prevent body scroll */
body.no-scroll {
  overflow: hidden;
}

.backdrop-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 72%);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.backdrop-overlay.active {
  opacity: 1;
  pointer-events: auto;
}


.backdrop-overlay.active {
  display: block;
}

.seach-in {
  display: flex;
  align-items: center;
  width: 95%;
}

.seach-in img {
  width: 35px;
  padding-right: 15px;
}

.category-section.trending-sec-category h4 {
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  line-height: 44px;
  padding-bottom: 15px;
}

.left-section {
  cursor: pointer;
}


.seach-in input::placeholder {
  font-size: 16px;
  opacity: 1;
  font-family: "GeneralSans-Medium", sans-serif;
}

.trending-section h4 {
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  line-height: 44px;
  font-family: "GeneralSans-Medium", sans-serif
}

.category-grid .product-item {
  width: 100% !important;
}

.trending-section ul li a {
  font-weight: 400;
  font-family: "General Sans", sans-serif;
  font-size: 19px;
  text-align: justify;
  color: #1e1e1e;
  text-transform: capitalize;
  font-weight: 400;
}

.footer-main .footer-column ul li a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer !important;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-main .footer-column ul li a:hover {
  transform: translateX(5px);
}

.footer-social a img {
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer !important;
}

.footer-social a:hover img {
  transform: translateY(-4px) scale(1.1);
  letter-spacing: -0.03em;
}

.ts-section-title span,
.features-title span,
.natural-fresh-title span,
.freshness-scroll-title span {
  display: inline-block;
  white-space: normal;
  word-break: keep-all;
}

.word {
  display: inline-block;
}

.word span {
  display: inline-block;
}

.about_text h2 .word,
.about_bottom-content h3 .word,
.about_trust_content h2 .word,
.about_text_right h3 .word {
  display: inline-block;
  white-space: nowrap;
}

.about_text h2 {
  text-transform: capitalize;
}

.about_text_right h3 {
  text-transform: capitalize;
}

.banner_content h1 {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.banner_content h1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: transparent;
  transform: translateX(-100%);
  animation: reveal 1.2s ease forwards;
  animation-delay: 0.2s;
}

@keyframes reveal {
  to {
    transform: translateX(100%);
  }
}

a {
  cursor: pointer;
}

.banner_content h1,
.banner_content p {
  display: inline-block;
  /* make clip-path work on text block */
}


.nav_product-dropdown {
  display: none;
  /* hidden by default */
}

.nav_product-dropdown.dropdown--visible {
  display: flex !important;
  /* force show when class added */
}

.bottom-nav {
  display: none;
}

.bottom-nav span {
  font-family: "General Sans", sans-serif;
  font-size: 16px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .desktop-image {
    display: none !important;
  }

  .mobile-image {
    display: block !important;
  }

  /* category res section start */
  .trending-section-container {
    flex-wrap: wrap;
  }

  .category-section {
    padding: 40px 20px 10px;
  }

  .trending-section {
    margin-bottom: 20px;
    width: 100%;
  }

  .category-header h2 {
    font-size: 28px;
    text-shadow: 1px 1px #0000003d;
  }

  .category-header p {
    font-size: 16px;
    line-height: 1.2;
  }

  .category-header {
    margin-bottom: 20px;
  }

  .palette-icon {
    width: 30px;
    height: 30px;
  }

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

  .trending-sec-category {
    padding: 0;

    width: 100%;
  }

  .category-section.trending-sec-category {
    width: 100%;
  }

  .search-menu {
    height: 100%;
  }

  .trending-section-container {

    flex-wrap: wrap;
  }

  .category-card {
    height: 150px;
  }

  .category-card h3 {
    font-size: 14px;
    bottom: 15px;
    left: 15px;
    text-shadow: 1px 0px 0px #000000ab;
  }

  .inner-card {
    height: 100%;
    margin-top: 6em;
  }

  .bottom-nav {
    display: none;
  }

  .bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: max-content;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    padding: 9px 0px 3px 0px;
  }

  .bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    position: relative;
  }

  .bottom-nav img {
    width: 24px;
    margin-bottom: 4px;
  }

  .cart-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #4CAF50;
    /* green */
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-footer-credits div {
    line-height: 25px;
  }

  .mobile-footer-links a {
    margin-bottom: 0px;
  }

  button.btn-cart.dnone {
    display: none;
  }
}