/* :root {
    --blue: #FFCC2A;
    --green: #597415;
    --text-primary: #441c09;
    --text-secondary: #4B4B4B;
    --head-font: 'Playfair', serif;
    --body-font: 'Inter', sans-serif;
} */

:root {
  --blue: #1a2956;
  --golden: #b3792c;
  --text-primary: #441c09;
  --text-secondary: #1a2956a8;
  --head-font: "Playfair", serif;
  --body-font: "Inter", sans-serif;
  --faded-white: #ffffffde;
}

body {
  background-color: #74942208;
}

section {
  overflow-x: hidden;
}

.section-container {
  padding: 100px 0;
}

.topbar {
  background-color: var(--blue);
  width: 100%;
  font-family: var(--body-font);
  font-size: 0.9rem;
}

.line {
  max-width: 150px;
  width: 100%;
  height: 2px;
  background-color: var(--blue);
}

/* Desktop Links */
.top-links {
  display: flex;
  gap: 1.5rem;
}

.top-links a {
  text-decoration: none;
  color: var(--faded-white);
  font-weight: 500;
}

.top-links a:hover {
  color: var(--golden);
}

.top-marquee {
  max-width: 500px;
  width: 100%;
  margin: 0 2rem;
  color: var(--faded-white);
  font-weight: 600;
}

.social-media-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-media-links a {
  color: var(--faded-white);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.social-media-links a:hover {
  color: var(--golden);
}

/* Mobile Menu Button */
.menu-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--faded-white);
  cursor: pointer;
}

/* Modal Styles */
.mobile-menu {
  position: fixed;
  right: 30px;
  top: -100%;
  background: #fff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  transition: bottom 0.3s ease-in-out;
  z-index: 9999;
}

.mobile-menu.open {
  top: 50px;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-content a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.mobile-menu-content a:hover {
  color: var(--golden);
}

/* Responsive Rules */
@media (max-width: 991px) {
  .top-marquee {
    display: none;
  }
}

/* navbar  */

.navbar {
  border-bottom: 1px solid #d9d9d9;
  position: relative;
  background-color: #fff;
}

.navbar.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* stays above everything */
  background: #fff; /* add a background to avoid transparency issues */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease;
}

.search-wrap {
  max-width: 700px;
  width: 100%;
  display: flex;
  gap: 0.5rem;
}

.search-wrap input {
  width: 100%;
  border: 1px solid #d9d9d9;
  padding: 0.5rem 1rem;
  font-family: var(--body-font);
  border-radius: 30px;
  font-size: 0.9rem;
}

.search-wrap input::placeholder {
  color: #d9d9d9;
}

.search-wrap input:focus {
  outline: none;
  border: 1px solid var(--golden) !important;
}

.search-icon-btn {
  background-color: var(--blue);
  border: none;
  padding: 0.5rem 0.8rem;
  border-radius: 100%;
  cursor: pointer;
  color: var(--faded-white);
}

.nav-logo-wrap img {
  max-width: 120px;
  width: 100%;
  transition: all 0.3s ease;
}

.navbar.fixed-nav .nav-logo-wrap img {
  max-width: 70px;
  width: 100%;
}

.user-image-wrap img {
  width: 35px;
}

.user-name-wrap h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
}

.user-name-wrap p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.cart-wrap {
  position: relative;
  cursor: pointer;
}

.cart-wrap img {
  width: 40px;
}

.cart-wrap span {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background-color: var(--golden);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--faded-white);
  font-size: 0.7rem;
  font-weight: 600;
}

.dropdown-content a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: #444;
  font-size: 14px;
  transition: background 0.2s ease;
}

.dropdown-content a:hover {
  background: #f7f7f7;
  color: #d97706; /* golden accent */
}

@media screen and (max-width: 991px) {
  .search-wrap {
    position: absolute;
    bottom: 20px;
    width: 93%;
  }

  .navbar {
    height: 160px;
  }
  .navbar-container {
    margin-top: -69px;
  }
  .user-name-wrap {
    display: none;
  }

  #hamburgerBtn {
    border: none;
    background: transparent;
    color: var(--text-primary);
  }

  .nav-logo-wrap img {
    max-width: 80px;
    width: 100%;
  }
}

/* produnct-mega-nav */

.product-mega-nav {
  position: relative;
}

.nav-link-container {
  display: flex;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.9rem;
  justify-content: space-between;
}

.nav-item {
  cursor: pointer;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-item:hover i {
  transition: all 0.3s ease;
}

.nav-item:hover {
  color: var(--golden);
}

.nav-item:hover i {
  color: var(--golden);
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 1rem;
  display: none;
  /* hidden by default */
  z-index: 50;
}

.dropdown-content {
  display: none;
  height: 400px;
}

.nav-dropdown.active {
  display: block;
}

.dropdown-content.active {
  display: block;
}

@media screen and (max-width: 991px) {
  .product-mega-nav {
    position: absolute;
    left: -100%;
    width: 100vw;
    background-color: #fff;
    z-index: 9999;
    transition: all 0.3s ease;
  }

  .nav-link-container {
    flex-direction: column;
    z-index: 9999;
  }

  /* Active State - Slide In */
  .product-mega-nav.active {
    left: 0;
  }
}

.nav-item {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* appears just below the item */
  left: 0;
  background: #fff;
  width: 250px !important; /* or auto / full-width on desktop */
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: fit-content;
}

.nav-item:hover .dropdown-content {
  display: block;
}

.dropdown-hero-btn {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
}

/* On desktop: make it stretch full width */
@media screen and (min-width: 992px) {
  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%; /* full-width mega menu */
  }
}

/* On mobile: keep below item */
@media screen and (max-width: 991px) {
  .nav-link-container {
    flex-direction: column;
  }

  .dropdown-content {
    position: relative; /* inline with nav-item */
    width: 100%; /* take full width of container */
    top: auto;
    left: auto;
    box-shadow: none;
    border-top: 1px solid #eee;
  }
}

/* hero section slider  */
.product-slider img {
  width: 100vw;
}

.product-slider .slick-prev {
  left: 40px !important;
}

.product-slider .slick-next {
  right: 60px !important;
}

/* Positioning */

.slick-prev {
  left: -60px !important;
  /* move outside slider */
}

.slick-next {
  right: -40px !important;
}

/* Arrow icons */

/* common code  */

.sec-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-family: var(--head-font);
}
.sec-heading {
  color: var(--golden);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--body-font);
}

.sec-heading img {
  margin-right: 7px;
}

.sec-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--faded-white);
  font-family: var(--body-font);
  background-color: var(--blue);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.sec-link:hover {
  color: #fff;
  background-color: var(--golden);
}

.categories-section {
  padding: 80px 0;
}

.category-container {
  margin-top: 60px;
}

.category-top-container {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
.category-img {
  overflow: hidden;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}

.category-img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.category-item {
  cursor: pointer;
}

.category-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0 auto;
  margin-top: 1rem;
  margin-bottom: 0;
  font-family: var(--body-font);
  text-align: center;
  background-color: var(--golden);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.category-item:hover .category-name {
  background-color: var(--blue);
  color: var(--faded-white);
}

.category-item:hover .category-img img {
  transform: scale(1.1);
}

.category-container .slick-next {
  right: -60px !important;
}

.category-container .slick-prev {
  left: -60px !important;
}

/* discount cards section  */
.discounts-section {
  padding: 60px 0;
}

.discount-card {
  width: 80%;
  height: 500px;
  margin: 0 auto;
  border-radius: 30px;
  margin-top: 60px;
  padding: 20px;
  padding-left: 60px;
}

.discount-card-1 {
  background-color: #597415;
}

.discount-card-2 {
  background-color: rgb(125, 16, 34);
}

.discount-card-3 {
  background-color: #bb7453;
}

.discount-card-4 {
  background-color: #b38000;
}

.discount-card .categroy-cart-btn {
  background-color: var(--blue) !important;
  color: var(--faded-white) !important;
  margin-top: 20px;
}

.discount-card .categroy-cart-btn:hover {
  background-color: var(--golden) !important;
  color: var(--faded-white) !important;
}

.discount-image-wrapper {
  max-width: 700px;
  height: 500px;
  width: 100%;
  margin: 0 auto;
}

.discount-image-wrapper img {
  width: 100%;

  transition: all 0.3s ease;
  transform: rotate(10deg);
  margin-top: -80px;
}

.discount-badge {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--body-font);
  text-align: center;
  background-color: #ffcc2a;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
  cursor: pointer;
}

.discount-card h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 2rem;
  color: #fff;
  font-family: var(--head-font);
}

.discount-description {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffffd5;
  font-family: var(--body-font);
  margin-bottom: 50px;
}
.discounts-section .time-box small {
  color: #fff !important;
}
/* product cards section  */

.product-cards-section {
  background-color: #fff;
}

.product-cards-container {
  margin-top: 60px;
}

.product-cards-container .slick-list {
  margin: 0 -12px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  transition: all 0.3s ease;
  padding: 0 10px;
  font-family: var(--body-font);
  position: relative;
}

.product-content {
  padding: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
}

.product-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  aspect-ratio: 2/1;
}

.product-img-hover {
  display: none !important;
}

.product-card:hover .product-img-hover {
  display: block !important;
}

.product-card:hover .product-img {
  display: none;
}

.product-card .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.product-card .catergory-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.product-card .rating {
  font-size: 14px;
  font-weight: 600;
}

.product-card .rating i {
  color: var(--golden);
  margin-right: 4px;
}

.product-card h2 {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--head-font);
  color: #0e1735;
  margin-bottom: 10px;

  /* Truncate long text with ellipsis */
  white-space: nowrap;       /* Prevent text from wrapping to next line */
  overflow: hidden;          /* Hide overflowing text */
  text-overflow: ellipsis;   /* Add "..." at the end */
}

.product-card .price {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.product-card .price .old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--text-secondary);
  margin-left: 6px;
  opacity: 0.7;
}

.btn-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card button {
  border: none;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 8px;
  width: 100%;
}

.add-to-cart-btn {
  border: 1px solid var(--text-primary) !important;
  color: var(--text-primary);
  background: transparent;
  display: flex;
  white-space: nowrap;
  gap: 6px;
  align-items: center;
}

.add-to-cart-btn:hover {
  background: var(--blue);
  color: var(--faded-white);
  border-color: var(--blue) !important;
}

.product-card button:last-child {
  background: var(--golden);
  color: #fff;
}

.product-card button:last-child:hover {
  background: #e6b824;
}

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: green;
  color: #fff;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
}

/* categroy cards section  */
.category-cards-section {
  background: url("../Assets/oils-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.category-cards-slider {
  margin-top: 60px;
}

.category-card {
  background: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  margin: 0 12px;
  border-radius: 10px;
  height: 500px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  object-position: top right;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-cards-slider .slick-list {
  margin: 0 -12px;
}

.categroy-card-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  color: #fff;
}

.categroy-card-content p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0px !important;
  text-transform: uppercase;
}

.categroy-card-content h2 {
  font-size: 40px;
  font-weight: 600;
  font-family: var(--head-font);
}

.categroy-cart-btn {
  background-color: var(--text-primary);
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 8px;
  width: fit-content;
  color: #fff;
}

.categroy-cart-btn:hover {
  background: var(--blue);
  color: var(--text-primary);
  border-color: var(--blue) !important;
}

.limited-stock-ui {
  background-color: var(--blue);
  color: var(--text-primary);
  padding: 20px;
  border-radius: 16px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--body-font);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* Heading */
.limited-stock-ui h2 {
  font-size: 25px;
  font-weight: 700;
  font-family: var(--head-font);
  margin: 0;
  color: var(--faded-white);
}

/* Timer Section */
/* Timer Section */
.timer {
  display: flex;
  gap: 10px;
  align-items: center;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.time-box span {
  background: #fff;
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 8px;
  min-width: 36px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.time-box small {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--faded-white);
}

/* Button */
.limited-stock-ui .categroy-cart-btn {
  width: fit-content;
  border: 1px solid var(--blue) !important;
  background-color: var(--golden);
  color: var(--faded-white);
}

.limited-stock-ui .categroy-cart-btn:hover {
  background: var(--blue);
  color: var(--text-primary);
  border: 1px solid var(--text-primary) !important;
}

/* bento grid section  */

.bento-grid-container {
  margin-top: 60px;
  /* background-color: #fff2c89e; */
}

.bento-grid-container ul {
  padding: 0;
  margin: 0;
}

.bento-grid-container ul li {
  margin: 0 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.oils-block {
  border-radius: 10px;
  padding: 100px 40px;
  background-color: #e0c57a;
  position: relative;
  overflow: hidden;
}

.oils-block img {
  position: absolute;
  top: 50px;
  right: -130px;
  width: 600px;
  transform: rotate(90deg);
}

.bento-grid-container h3 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  font-family: var(--head-font);
  margin-bottom: 20px;
  color: var(--text-primary);
}

.honey-block {
  border-radius: 10px;
  padding: 30px 40px;
  background-color: #edbd38;
  position: relative;
  overflow: hidden;
}

.honey-block img {
  position: absolute;
  top: -10px;
  right: -20px;
  width: 200px;
}

.more-products {
  border-radius: 10px;
  padding: 30px 40px;
  background-color: var(--golden);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}
/* testimonial section  */

.testimonial-section {
  background-color: #fffbf0;
}

.testimonial-slider {
  margin-top: 20px;
}

.testimonial-card {
  border-radius: 10px;
  padding: 10px;
  background-color: #fffbf0;
  text-align: center;
  min-height: 200px;
}

.testimonial-content {
  border: 1px solid #eee;
  padding: 20px 10px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.testimonial-card h6 {
  font-family: var(--head-font);
  color: var(--text-primary);
  margin: 0;
  font-size: 18px;
}

.stars {
  color: var(--blue);
  margin-bottom: 10px;
}

/* Default dot (circle) */
.slick-dots li {
  width: 25px; /* enough to hold the rectangle */
  height: 10px;
  margin: 0 3px !important;
}

/* Reset default dot */
.slick-dots li button {
  padding: 0;
  width: 100%;
  height: 100%;
}
.slick-dots li button:before {
  content: "" !important; /* remove default dot character */
  width: 8px !important; /* small circle */
  height: 8px !important;
  background: #bd8282;
  border-radius: 50%; /* circle shape */
  display: block;
  transition: all 0.3s ease; /* smooth transition */
}

/* Active dot (rectangle) */
.slick-dots li.slick-active button:before {
  width: 20px !important; /* make wider */
  height: 8px; /* keep slim */
  border-radius: 4px; /* rectangle with rounded corners */
  background: var(--golden); /* active color */
}

.testimonial-slider .slick-list {
  margin: 0 -12px;
}
.testimonial-section {
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.testimonial-box {
  background-color: #f8f9fc;
  border-radius: 12px;
  padding: 40px 25px;
  min-height: 230px;
  position: relative;
  transition: all 0.3s ease;
}

.slick-center .testimonial-box {
  background-color: #ffc107;
  color: #fff;
  transform: scale(1.05);
}

.slick-center .quote-icon {
  color: #fff;
}

.quote-icon {
  font-size: 28px;
  color: #000;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.client-name {
  font-weight: 600;
  margin-bottom: 0;
}

.client-email {
  font-size: 14px;
  color: #6c757d;
}

.slick-center .client-email {
  color: #fff;
}

.client-img {
  margin-top: 20px;
}

.client-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.testimonial-card {
  text-align: center;
  position: relative;
}

.slick-dots {
  margin-top: 25px;
}


/* faq section  */

/* FAQ Section Styling */
.faq-section {
  background-color: #fff;
}

/* Image Styling */
.faq-section img {
  border-radius: 12px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Accordion Styling */
.accordion-item {
  border: 1px solid var(--text-secondary);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
}

.accordion-item h2 {
  margin-bottom: 0;
}

.accordion-button {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  background-color: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-button i {
  font-size: 18px;
  color: var(--text-primary); /* changed from hard-coded red to yellow accent */
}

.accordion-button:not(.collapsed) {
  background-color: var(--golden);
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:not(.collapsed) i {
  color: #fff;
}

.accordion-body {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 15px 20px;
  line-height: 1.6;
}

/* Hover Effect */
.accordion-button:hover {
  background-color: rgba(255, 204, 42, 0.1); /* subtle yellow hover */
  color: var(--text-primary);
}

.accordion-button:hover i {
  color: var(--text-primary);
}

.process-section {
  background-color: var(--golden);
  padding: 60px 0 !important;
}

.process-container {
  text-align: center;
}

.process-container img {
  margin-bottom: 20px;
  width: 60px;
  filter: brightness(1) invert(1);
}

.process-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--head-font);
  color: #fff;
}

.process-container p {
  font-size: 16px;
  color: #ffffffe1;
}

.footer {
  background: #fff;
  color: var(--text-secondary);
  font-family: var(--body-font);
  padding: 60px 0 20px 0;
  border-top: 1px solid #eee;
}

.footer-header {
  padding-bottom: 20px;
}

.footer h3 {
  font-family: var(--head-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 15px;
}

.footer ul {
  padding: 0;
  margin: 0;
}

.footer p,
.footer li,
.footer a {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  list-style-type: none;
}

.footer a:hover {
  color: var(--text-primary);
}

.footer-social {
  display: flex;
}

.footer-social a {
  margin: 0 8px;
  font-size: 16px;
  color: var(--faded-white);
  background: var(--blue);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--golden);
  color: #fff;
}

.footer-logo img {
  max-height: 100px;
}

.footer-bottom {
  padding-top: 15px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

@media screen and (max-width: 991px) {
  .sec-title {
    font-size: 1.5rem;
  }

  .category-container {
    margin-top: 30px;
  }

  .category-img img {
    width: 100px;
    height: 100px;
  }
  .category-img {
    width: 100px;
    height: 100px;
  }

  .category-name {
    font-size: 1rem;
  }

  .footer-social {
    justify-content: center;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 576px) {
  .category-name {
    font-size: 0.8rem;
  }

  .section-container {
    padding: 40px 0;
  }

  .limited-stock-ui {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }

  .user-image-wrap img {
    width: 30px;
  }
  .cart-wrap img {
    width: 30px;
  }

  .sec-link {
    font-size: 0.8rem;
  }

  .category-container {
    margin-top: 20px;
  }
}

.slick-next:before,
.slick-prev:before {
  font-size: 0rem !important;
  padding: 20px;
  z-index: 10;
  background-color: var(--blue);
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.6s;
  border-radius: 50%;
  transform: scale(0.5);
}

.slick-prev {
  z-index: 1000;
}

.slick-prev:before {
  background-image: url("../Assets/slick-prev.png");
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(0.5);
}

.slick-next:before {
  background-image: url("../Assets/slick-next.png");
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(0.5);
}

@media screen and (max-width: 1400px) {
  .section-container {
    padding: 80px 0;
  }

  .discounts-section {
    padding: 40px 0;
  }
  .discount-card {
    height: 400px;
  }

  .discount-image-wrapper {
    height: 350px;
  }
}

@media screen and (max-width: 1200px) {
  .discount-image-wrapper img {
    margin-top: 0px;
  }
}

@media screen and (max-width: 991px) {
  .slick-next:before,
  .slick-prev:before {
    display: none !important;
  }

  .discount-card {
    height: 100%;
    width: 100%;
    text-align: center;
    padding: 30px 15px;
    margin-top: 0;
  }
  .discount-image-wrapper {
    height: auto;
  }
  .discount-image-wrapper img {
    margin-bottom: 30px;
  }

  .discounts-section .row {
    flex-direction: column-reverse;
  }

  .discounts-section .timer {
    justify-content: center;
  }

  .oils-block {
    padding: 60px 40px;
    margin-bottom: 24px;
  }

  .oils-block img {
    right: -230px;
  }

  .section-container {
    padding: 60px 0;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Logo style */
#preloader img {
  width: 120px;
  height: auto;
  animation: zoomBlur 2s infinite alternate;
}

/* Zoom + Blur effect */
@keyframes zoomBlur {
  0% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    transform: scale(80);
    filter: blur(300px);
    opacity: 0.7;
  }
}

/* Hide preloader after load */
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.slick-dots {
  bottom: 8px !important;
}
/* .slick-dotted.slick-slider {
    margin-bottom: 0px !important;
} */

/* ==== HERO SECTION ==== */
.agri-hero {
  width: 100%;
  min-height: 50vh;
  background: linear-gradient(to right, #245c27, #7abf40);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  /* padding: 4rem 6%; */
  position: relative;
  font-family: var(--head-font);
}

.agri-wrapper {
  display: grid;
  grid-template-columns: 1fr minmax(320px, auto) 1fr;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1920px;
  gap: 4rem;
  padding: 2rem 4rem;
}

.agri-left h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 400px;
}

.agri-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.farmer-img {
  width: 420px;
  height: auto;
  z-index: 3;
  position: relative;
  object-fit: contain;
  right: 60px;
  top: 36px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

/* ==== ANIMATED WAVE EFFECT ==== */
@keyframes waveMotion {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
}
.circle1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #19875400 0%, #00351d 80%);
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  animation: waveMotion 6s ease-in-out infinite;
}

.circle2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.05) 80%
  );
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  animation: waveMotion 8s ease-in-out infinite reverse;
}

.agri-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 400px;

  z-index: 3;
}

.agri-right p {
  font-size: 1.5rem;
  color: #e8f5e9;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-btn {
  background-color: #ffb703;
  color: #1b4332;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #ffd166;
  transform: translateY(-3px);
}

@media (max-width: 1500px) {
  .agri-left h1 {
    font-size: 2.5rem;
  }
  .circle1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 40%;
  }
  .circle2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 40%;
  }
  .farmer-img {
    width: 340px;
    right: 0;
    top: 34px;
  }
}
@media (max-width: 1200px) {
  .agri-left h1 {
    font-size: 1.8rem;
  }

  .agri-right p {
    font-size: 1rem;
  }

  .circle1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 55%;
  }
  .circle2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 55%;
  }
  .farmer-img {
    width: 340px;
    right: 0;
    top: 34px;
  }
}

@media (max-width: 992px) {
  .agri-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 7rem;
  }

  .agri-left h1 {
    font-size: 2.3rem;
    max-width: none;
  }

  .agri-right {
    align-items: center;
    text-align: center;
    width: 100% !important;
  }

  .farmer-img {
    width: 240px;
    right: -5px;
    top: 37px;
  }

  .circle1 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
  }

  .circle2 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
  }
  .cta-btn {
    font-size: 12px;
    padding: 0.8rem 1.6rem;
  }
}

@media (max-width: 576px) {
  .agri-left h1 {
    font-size: 1.9rem;
  }

  .agri-right p {
    font-size: 1.1rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }

  .farmer-img {
    width: 180px;
  }

  .circle1 {
    width: 260px;
    height: 260px;
  }

  .circle2 {
    width: 160px;
    height: 160px;
  }
}
/* ==== ATTRACTIVE AGRICULTURE CLIENT BUTTON ==== */
.agri-client-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #1b5e20, #43a047, #7cb342);
  color:var(--blue);
  padding: 0.8rem 1.6rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  /* box-shadow: 0 0 15px rgba(76, 175, 80, 0.5); */
  overflow: hidden;
  transition: all 0.4s ease;
  /* border: 2px solid transparent; */
  background-clip: padding-box;
}

/* Glow border ring */
.agri-client-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  /* background: linear-gradient(135deg, #00ff9d, #84fbb7, #5dd68c); */
  /* -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0); */
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: glowPulse 3s infinite ease-in-out;
  z-index: 0;
}

/* Shimmer overlay */
.agri-client-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  /* background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  ); */
  transform: skewX(-25deg);
  animation: shimmer 4s infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 125%; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.8; box-shadow: 0 0 10px #5dd68c; }
  50% { opacity: 1; box-shadow: 0 0 20px #00ff9d; }
}

/* Icon */
/* .agri-icon {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
} */

/* Text and subtext */
.agri-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 2;
}

.agri-text small {
  font-size: 0.7rem;
  opacity: 0.85;
  letter-spacing: 0.3px;
}

/* Hover effects */
.agri-client-btn:hover {
  transform: translateY(-3px) scale(1.03);
  /* box-shadow: 0 0 25px rgba(0, 255, 157, 0.6); */
  color: #fff;
}

.agri-client-btn:hover .agri-icon {
  background: rgba(255, 255, 255, 0.25);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .agri-client-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .agri-text small {
    display: none;
  }
}

@media (max-width: 576px) {
  .agri-client-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    gap: 0.4rem;
  }
}
