/* ================ BANNER AREA CSS START HERE =============== */

.main-home-wrapper {
  background-color: var(--primary-dark);
}

.banner-area {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-top: 5px solid var(--primary-dark);
  border-bottom: 5px solid var(--primary-dark);
  background: #fff;
}

.banner-area .banner-cont {
  padding: 1rem 8rem 1rem 5rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: space-around;
}

.banner-area .banner-cont h1 {
  font-size: 56px;
  line-height: 70px;
  margin-bottom: 2rem;
  font-weight: 500;
}

.banner-area .banner-cont p {
  font-size: 1rem;
  line-height: 28px;
  margin-bottom: 0rem;
  font-weight: 400;
  color: var(--text-color);
}

/* ================ BANNER AREA CSS ENDS HERE =============== */

/* ================ CATEGORY AREA CSS START HERE =============== */

.category-area {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: var(--bg-light);
  padding: 1.5rem 0rem;
}

.category-area .category-card {
  width: 100%;
  height: auto;
  text-align: center;
}

.category-area .category-card .category-icon {
  margin-bottom: 1rem;
}

.category-area .category-card h3 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0rem;
  font-weight: 500;
  color: var(--text-color);
}

/* ================ CATEGORY AREA CSS ENDS HERE =============== */

/* ================ FEATURED PRODUCT AREA CSS START HERE =============== */

.featured-product-area {
  width: 100%;
  height: auto;
  background-color: var(--white-color);
}

.product-box {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  background: var(--bg-light);
}


.product-box .product-image {
  width: 100%;
  height: 280px;
  min-height: 280px;
  overflow: hidden;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-box .product-image .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2;
  pointer-events: none;
  background: var(--bg-light);
}

.featured-video-section .product-box.has-video:hover .product-image .video-overlay {
  opacity: 1;
  visibility: visible;
}

.featured-video-section .product-box.has-video:hover .product-image a img {
  opacity: 0;
  transition: opacity 0.3s ease;
}


.product-box .product-image .offer-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 2px 9px;
  font-size: 12px;
  border-radius: 4px;
}

.product-box .product-image .best-seller {
  position: absolute;
  top: 3rem;
  left: 1rem;
  padding: 2px 9px;
  font-size: 12px;
  border-radius: 4px;
  color: var(--white-color);
}

.product-box .product-content {
  padding: 1.5rem;
}

.product-box .product-content .start-rating {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 12px;
  margin-bottom: 1rem !important;
}

.product-box .product-content .start-rating li {
  color: #f9b738;
}

.product-box .product-content .start-rating .count {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  margin-left: 0.5rem;
}

.product-box .product-content .product-title {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-color);
}

.product-box .product-content .product-title a {
  color: var(--dark-color);
}

.product-box .product-content .product-title sup {
  font-size: 11px;
  top: -1em;
  letter-spacing: -1px;
}

.product-box .product-content .product-description {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: var(--text-color);
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.product-box .product-content .product-price {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-color);
}

.product-box .product-content .product-price del {
  font-weight: 400;
  color: var(--text-color);
  margin-right: 0rem;
}

.product-box .product-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-box .product-btns .cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black-color);
  color: var(--white-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  flex: 1 20px;
  height: 48px;
  border: 1px solid var(--black-color);
  border-bottom-left-radius: 8px;
}

.product-box .product-btns .cart-btn svg {
  width: 22px;
  height: 22px;
}

.product-box .product-btns .buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  flex: 1 80px;
  height: 48px;
  border: 1px solid var(--primary-color);
  border-bottom-right-radius: 8px;
}

.product-box .product-btns .buy-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.product-box .product-btns .cart-btn:hover {
  background-color: transparent;
  color: var(--black-color);
}

/* ================ FEATURED PRODUCT AREA CSS ENDS HERE =============== */

/* ================ SWIPER NAVIGATION CSS START HERE =============== */

.featured-product-slider-wrapper {
  position: relative;
  width: 100%;
}

.featured-product-slider-wrapper .swiper {
  position: static;
}

.custom-nav.swiper-button-next,
.custom-nav.swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

.custom-nav.swiper-button-next {
  right: -30px;
}

.custom-nav.swiper-button-prev {
  left: -30px;
}

.custom-nav {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-color);
  background: var(--bg-light);
  border: 5px solid var(--white-color);
  border-radius: 50%;
}

.custom-nav.swiper-button-next::after,
.custom-nav.swiper-button-prev::after {
  font-size: 25px;
}

/* ================ SWIPER NAVIGATION CSS ENDS HERE =============== */

/* ================ BEST SELLER AREA CSS START HERE =============== */

.best-seller-area {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #fff;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
}

.best-seller-area .product-box {
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  background: var(--white-color);
}

.best-seller-area .product-box .product-image {
  background-color: var(--bg-light);
  height: 260px;
  min-height: 260px;
}

.best-seller-area .product-box .product-content {
  padding: 1.5rem 0;
}

.best-seller-area .product-box .product-content .product-description {
  font-size: 16px;
}

.best-seller-area .product-box.styleOne .product-image {
  background-color: #eeebe4;
  min-height: 100%;
  border-radius: 5px;
  height: 670px;
}

/* ================ BEST SELLER AREA CSS ENDS HERE =============== */

/* ================ NEW ARRIVALS AREA CSS START HERE =============== */

.new-arrivals {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.new-arival-slider-wrapper {
  position: relative;
  width: 100%;
}

.new-arival-slider-wrapper .swiper {
  position: static;
}

.new-arival-slider-wrapper .custom-nav {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--primary-color);
  border: 5px solid var(--primary-dark);
  border-radius: 50%;
}

/* ================ NEW ARRIVALS AREA CSS ENDS HERE =============== */

/* ================ HEALTH TIPS AREA CSS START HERE =============== */

.health-tips {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #fff;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}

.health-tips .health-tips-box {
  border-radius: 5px;
  overflow: hidden;
}

.health-tips .health-tips-box .health-tips-image {
  width: 100%;
  min-height: 305px;
  height: 305px;
  overflow: hidden;
}

.health-tips .health-tips-box .health-tips-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.health-tips .health-tips-box .health-tips-content {
  padding: 1rem 0;
}

.health-tips .health-tips-box .health-tips-content .category-badge {
  border: 1px solid #dadada;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-color);
  padding: 5px 15px;
  border-radius: 30px;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 29px;
}

.health-tips .health-tips-box .health-tips-content .health-tips-description {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: var(--dark-gray);
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.health-tips .health-tips-box .health-tips-content .anchor-link {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--dark-gray);
}

/* ================ HEALTH TIPS AREA CSS ENDS HERE =============== */

/* ================ ADV SLIDER AREA CSS START HERE =============== */

.adv-slider {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: var(--white-color);
}

.adv-slider .adv-slider-box {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: var(--white-color);
  position: relative;
  border-radius: 5px;
}

.adv-slider .adv-slider-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.adv-slider .adv-slider-box .adv-slider-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  height: 465px;
  min-height: 465px;
  border-radius: 5px;
}

.adv-slider .adv-slider-box .adv-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.adv-slider .adv-slider-box .adv-slider-content {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  max-width: 689px;
  gap: 2rem;
}

.adv-slider .adv-slider-box .adv-slider-content h3 {
  font-weight: 500;
  font-size: 44px;
  letter-spacing: 0.14px;
  color: var(--white-color);
  margin: 0;
}

.adv-slider .adv-slider-box .adv-slider-content p {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.14px;
  color: var(--white-color);
  margin: 0;
  margin: 0;
}

.adv-slider .adv-slider-box .adv-slider-content .divider {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.adv-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color) !important;
  width: 26px;
  min-width: 26px;
  height: 8px;
  border-radius: 30px;
}

.adv-slider .swiper-pagination-bullet {
  background: rgba(37, 104, 14, 0.3);
  opacity: 1;
}

.adv-slider .swiper-wrapper {
  padding-bottom: 3rem;
}

.adv-slider .theme-btn:hover {
  background-color: transparent !important;
  color: var(--white-color) !important;
  border-color: var(--white-color) !important;
}

/* ================ ADV SLIDER AREA CSS ENDS HERE =============== */

/* ================ RESPONSIVE CSS START HERE =============== */

@media (max-width: 1399px) {
  .banner-area .banner-cont {
    padding: 1rem 4rem 1rem 3rem;
  }
}

@media (max-width: 1199px) {
  .banner-area .banner-cont h1 {
    font-size: 40px;
    line-height: 54px;
  }

  .banner-area .banner-cont {
    padding: 1rem 2rem;
  }

  .adv-slider .adv-slider-box .adv-slider-content h3 {
    font-size: 34px;
    gap: 1.5rem;
  }

  .adv-slider .adv-slider-box .adv-slider-content {
    max-width: 550px;
  }
}

@media (max-width: 991px) {
  .pd-80 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .banner-area .banner-cont {
    padding: 3rem 1rem;
    align-items: center;
    text-align: center;
  }

  .banner-area .banner-cont h1 {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 1.5rem;
  }

  .category-area {
    padding: 2rem 0;
  }

  .category-area .category-card {
    margin-bottom: 1.5rem;
  }

  .custom-nav {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .custom-nav.swiper-button-next::after,
  .custom-nav.swiper-button-prev::after {
    font-size: 18px;
  }

  .best-seller-area .product-box.styleOne .product-image {
    height: 450px;
    margin-bottom: 1.5rem;
  }

  .adv-slider .adv-slider-box .adv-slider-content h3 {
    font-size: 28px;
  }

  .adv-slider .adv-slider-box .adv-slider-content {
    padding: 2rem;
    max-width: 100%;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .banner-area .banner-cont h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .product-box .product-content {
    padding: 1rem;
  }

  .product-box .product-content .product-title {
    font-size: 18px;
    line-height: 26px;
  }

  .product-box .product-content .product-description {
    font-size: 16px;
  }

  .health-tips .health-tips-box .health-tips-image {
    height: 240px;
    min-height: 240px;
  }

  .health-tips .health-tips-box .health-tips-content .health-tips-description {
    font-size: 18px;
    line-height: 28px;
  }

  .adv-slider .adv-slider-box .adv-slider-image {
    height: 380px;
    min-height: 380px;
  }

  .adv-slider .adv-slider-box .adv-slider-content h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .adv-slider .adv-slider-box .adv-slider-content p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .banner-area .banner-cont h1 {
    font-size: 26px;
    line-height: 34px;
  }

  .banner-area .banner-cont p {
    font-size: 15px;
    line-height: 24px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .custom-nav,
  .swiper-nav-btn {
    display: none;
  }
}

/* ================ RESPONSIVE CSS ENDS HERE =============== */