/* Head CSS Start */
/* Category Filter Styles */
.category-item.active {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: var(--primary-color) !important;
  transform: scale(1.05);
}

.category-item.active .w-full {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: var(--primary-color) !important;
}

.category-item.active p {
  color: var(--primary-color) !important;
  font-weight: bold;
}

/* Category Groups in Mega Menu - Matching Original Design */
.mega-menu-grid-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 41px;
  max-width: 100%;
}

.category-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-menu-parent {
  display: block;
  /* color: #5E7153; */
  text-decoration: none;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.mega-menu-parent:hover {
  font-weight: 700;
}

.subcategory-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subcategory-list li a {
  display: block;
  /* color: #5E7153; */
  text-decoration: none;
  font-size: 12px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.2s ease;
  /*            white-space: nowrap;*/
  line-height: normal;
  padding-left: 12px;
}

.subcategory-list li a:hover {
  font-weight: 700;
}


.navbar_action_buttons a#wishlistBtn {}
.navbar_action_buttons a#wishlistBtn svg,
.navbar_action_buttons a.cart_menu-icon svg {
    height: 45px;
    width: 45px;
}
.navbar_action_buttons svg {
    width: 40px;
    height: 40px;
}
.navbar_action_buttons {}
.navbar_action_buttons a {
    width: 40px;
    margin: 0;
}

/* Mobile Subcategory Styles */
.mobile-subcategory-list {
  display: none;
}

.mobile-category-item.expanded .mobile-subcategory-list {
  display: block;
}

/* Blog Styles */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Warehouse Selector Styles */
/*.warehouse-selector-container {
    display: flex;
    align-items: center;
}*/

.warehouse-select-btn-header {
  min-width: 180px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
}

.warehouse-select-btn-header i {
  font-size: 14px;
}

/* Warehouse Selection Modal - Theme Styling */
.warehouse-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-family: 'Archivo', 'Montserrat', sans-serif;
}

.warehouse-modal {
  background: white;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.warehouse-modal-header {
  padding: 40px 40px 30px;
  text-align: center;
  /* border-bottom: 2px solid #F9ECC9; */
  background: var(--theme-bg-color);
}

.warehouse-modal-header h2 {
  /* font-family: 'Archivo Narrow', sans-serif; */
  font-size: 28px;
  font-weight: 700;
  color: var(--theme-primary-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.warehouse-modal-body {
  padding: 40px;
  overflow-y: auto;
  flex: 1;
  background: white;
}

.warehouse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.warehouse-item {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 2px solid var(--theme-primary-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  font-family: 'Archivo', sans-serif;
}

.warehouse-item:hover {
  /* border-color: #5E7153; */
  background: var(--theme-bg-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(94, 113, 83, 0.15);
}

.warehouse-item.selected {
  box-shadow: 0 4px 12px rgba(94, 113, 83, 0.2);
  background: var(--theme-bg-color);
}

.warehouse-item-icon {
  width: 48px;
  height: 48px;
  background: var(--theme-primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  margin-right: 15px;
  flex-shrink: 0;
  font-family: 'Archivo Narrow', sans-serif;
  text-transform: uppercase;
}

.warehouse-item-info {
  flex: 1;
}

.warehouse-item-name {
  font-weight: 600;
  color: var(--theme-primary-color);
  font-size: 16px;
  margin-bottom: 4px;
  font-family: 'Archivo', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.warehouse-item-location {
  font-size: 13px;
  color: var(--theme-primary-color);
  /* font-family: 'Archivo', sans-serif; */
}

.warehouse-modal-footer {
  padding: 30px 40px;
  border-top: 2px solid var(--theme-primary-color);
  text-align: center;
  /* background: var(--theme-bg-color); */
}

.warehouse-select-btn {
  background: var(--theme-primary-color);
  color: white;
  padding: 14px 50px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  /* font-family: 'Archivo Narrow', sans-serif; */
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(94, 113, 83, 0.2);
}

.warehouse-select-btn:hover:not(:disabled) {
  background: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(94, 113, 83, 0.3);
}

.warehouse-select-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

.prose {
  color: #575757;
  line-height: 1.75;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.prose h2,
.prose h3,
.prose h4 {
  color: #5E7153;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose a {
  color: #BA9470;
  text-decoration: underline;
}

.prose a:hover {
  font-weight: 700;
}

.quantity-box-cart.gap-2 {
  gap: 0;
}

.quantity-box-cart.gap-2 .quantity-input,
.quantity-box-cart.gap-2 .quantity-btn {
  border-radius: 0;
}

.quantity-box-cart {
  margin: 10px 0;
}

.quantity-box-cart,
.quantity-box {
  align-items: center;
  overflow: hidden;
  border: solid 1px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  /* max-width: 220px;
  height: 55px; */
  max-width: 150px;
  height: 50px;

}

.quantity-box-cart.gap-2 .quantity-btn,
.qty-btn {
  background: var(--theme-primary-color);
  color: #fff;
  font-size: 20px;
  width: 50px;
  height: 100%;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.quantity-box-cart.gap-2 .quantity-input,
.qty-input {
  width: 55%;
  height: 50px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-black);
  background: var(--theme-white);
}

.wishlist-content .add-to-cart-btn {
  background: var(--theme-primary-color);
  color: var(--theme-button-text);
}




@media (max-width: 768px) {
  .mega-menu-grid-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .mega-menu-grid-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Head CSS End */


body {
  font-size: 16px;
  font-family: "Archivo";
  font-weight: 300;
  line-height: 24px;
  color: #575757;
}

.blog-content a {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo Narrow", sans-serif !important;
  text-transform: uppercase;
  line-height: 1;
}

h1 {
  font-size: clamp(50px, 11vw, 96px);
}

h2 {
  font-size: clamp(24px, 6vw, 64px);
}

h3 {
  font-size: clamp(16px, 12vw, 24px);
}

.card-body h3 {
  font-size: clamp(16px, 3.5vw, 24px);
}

.card-body .description p {
  font-size: 16px;
}

strong {
  font-weight: 700;
}

.primary-btn {
  display: inline-block;
  padding: 17px 10px;
  min-width: 198px;
  text-align: center;
  background-color: var(--theme-primary-color);
  border-radius: 5px;
  color: var(--theme-white);
  transition: 200ms all ease-in-out;
  border: 1px solid var(--theme-primary-color);
  /* text-transform: uppercase; */
  cursor: pointer;
  line-height: 1.1;
}

.primary-btn:hover {
  font-weight: 700;
}

@media (max-width: 768px) {
  .primary-btn {
    padding: 12px 10px;
    min-width: 160px;
  }
}

.offcanvas-container .secondary-btn {
  min-width: auto;
}

.secondary-btn {
  display: inline-block;
  padding: 17px 5px;
  min-width: 140px;
  text-align: center;
  background-color: transparent;
  border-radius: 5px;
  color: var(--theme-primary-color);
  transition: 200ms all ease-in-out;
  border: 1px solid var(--theme-primary-color);
  /* text-transform: uppercase; */
  cursor: pointer;
  line-height: 1.1;
}

.secondary-btn:hover {
  font-weight: 700;
  background-color: var(--theme-primary-color);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .secondary-btn {
    padding: 12px 0px;
    /* min-width: 160px; */
  }
}

/* .secondary-btn {
  line-height: 1.1;
  border-color: #5E7153;
  color: #5E7153;
  background-color: transparent;
} */
.secondary-btn:hover {
  /* border-width: 3px; */
}

.sub-menu-overlay {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.sub-menu-overlay.show {
  transform: translateX(0);
}

.sub-menu-item {
  transition: background-color 0.2s ease;
}

.sub-menu-item:hover {
  background-color: rgba(94, 113, 83, 0.05);
}

.sub-menu-item a {
  transition: color 0.2s ease;
}

.sub-menu-back,
.sub-menu-close {
  transition: opacity 0.2s ease;
}

.sub-menu-back:hover,
.sub-menu-close:hover {
  opacity: 0.7;
}

.product-filter-section .tabs__list {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs .tabs__trigger {
  position: relative;
  font-family: 'Archivo';
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--theme-body-color);
  padding: 8px 0;
  cursor: pointer;
  transition: color 0.2s ease;
  padding-inline: 14px;
  /*  white-space: nowrap;*/
  min-height: 20px;
  line-height: 1;
}

.tabs .tabs__trigger.is-active {
  color: var(--theme-primary-color);
  font-weight: 900;
}

.tabs .tabs__trigger.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 3px;
  background: var(--theme-primary-color);
  border-radius: 4px;
}

.toggle-btn.active {
  font-weight: 700;
}

.swiper-slide .add-to-cart {
  /* text-transform: uppercase; */
}

.hero-swiper .hero-title.theme-slider-heading {
  text-wrap: nowrap;
}

@media (max-width: 1024px) {
  .tabs .tabs__trigger.is-active::after {
    bottom: 0px;
  }

  .theme-slider-heading {
    font-size: 70px;
  }

  .hero-swiper .hero-title.theme-slider-heading {
    text-wrap: auto;
  }

  .products-prev,
  .products-next {
    top: 38% !important;
  }

  .blog-slider-wrapper .products-prev,
  .blog-slider-wrapper .products-next {
    top: -5% !important;
  }

  .service-index-sec .products-prev,
  .service-index-sec .products-next {
    top: 28% !important;
  }
  aside.sidebar.desktop-user-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .tabs .tabs__trigger.is-active::after {
    height: 1px;
  }

  .tabs .tabs__trigger {
    padding-inline: 0;
  }

  .tabs .tabs__panels {
    margin-top: 0;
  }
}

@media (max-width: 479px) {
.theme-slider-heading {
  font-size: 40px;
  display: contents;
}
.products-prev {left: 15px;}
.products-next {right: 15px;}
.product-filter-section .tabs__list button.tabs__trigger {
  border: 1px solid var(--theme-border-color);
  width: 100px;
  padding: 10px;
}
.product-filter-section .tabs__list button.tabs__trigger.is-active {
  border-color: var(--theme-primary-color);
  font-weight: 600;
    
}
.product-filter-section .tabs__list button.tabs__trigger.is-active::after {
  display: none;
}

.hero .swiper-wrapper .swiper-slide {
  height: stretch;
}
.service-index-sec .products-prev, .service-index-sec .products-next {
  top: 33% !important;
}
.product-all-slider .pro-content-slider.pro-slider-text {
  min-height: 65vw !important;
}
.footer_content .description p:last-child {
    display: inline-flex;
    flex-direction: column;
}
.tab-products-swiper .card-body .price {
    font-size: 14px;
}

}


.tabs .tabs__panels {
  margin-top: 24px;
  position: relative;
  height: 100%;
  background: var(--theme-white);
}

.tabs .tabs__panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.product-filter-section .tabs .tabs__panel.is-active {
  border-bottom: none;
}

.tabs .tabs__panel.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  border-bottom: 1px solid var(--theme-border-color);
  margin-bottom: 1px;
}

.tabs .tabs__panel.is-active.is-fading-out {
  opacity: 0;
  transform: translateY(10px);
}

/* .swiper-pagination.second-active span.swiper-pagination-bullet {
  border: 1px solid #4E361E;
}
.swiper-pagination.second-active span.swiper-pagination-bullet-active {
  background-color: #4E361E;
}

.swiper-pagination.third-active span.swiper-pagination-bullet {
  border: 1px solid #5E7153;
}
.swiper-pagination.third-active span.swiper-pagination-bullet-active {
  background-color: #5E7153;
} */

.swiper-pagination {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 12px);
  bottom: 46px !important;
  margin-inline: auto;
  right: 0;
  left: 0;
  padding-inline: 44px;
  max-width: 40rem;
}

@media (min-width: 768px) {
  .swiper-pagination {
    bottom: 30px !important;
  }
}

@media (width >=48rem) {
  .swiper-pagination {
    /*    max-width: 43rem;*/
    padding-inline: 0;
  }
}

@media (width >=64rem) {
  .swiper-pagination {
    /*    max-width: 62rem;*/
  }
}

@media (width >=80rem) {
  .swiper-pagination {
    /*    max-width: 78rem;*/
  }
}

@media (width >=96rem) {
  .swiper-pagination {
    /*    max-width: 93rem;*/
  }
}

.swiper-pagination {
  max-width: 1294px;
  padding-inline: 30px;
}

.swiper-pagination span.swiper-pagination-bullet {
  margin: 0 !important;
  width: 08px;
  height: 08px;
  background-color: transparent;
  border: 1px solid var(--theme-primary-color);
  opacity: 1;
  transition: 300ms all ease-in-out;
}

@media (max-width: 768px) {
  .swiper-pagination span.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}

.swiper-pagination span.swiper-pagination-bullet-active {
  /* width: 14px;
  height: 14px; */
  background-color: var(--theme-button-bg);
}

@media (max-width: 768px) {
  .swiper-pagination span.swiper-pagination-bullet-active {
    /* width: 10px;
    height: 10px; */
  }
}

.eco-sustain .swiper-pagination {
  bottom: 0 !important;
  top: auto !important;
  padding-block: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  justify-content: center;
  min-height: 40px;
}

.eco-sustain .swiper-pagination .swiper-pagination-bullet {
  border-color: var(--theme-primary-color);
}

.eco-sustain .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--theme-primary-color);
}

.product_cat_tabs button:not(.products-next, .products-prev) {
  width: 100%;
  flex: 1;
  transition: 200ms all ease-in-out !important;
  /* text-transform: uppercase; */
  padding: 10px !important;
}

@media (max-width: 768px) {
  .product_cat_tabs button:not(.products-next, .products-prev) {
    padding: 5px !important;
    font-size: 12px;
  }
}

.product_cat_tabs button:not(.products-next, .products-prev) .figure {
  border: 1px solid transparent;
  border-radius: 5px;
  height: 100%;
  display: grid;
  place-content: center;
}

.product_cat_tabs button:not(.products-next, .products-prev) img {
  margin: auto;
  transform: translateY(25px);
  transition: 300ms all ease-in-out;
  width: 80px;

}

@media (max-width: 768px) {
  .product_cat_tabs button:not(.products-next, .products-prev) img {
    max-width: 14.2vw;
  }
}

.product_cat_tabs button:not(.products-next, .products-prev) .cat_name {
  opacity: 0;
  color: var(--theme-cat-bg);
  transition: 300ms all ease-in-out;
  font-weight: 400;
  font-size: 16px;
}

.product_cat_tabs button:not(.products-next, .products-prev):hover {
  background: var(--theme-cat-ho-act);
}

.product_cat_tabs button:not(.products-next, .products-prev):hover img {
  scale: 0.7;
  transform: translateY(0);
  filter: brightness(50);
}

/* .product_cat_tabs button:not(.products-next, .products-prev):hover .cat_name {
  opacity: 1;
} */

.product_cat_tabs .tabs__trigger.is-active {
  background: var(--theme-cat-ho-act);
}

.product_cat_tabs .tabs__trigger.is-active::after {
  display: none;
}

.product_cat_tabs .tabs__trigger.is-active img {
  scale: 0.7;
  transform: translateY(0);
  filter: brightness(50);
}

.product_cat_tabs .tabs__trigger.is-active .figure {
  border: 1px solid var(--theme-cat-act-border);
  border-radius: 5px;
}

.product_cat_tabs .tabs__trigger.is-active .cat_name {
  opacity: 1;
  /* font-weight: bold; */
  font-size: 16px;
}

@media (max-width: 768px) {
  .product_cat_tabs .tabs__trigger.is-active .cat_name {
    font-weight: normal;
  }
}

.default-heading:has(~ .tabs__panel.is-active) {
  display: none;
}

form .form_control {
  margin-bottom: 9px;
  padding-block: 18px;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--theme-primary-color);
  width: 100%;
  cursor: pointer;
  transition: 300ms all ease-in-out;
  color: var(--theme-primary-color);
  /* text-transform: uppercase; */
}

form .form_control::placeholder {
  color: var(--theme-primary-color);
}

/* form .form_control:hover, form .form_control:focus {
  border: 1px solid var(--theme-primary-color);
  border-radius: 5px;
  padding-inline-start: 18px;
  box-shadow: none;
  outline: none;
} */
form .form_control:focus {
  outline: none;
}

.form-submit-btn {
  background-color: var(--theme-footer-icon-bg);
  border-radius: 5px;
  color: var(--theme-footer-icon);
  padding: 14px 20px;
  cursor: pointer;
  margin-inline-start: -5px;
}

@media (max-width: 768px) {
  .form-submit-btn {
    font-size: 12px;
    padding: 10px 15px;
  }
}

.newsform .form_control {
  margin: 0;
  border-bottom-color: var(--theme-footer-icon-bg);
  /* border-radius: 5px 0 0 5px !important; */
  padding-block: 10px;
}

.newsform .form_control::placeholder {
  color: var(--theme-footer-text);
}

.newsform .form_control:hover {
  /* border-color: var(--theme-footer-text); */
}

header .menu a,
header .mega-menu a {
  transition: 200ms all ease-in-out;
}

header .menu a:hover,
header .mega-menu a:hover {
  font-weight: 700;
}

header .menu.active>a,
header .mega-menu-item.active>a {
  background: var(--theme-button-bg);
  color: var(--theme-bg-color);
  padding: 4px 10px;
  border-radius: 100px;
}

header .menu a.active,
header .mega-menu a.active {
  /* font-weight: 700; */
}

.navbar-menu li.menu.inactive-menu.mega-menu-item.active a.theme-text-primary.inactive-menu {
    background: transparent;
    color: #45576d;
}

.mega-menu-item .mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f8f8f8;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 600px;
  padding: 0;
  margin-top: 10px;
}

.mega-menu-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
  padding: 30px;
  max-height: 400px;
  overflow: auto;
  width: 900px;
}

.mega-menu-row.flex {
  gap: 25px;
}

.mega-menu-row.flex .mega-menu-column {
  width: -webkit-fill-available;
}

.menu-width-auto .mega-menu-row.flex .mega-menu-column {
  width: auto;
}

.mega-menu-row.flex .mega-menu-column a.mega-menu-category {
  margin-block: 10px;
  font-size: 13px;
  line-height: 20px;
  text-transform: capitalize;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 100%;
}

.mega-menu-category {
  display: block;
  color: var(--theme-primary-color);
  text-decoration: none;
  font-size: 14px;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.2s ease;
  /*  white-space: nowrap;*/
  line-height: normal;

}

.banner-bage {
  line-height: 1;
}

.swiper-slide.bg-primary .hero-left .font-secondary.lg\:text-secondary {
  /* color: #fff; */
}

.captcha-input {
  border: solid 1px #5e7153;
  border-radius: 5px;
  padding: 9px;
}

.captcha-input input:focus-visible {
  outline: none;
}





@media(min-width:1024px) {
  #product-tabs-list>.flex-1.w-full {
    max-width: 20%;
  }
}

@media (max-width: 768px) {
  .mega-menu-item .mega-menu {
    min-width: 90vw;
    left: 0;
    transform: none;
  }

  .mega-menu-item .mega-menu::before {
    left: 20px;
    transform: none;
  }

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

  .mega-menu-category {
    font-size: 12px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .mega-menu-category {
    font-size: 11px;
    padding: 8px 10px;
  }
}

.search-container {
  position: relative;
}

.search-field {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #5E7153;
  border-radius: 25px;
  padding: 2px 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 300px;
}

.search-field.active {
  opacity: 1;
  visibility: visible;
}

.search-input-container {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.search-input-icon {
  width: 18px;
  height: 18px;
  color: #fff;
  flex-shrink: 0;
}

.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  font-family: "Archivo", sans-serif;
  width: 100%;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-input:focus {
  outline: none;
}

.search-container:has(.search-field.active) .search-icon {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 768px) {
  .search-field {
    min-width: 250px;
    right: -50px;
  }
}

@media (max-width: 480px) {
  .search-field {
    min-width: 200px;
    right: -80px;
    padding: 6px 15px;
  }

  .search-input {
    font-size: 12px;
  }

  .search-input-icon {
    width: 16px;
    height: 16px;
  }
}

.mobile-toggle-switch .toggle-container {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-toggle-switch .toggle-btn {
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.mobile-toggle-switch .toggle-btn.active {
  background-color: var(--theme-primary-color);
  color: var(--theme-white);
}

.mobile-toggle-switch .toggle-btn:not(.active) {
  background-color: transparent;
  color: var(--theme-primary-color);
}

.mobile-toggle-switch .toggle-btn:not(.active):hover {
  background-color: rgba(94, 113, 83, 0.1);
}

.mobile-search-container .search-bar {
  transition: all 0.3s ease;
}

.mobile-search-container .search-bar:focus-within {
  border-color: #F9ECC9;
  box-shadow: 0 0 0 2px rgba(249, 236, 201, 0.2);
}

.mobile-search-container .search-bar input {
  font-size: 14px;
  font-family: "Archivo", sans-serif;
}

.mobile-search-container .search-bar input::placeholder {
  font-size: 14px;
  opacity: 0.8;
}

.mobile-menu-overlay {
  transition: 0.5s ease-in-out;
  transform: translateX(-100%);
  display: block;
}

.mobile-menu-overlay.active {
  transform: translateX(0%);
}

.mobile-menu-overlay .logo-icon {
  transition: all 0.3s ease;
}

.mobile-menu-overlay nav a {
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-overlay nav a:hover {
  color: var(--theme-primary-color);
  transform: translateY(-2px);
}

.mobile-menu-overlay nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--theme-primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mobile-menu-overlay nav a:hover::after {
  width: 60%;
}

.mobile-menu-overlay button {
  transition: all 0.3s ease;
  border: 1px solid var(--theme-border-color);
}

.mobile-menu-overlay button:hover {
  background-color: transparent;
  border-color: var(--theme-primary-color);
}

.mobile-category-item {
  padding-block: calc(var(--spacing) * 5.5);
}

.service-tabs.tabs .tabs__panels {
  margin-top: 0;
}










@media (max-width: 1024px) {
  .mobile-toggle-switch .toggle-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .mobile-search-container .search-bar {
    padding: 10px 16px;
  }

  .mobile-search-container .search-bar input {
    font-size: 13px;
  }

  .wishlist-content .lg\:grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offcanvas-footer {
    padding-inline: 20px;
  }

  .product-filter-section .tabs__list {
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
  }

  .genesis-edge__card {
    width: 100%;
  }

  .genesis-edge__card:not(:last-child) {
    margin-bottom: 30px;
  }

  .genesis-edge__card .svg-icon-code svg {
    width: 60px;
  }

  .foo_menu {
    text-align: center;
  }

  .swiper-pagination {
    bottom: 15px !important;
  }

}

@media (max-width: 768px) {
  .mobile-toggle-switch .toggle-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  .mobile-search-container .search-bar {
    padding: 8px 12px;
  }

  .mobile-search-container .search-bar input {
    font-size: 12px;
  }

  #product-tabs-list .category-tab {
    width: 25%;
  }

  .wishlist-content .lg\:grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }

  .secondary-btn:hover {
    font-weight: 600;
  }
.price-range-apply-btn {
  min-width: 85px !important;
  padding: 6px !important;
}
.contact-title br {display:none}

.service-item {justify-content: center;}
.blog-slider-text h2 {font-size: 30px !important;}
.single-blog-content {max-width: 100% !important;}

.blog-slider-wrapper .custom-prev {right: 40px;left: auto;}
body .single-blog-content .container .blog-title {font-size: 30px !important;}


}



@media (max-width: 480px) {
  .mobile-toggle-switch .toggle-btn {
    padding: 5px 10px;
  }

  .mobile-search-container .search-bar {
    padding: 6px 10px;
  }

  .mobile-search-container .search-bar input {
    font-size: 11px;
  }

  .mobile-menu-overlay nav a {
    font-size: 16px;
    padding: 12px 0;
  }

  .wishlist-item {
    flex-wrap: wrap;
  }

  .wishlist-img {
    border-bottom: solid 1px var(--theme-border-color);
  }

  .wishlist-img,
  .wishlist-content {
    width: 100% !important;
    border-left: none !important;
  }

  .wishlist-content {
    padding: 20px 15px !important;
  }

}


.product-filter-section .mobile-tab-panel {
  display: none !important;
}

.mobile-tab-panel.tabs__panel {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.product_grid_swiper.swiper-grid-column>.swiper-wrapper {
  flex-direction: row;
}


.wishlist-empty svg {
  width: 80px;
  margin: 0 auto 11px auto;
}

.wishlist-empty {
  text-align: center;
}

.related_slider .swiper-wrapper .swiper-slide {
  /* height: inherit; */
  height: auto;
}

.tab-products-swiper .swiper-wrapper .swiper-slide {
  height: initial;
}

.product-card:not(.related-product-card) {
  height: 100%;
}

.swiper-slide .product-card {
  border-right: 0px !important;
}

.swiper-slide:last-child .product-card {
  border-right-width: 1px;
}

.tab-products-swiper .shop-product-card figure img {
  aspect-ratio: 1/1;
  object-fit: contain;
}
.related-product-card {
    height: 100%;
}
.related-product-card .price {
    margin-bottom: 10px;
}
.service-index-sec .getting-swiper .img-box img {
  aspect-ratio: 652/621;
  object-fit: cover;
}

.service-index-sec .getting-swiper .grid .content-col {
  padding: 20px;
}

.product_cat_tabs .tabs__trigger.is-active .cls-1,
.product_cat_tabs button:not(.products-next, .products-prev):hover .cls-1 {
  fill: #fff;
}

.cart-page input[type="radio"] {
  accent-color: #CD171B;
}

.cart-page .cart-item-card {
  margin-bottom: 15px;
}

.grid-40 {
  grid-template-columns: 1fr 1.5fr;
  position: relative;
}

.cart_remove_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 25px;

}

.border-primary {
  border-color: var(--theme-primary-color);
}

.cart-left-border {
  padding: 20px 30px 20px 50px;
  /* border-left:solid 1px var(--theme-border-color); */
}

.cart-item-box {
  border-color: var(--theme-border-color);
}

.cart-item-box>a {
  border-right: solid 1px var(--theme-border-color);
  height: stretch;
}

.cart-item-card .cart-border img {
  aspect-ratio: 321/250;
  object-fit: contain;
}

.pro-var strong {
  display: none;
}

.cart_single_price {
  color: var(--theme-primary-color);
  font-weight: 900;
}

.pro-var {
  font-size: 10px;
  text-transform: uppercase;
  border: solid 1px;
  padding: 6px 11px 4px 11px;
}

.cart-order-heading {
  text-align: center;
  border-bottom: solid 1px;
  padding-bottom: 10px;
  font-size: 24px;
  color: #45576D;
  font-weight: 400;
}

.cart-coupon button#apply-coupon-btn {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.font-size-10 {
  font-size: 10px;
}

.brand-right .service-item:last-child {
  margin-bottom: 0;
}

.wish-list-btn .wishlist-btn {
  cursor: pointer;
}

.text-danger {
  color: var(--theme-wishlist-color);
}

.bg-green-500 {
  background-color: var(--theme-primary-color) !important;
}


select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 30px;

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='black' d='M31.3 192h257.4c28.4 0 42.7 34.5 22.6 54.6L182.6 375.3c-12.5 12.5-32.8 12.5-45.3 0L8.7 246.6C-11.4 226.5 2.9 192 31.3 192z'/></svg>");

  background-repeat: no-repeat;
  background-size: 10px;
  background-position: right 12px center;
}

.products-grid .shop-product-card figure img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media(max-width:1023px) {
  .cart-summery-sidebar {
    margin-top: 50px;
  }
}

@media(max-width:767px) {
  .cart-page .sm\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .related_slider .swiper-wrapper .swiper-slide {
    height: auto;
  }

  .text-2xl {
    font-size: 18px;
  }
}

@media(max-width:600px) {
  .grid-40 {
    grid-template-columns: 1fr;
  }

  .cart-left-border {
    border-left: none;
    border-top: solid 1px var(--theme-border-color);
    padding: 20px;
  }

  /* .captcha-display {
    max-width: 60px;
    min-width: 60px;
  } */
  .captcha-refresh-btn {
    max-width: 30px;
    min-width: 30px;
  }

  .captcha-input {
    width: 145px;
  }

  .captcha-input input.form-control {
    width: 100%;
  }
}



/*# sourceMappingURL=custom.css.map */

.products-grid {}

.products-grid .product-card {
  display: flex;
  flex-direction: column;
}

.products-grid .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.products-grid .product-actions-wrap {
  margin-top: auto;
}

h2.dash-primary {
  text-transform: uppercase;
}

.page-title-64 {
  font-size: 64px;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--theme-primary-color);
}

.tab-products-swiper .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.products-grid>.border {
  /* border-color: #BA947033 !important; */
}

button.swal2-confirm.swal2-styled {
  background: var(--theme-button-bg);
  color: var(--theme-button-text);
  border: 1px solid var(--theme-button-bg);
}

button.swal2-confirm.swal2-styled:hover {
  background: var(--theme-white);
  color: var(--theme-primary-color);
}

div:where(.swal2-icon).swal2-info {
  border-color: var(--theme-primary-color) !important;
  color: var(--theme-primary-color) !important;
}

.support-widget-button {
  background: var(--theme-button-bg) !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select.product-variant-select {
  min-width: 200px;
}


.subcategories-display::-webkit-scrollbar {
  width: 8px;
}

.subcategories-display::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.subcategories-display::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.subcategories-display::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.subcategories-grid .card {
  min-height: 200px;
}

.subcategories-grid .card figure {
  height: 150px;
}

.subcategories-grid .card img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}

.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.subcategories-grid .card {
  border: 1px solid var(--theme-border-color);
  margin: 0px 0 -1px -1px;
  /* collapse the borders like table-collapse */
}

.arrow {
  transform: rotate(90deg);
  height: auto;
  margin-right: 40px;
  margin-top: -30px;
  margin-bottom: 30px;
}

.arrow span {
  display: block;
  width: 1.5vw;
  height: 1.5vw;
  border-bottom: 5px solid var(--theme-primary-color);
  border-right: 5px solid var(--theme-primary-color);
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}

.footer-link {
  transition: ease-in-out 0.2s;
}

.footer-link:hover {
  color: var(--theme-primary-color);
  font-weight: 700;
}

.link_type_clas {
  color: var(--theme-primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.link_type_clas:hover {
  color: #d67a15;
}


.products-prev,
.products-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--theme-white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

.products-prev[disabled],
.products-next[disabled] {
  opacity: 0.5;
  cursor: no-drop;
}

.country-dropdown .country-option,
.language-dropdown .language-option {
  font-size: 14px;
}

.swal2-toast1 {
  width: 28em;
}

.swal2-toast1 div:where(.swal2-icon) {
  margin: 1em auto 0em;
}

.swal2-toast1 div:where(.swal2-container) h2:where(.swal2-title) {
  padding-top: 10px;
}

.eco-slider .swiper-wrapper {
  /* height: 550px !important; */
  height: 28.65vw !important;
}

.eco-slider .swiper-wrapper .swiper-slide {
  height: 100%;
  object-fit: cover;
}

.eco-slider .swiper-wrapper .swiper-slide img {
  object-fit: cover;
  height: stretch;
}

@media (max-width: 1280px) {
  .product-info .wish-list-btn {
    right: 18px !important;
  }

  .share-wrapper {
    right: 20px !important;
  }
}

@media (max-width: 1024px) {
  .eco-slider .swiper-wrapper {
    height: 400px !important;
  }

  .product-info {
    max-width: 100%;
  }

  .cart_remove_btn {
    right: 10px;
    top: 10px;
  }

  #wishlistFooter.offcanvas-container button {
    width: 160px;
  }

}

@media (max-width: 768px) {
  .cart-item-box>a {
    border-right: none !important;
  }
}

@media (max-width: 479px) {
  .eco-slider .swiper-wrapper {
    height: 250px !important;
  }

}

/* Custom JS Form Validation Styles */
.js-error-message {
  color: #dc2626;
  /* Tailwind red-600 */
  font-size: 0.875rem;
  /* text-sm */
  margin-top: 0.25rem;
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
}

/* Ensure field containers and global alerts have scroll margin so context isn't hidden under headers */
.auth-field,
.form-group,
.md\:col-span-2,
.sm\:col-span-2,
.alert-error,
.alert-danger,
.auth-alert-error {
  scroll-margin-top: 120px;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: var(--theme-wishlist-color) !important;
  background-color: #fef2f2 !important;
}

input.is-invalid:focus,
select.is-invalid:focus,
textarea.is-invalid:focus {
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2) !important;
}

div:where(.swal2-icon) {display: none !important;}

.product_cat_tabs button:not(.products-next, .products-prev) .cat_name {
  opacity: 1;
  color: var(--theme-primary-color);
}

.product_cat_tabs button:not(.products-next, .products-prev):hover .cat_name {
  color: var(--theme-white);
}

.product_cat_tabs .tabs__trigger.is-active .cat_name {
  color: var(--theme-cat-bg);
}

.product_cat_tabs button:not(.products-next, .products-prev) .cat-svg-code svg {
  scale: 0.7;
  transform: translateY(-10px);
  transition: 200ms all ease-in-out !important;
}
/* ------------------------------------------------------------------
   Pre-initialisation state for the product sliders.

   Before Swiper runs, .swiper-wrapper is a plain block and every slide
   stacks vertically at full width, so the "What's New" section briefly
   occupies thousands of pixels and then collapses into a row.

   Swiper adds .swiper-initialized to the container once it takes over,
   so these rules apply only during that gap and then stop matching.
   ------------------------------------------------------------------ */
.tab-products-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

/* These widths MUST mirror the Swiper breakpoints in
   templates/content.blade.php exactly, or the row visibly re-flows the moment
   Swiper takes over. They previously did not:

     width       pre-init CSS   Swiper slidesPerView
     < 768       2 across       1
     768-1023    4 across       2
     1024-1279   5 across       3
     >= 1280     5 across       4     <- the "5 products, then 4" jump

   Swiper breakpoints are min-width and cascade, so the mapping is
   1 / 1 / 2 / 3 / 4 at <640 / 640 / 768 / 1024 / 1280. */
.tab-products-swiper:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .tab-products-swiper:not(.swiper-initialized) .swiper-slide {
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media (min-width: 1024px) {
    .tab-products-swiper:not(.swiper-initialized) .swiper-slide {
        flex-basis: 33.3333%;
        max-width: 33.3333%;
    }
}

@media (min-width: 1280px) {
    .tab-products-swiper:not(.swiper-initialized) .swiper-slide {
        flex-basis: 25%;
        max-width: 25%;
    }
}
