/* For WebKit browsers */
/* ::-webkit-scrollbar {
  width: 3px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
} */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

.ws_search_search-bar {
  max-width: 100%;
  margin: 40px auto 15px;
  width: 40%;
}

.quick_search-bar {
  max-width: 100%;
  margin: 0 auto 15px;
  width: 60%;
}

.ws_search_search__input:focus-visible {
  outline: none;
  outline-offset: none;
}

.ws_search_suggestion {
  visibility: hidden;
  border-top: 1px solid #F1F1F1;
  opacity: 0;
  width: 100%;
  background-color: #fff;
  padding: 15px;
  transition: opacity 0.3s ease, visibility 0.3s ease;

  &.active {
    opacity: 1;
    visibility: visible;
  }

  .ws_search_suggestion__content {
    display: block;
    margin: 0 auto;
  }
}

.ws_search_hide-element {
  display: none !important;
}

.ws_search_mobile-search {
  margin: 0 1em;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100%;
}

.ws_search_close-icon {
  color: #909090 !important;
  position: absolute !important;
  right: 8% !important;
  font-size: 1rem;
}

@keyframes rotation-show {
  0% {
    transform: perspective(1000px) rotateX(-90deg);
  }

  100% {
    transform: perspective(1000px) translateY(0);
  }
}

/* .ws_search_suggestions-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.ws_search_suggestions {
  flex: 1;
  max-width: 250px;
}

.ws_search_suggestions h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.ws_search_suggestions ul {
  list-style-type: none;
  margin-bottom: 20px;
}

.ws_search_suggestions ul li {
  color: #318ebb;
  cursor: pointer;
  transition: color 0.3s;
}

.ws_search_suggestions ul li:hover {
  color: #13587b;
} */

.ws_search_product-list {
  flex: 3;
  display: flex;
  gap: 20px;
}

/* .ws_search_product {
  text-align: center;
  background: #fff;
}

.ws_search_product img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.ws_search_product h5 {
  font-size: 1rem;
  margin: 10px 0;
} */

.ws_search_price {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  gap: 10px;
  flex-wrap: wrap;
}

.list-view .ws_search_price {
  justify-content: start;
}

.ws_search_price .ws-src-price {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}



.ws_search_new-price {
  color: green;
  font-weight: bold;
}

.ws_search_old-price {
  text-decoration: line-through;
  color: gray;
  margin-left: 5px;
}

.ws_search_main_div {
  display: flex;
  gap: 40px;
}

.ws_search_term {
  width: 30%;
}

.ws_search_search_sidebar .ws_search_mb-3 {
  border-bottom: 1px solid #e1e1e1b3;
  padding: 5px 0;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
  margin-top: 15px;
}

.ws_search_products {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ws_search_product-card-grid {
  border-radius: 10px;
  transition: transform 0.3s ease;
  overflow: hidden;
  justify-content: space-between;
  text-align: center;
  padding: 10px;
  border: 1px solid #dfdfdf;
  background-color: #FBFBFB
}

.quick_view_grid {
  border-radius: 10px;
  transition: transform 0.3s ease;
  overflow: hidden;
  justify-content: space-between;
  text-align: center;
  padding: 10px;
}

.quick_view_grid .ws_card-img-top {
  width: 100%;
  object-fit: contain;
}

.ws_search_four_layout .ws_search_product-card-grid .ws_card-img-top,
.ws_search_five_layout .ws_search_product-card-grid .ws_card-img-top {
  width: 100%;
}

.ws_search_three_layout .ws_search_product-card-grid .ws_card-img-top {
  width: 100%;
}

.ws_search_text-center {
  text-align: center;
}

.ws_search_cursor {
  cursor: pointer;
  color: #333;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 12px;
}

.ws_search_suggestion-item {
  cursor: pointer;
  color: #333;
  font-size: 12px;
  text-transform: capitalize;
}


/* .ws-search_input-box {
  position: relative;
  width: 100%;
  max-width: 60px;
  height: 55px;
  margin: 0 50px;
  background-color: #fff;
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
} */

/* .ws-search_input-box.open {
  max-width: 350px;
} */

/* .ws-search_input-box input {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  padding: 0 15px;
  border: none;
  border-radius: 6px;
  outline: none;
  transition: all 0.5s ease-in-out;
} */

/* .ws-search_input-box.open input {
  padding: 0 15px 0 65px;
} */

/* .ws-search_input-box .search {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
} */

/* .ws-search_input-box.open .search {
  border-radius: 6px 0 0 6px;
} */

.search .search-icon {
  font-size: 30px;
  color: #1c1c1c;
}

/* .ws-search_input-box .ws_search_close-icon {
  position: absolute;
  top: 50%;
  right: -45px;
  font-size: 30px;
  color: #1c1c1c;
  padding: 5px;
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
} */

/* .ws-search_input-box.open .ws_search_close-icon {
  transform: translateY(-50%) rotate(180deg);
  pointer-events: auto;
  opacity: 1;
} */

#customSearchModal_search {
  display: none;
  top: 62px;
  left: 0;
  width: 100%;
  position: absolute;
  z-index: 9999;
  right: 0;
  margin: 0 auto;
  padding: 22px;
  transition: all 0.5s ease-in-out;
}

.ws_search_search-modal--open #customSearchModal_search {
  display: block;
}

.ws_search_search-modal__close {
  font-size: 30px;
  background: transparent;
  border: none;
  color: #000;
  cursor: pointer;
  margin: 0 !important;
}

.wiser_search {
  width: 64%;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  min-height: 60vh;
  position: relative;
  box-shadow: 0px 4px 11px -3px;
}

div#wiser_search1 {
  display: flex;
  gap: 20px;
}

.ws_search_product_list {
  width: 100%;
}

.ws_search_card-title {
  margin: 0;
  text-decoration: none;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ws_search_card-body {
  padding: 10px 5px;
}

.evm_product_list .ws_search_card-body {
  padding: 15px 10px;
}

.ws_textDnone {
  text-decoration: none;
}

.ws_search_card-title {
  margin: 0;
  text-decoration: none;
  font-size: 14px;
}

.search_addtocart {
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  border: 1px solid #222;
  background: transparent;
  font-size: 14px;
  color: #222;
}

.search_addtocart_list {
  margin: 0;
}

.grid-view .search_addtocart {
  width: 80%;
  margin: 0 auto;
}

.search_addtocart:hover {
  background: #000 !important;
  color: #fff !important;
}

.ws_search_price .price-item {
  color: #979797;
}

/*skelton css*/
.ws_search_skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
}

.ws_search_view_more {
  text-align: center;
  color: #333;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}

.powerdby {
  text-align: right;
  font-size: 10px;
  position: absolute;
  right: 40px;
  bottom: 10px;
}

.suggestion-items {
  cursor: pointer;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.main_div_skelton {
  display: flex;
  gap: 40px;
}

.collection_skelton,
.products_skelton {
  width: 100%;
}

.search_term_skelton {
  width: 30%;
}

.search_term_skelton .ws_skelton_ul,
.collection_skelton .ws_skelton_ul {
  list-style: none;
  padding: 0;
}

.ws_search_skeleton-text {
  width: 100%;
  height: 16px;
  margin: 10px 0;
  list-style: none;
}

.ws_search_skeleton-box {
  width: 100%;
  height: 100px;
  margin: 10px 0;
}

.products_skelton {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.product-card-grid_skelton {
  flex: 1 1 calc(25% - 20px);
  /* 4 items per row without setting a fixed width */
  height: 250px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.ws_search_skeleton-image {
  width: 100%;
  height: 150px;
  border-radius: 8px;
}

.ws_search_skeleton-button {
  width: 100px;
  height: 30px;
  margin-top: 10px;
  border-radius: 5px;
}

.ws_Search_overflow-hidden {
  overflow: auto;
}

/*search css*/
.evm_search {
  display: flex;
  gap: 40px;
  width: 80%;
  margin: 0 auto 20px;
}

.evm_product_list {
  display: grid;
  gap: 1.5rem;
  margin-top: 20px;
}

.ws_search_three_layout {
  grid-template-columns: repeat(3, 1fr);
}

.ws_search_four_layout {
  grid-template-columns: repeat(4, 1fr);
}

.ws_search_five_layout {
  grid-template-columns: repeat(5, 1fr);
}


/* Notification container */
#ws_search_notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

/* Notification styles */
.ws_search_notification {
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ws_search_notification.show {
  opacity: 1;
  transform: translateX(0);
}

/* Notification types */
.ws_search_notification.success {
  background-color: #28a745;
}

.ws_search_notification.error {
  background-color: #dc3545;
}

.ws_search_notification.info {
  background-color: #17a2b8;
}

.ws_search_notification.warning {
  background-color: #ffc107;
  color: black;
}

.ws_search_filter_data {
  position: relative;
  height: 100%;
  width: 100%;
}

#ws-search_overlay {
  z-index: 100;
  display: none;
  height: 98%;
  width: 100%;
}

.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.ws_search_spinner {
  width: 12px;
  height: 12px;
  border: 2px #ccc solid;
  border-top: 2px #000 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
  margin-top: 3px;
  margin-left: 5px;
  display: inline-block;
}

@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}

.ws_search_is-hide {
  display: none;
}

.search_sidebar_overlay {
  width: 25%;
  max-width: 300px;
}

.ws_search_search_sidebar .ws_search_mb-3 {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.evm_righ_section {
  width: 75%;
}

.reset_link {
  border-bottom: 1px solid;
  cursor: pointer;
  font-size: 14px;
}

.ws_search_search_dropdown .ws_search_dropdown_ul {
  padding: 0;
  margin: 0;
}

.ws_search_search_dropdown .ws_search_dropdown_li {
  list-style: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 5px 0;
}

.ws_search_search_page {
  position: relative;
}

.ws_search_sort_box .ws_search_mb-3 {
  margin: 0;
}

select#sortBy {
  border: none;
  width: 20px;
}

select#sortBy:focus-visible {
  border: none;
  outline: none;
  outline-offset: unset;
  box-shadow: none;
}

.custom-wrapper {
  width: 100%;
}

.price-input-container {
  width: 100%;
  padding: 6px 0;
}

.ws_search_price-field .ws_search_priceInput {
  flex: 1;
  height: 35px;
  font-size: 14px;
  border-radius: 6px;
  text-align: center;
  width: 60px;
  padding: 4px 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: 1px solid #00000017;
}

.pws_search_price-field .ws_search_priceInput:focus-visible {
  outline: none;
  box-shadow: none;
}

.ws_search_price-input {
  font-size: 14px;
  color: #555;
  margin-top: 30px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}


.ws_search_price-field .ws_search_priceInput::-webkit-outer-spin-button,
.ws_search_price-field .ws_search_priceInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ws_price_slider {
  height: 6px;
  position: relative;
  background: #EEEDEF;
  border-radius: 5px;
  width: 100%;
}

.ws_price_slider .price-slider {
  height: 100%;
  position: absolute;
  border-radius: 5px;
  background: #5a5a5a;
  display: block !important;
}

.ws_search_range-input {
  position: relative;
}

.ws_search_range-input .ws_search_rangeInput {
  position: absolute;
  width: 100%;
  height: 5px;
  background: none;
  top: -14px;
  pointer-events: none;
  cursor: pointer;
  -webkit-appearance: none;
}


.ws_search_rangeInput[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  background-color: #474747;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  pointer-events: all;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.ws_search_hover-underline-animation {
  display: block;
  position: relative;
  width: max-content;
}

.ws_search_hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #a3a2a2;
  transition: transform 0.25s ease-out;
}

.ws_search_hover-underline-animation:hover::after {
  transform: scaleX(1);
}

.ws_search_hover-underline-animation::after {
  transform-origin: bottom right;
}

.ws_search_hover-underline-animation:hover::after {
  transform-origin: bottom left;
}

.ws_search_search-bar.evm-search-page {
  width: 35%;
}

.ws_search_custom_attribute {
  margin-left: 10px;
}

.ws_search_collapse-content {
  max-height: 200px;
  overflow-y: auto;
}

.ws_search_custom_attribute .ws_search_collapse-content {
  margin-top: 15px;
}

.evm_filter {
  border-bottom: 1px solid #e1e1e1b3;
  padding: 7px 0;
  color: #222;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
}

.ws_search_custom_attribute .ws_search_mb-3 {
  font-size: 12px;
  border-bottom: 1px solid #e1e1e1b3;
  padding: 5px 0;
  margin-bottom: 5px;
  color: #222;
  text-transform: capitalize;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.ws_search_custom_attribute .ws_search_toggle-icon {
  font-size: 10px;
}

.ws_search_filter_data .ws_search_no_prod {
  border-bottom: 1px solid #e1e1e1b3;
  padding: 30px 0;
  color: #333;
  text-transform: capitalize;
  font-size: 16px;
  margin-top: 0;
}

.ws_search_toggle-icon {
  font-size: 10px;
  color: #222;
  text-align: center;
  border-radius: 50%;
  font-weight: 400;
  cursor: pointer;
}

.evm_collection_list.collection_carousel {
  margin-top: 15px;
}

.result_search .ws_search_search-bar {
  width: 40%;
}

.evm_count_sort {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}

.ws_search_sort_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #e1e1e1b3;
  padding-bottom: 10px;
}

.evm_search_layout {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ws_search_layout_btn .ws_btn_svg {
  opacity: 0.3;
}

.ws_search_layout_btn {
  display: flex;
  cursor: pointer;
  padding: 4px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid #00000017;
}

.ws_search_layout_btn:hover .ws_btn_svg,
.ws_search_layout_btn.active .ws_btn_svg {
  opacity: 1;
}

.custom-sort-box {
  position: relative;
}

.ws_search_custom-select {
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
  color: #222;
  font-weight: bold;
  border: 1px solid #00000017;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 140px;
  justify-content: space-between;
}

.ws_search_arrow-icon {
  line-height: 12px;
}

.ws_search_arrow-down {
  font-size: 14px;
}

.ws_search_select-options {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  border-top: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 99;
  width: 140px;
  padding: 0;
  margin: 0;
}

.ws_search_select-options .sort_li {
  list-style: none;
  padding: 2px 15px;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s ease;
  font-size: 12px;
  color: #000;
}

.ws_search_select-options .sort_li:hover {
  background-color: #f0f0f0;
}

.ws_search_select-options.open {
  max-height: 300px;
  box-shadow: 0px 2px 8px -3px rgba(0, 0, 0, 0.5);
}

.ws_search_bottm_pagination {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  margin-top: 25px;
  width: 100%;
}

.ws_search_term .ws_searchterm_h5 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #000;
  font-size: 14px;
}

.quick_view_col .ws_searchterm_h5 {
  font-weight: 600;
  color: #000;
  font-size: 14px;
}

/*serchbox input*/
.searchBox-fakeInput {
  background: white;
  display: table;
  border-radius: 25px;
  border: 1px solid #ccc;
  /*  box-shadow: 0px 0px 12px 0px #cccccc;*/
  width: 100%;
}

.searchBox-inputWrapper,
.searchBox-clearWrapper {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}

.ws_search_searchBox-input {
  background-color: transparent;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 0.5rem;
  font-size: 14px;
  padding: 10px 40px;
  position: relative;
  background: url(/wiser-search/css/search-icon.webp) #ffffff;
  background-repeat: no-repeat;
  background-position: 1rem 50%;
  background-size: 20px;
  transition: background .3s ease-out, opacity .5s ease-out;
  width: 100%;
  color: #232323;
  background-color: #fff;
  border-radius: 25px !important;
  border: none !important;
  margin: 0 !important;
}

.ws_search_searchBox-input:focus {
  box-shadow: none !important;
}

.searchBox-fakeInput:has(.ws_search_searchBox-input:focus) {
  box-shadow: 0px 0px 12px 0px #cccccc !important;
}

.searchBox-clearWrapper {
  padding-right: 0.5rem;
}

.ws_search_searchBox-clear {
  color: #4c4c4c;
  padding: 0;
  padding-right: 10px;
  cursor: pointer;
  font-size: inherit;
  cursor: pointer;
  line-height: 1.5;
  -webkit-transition: all 3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.searchBox-clearInput:hover {
  color: #AAA;
}

/*search page skelton*/
.evm_skeleton {
  background: linear-gradient(to right, #e0e0e0 8%, #f5f5f5 18%, #e0e0e0 33%);
  background-size: 1000px 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 8px;
  display: block !important;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.evm_skeleton_container {
  display: flex;
  gap: 24px;
  padding: 24px;
}

.evm_skeleton_sidebar {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.evm_skeleton_filter-title {
  height: 20px;
  width: 70%;
}

.evm_skeleton_filter-item {
  height: 14px;
  width: 80%;
}

.evm_skeleton_content {
  flex: 1;
}

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

.evm_skeleton_product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.evm_skeleton-box {
  background: linear-gradient(to right,
      #e0e0e0 8%,
      #f0f0f0 18%,
      #e0e0e0 33%);
  background-size: 1000px 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 8px;
  display: block !important;
}

.evm_skeleton_product-image {
  height: 160px;
  border-radius: 12px;
}

.evm_skeleton_product-title {
  height: 16px;
  width: 70%;
}

.evm_skeleton_product-price {
  height: 14px;
  width: 40%;
}

.evm_skeleton_product-button {
  height: 36px;
  width: 100%;
  border-radius: 9999px;
}

.evm_skeleton_search-bar {
  height: 40px;
  width: 50%;
  border-radius: 9999px;
  margin: 20px auto;
}

.evm_skeleton_sidebar {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.ws_search_sidebar_filter_box {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.evm_product_pagination .ws_search_pagBtn {
  border: 1px solid;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  padding: 10px !important;
  height: 40px !important;
  width: 40px !important;
  line-height: normal !important;
  margin: 0;
}

.evm_product_pagination button:not(:disabled):hover {
  background: #000;
  color: #fff;
}

.evm_product_pagination button:not(:disabled):hover svg path {
  fill: #fff;
}

.evm_product_pagination button:disabled {
  cursor: auto;
}

.evm_product_pagination {
  display: flex;
  gap: 15px;
}

.ws_search_search_dropdown .ws_search_dropdown_li .evm_filter_num {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ws_search_search_dropdown .ws_search_collapse-content {
  padding-right: 8px;
}

.ws_search_product-card-grid:hover .search_addtocart {
  opacity: 1;
}

.ws_search_product-image-container.ws-search_has-secondary {
  position: relative;
  display: block;
}

.ws-search_has-secondary .secondary-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ws-search_has-secondary:hover .secondary-image {
  opacity: 1;
}

.ws-search_has-secondary:hover .primary-image {
  opacity: 0;
}

/* Label base styles */
/* .ws_search_color_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 3px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin: 2px;
  transition: border-color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.ws_search_color_label .ws_search_colorcircle {
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 12px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.ws_search_color_label:hover {
  border-color: #222;
}

input[type="checkbox"]:checked+.ws_search_color_label {
  border-color: #000;
} */

.ws_search_color_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 3px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin: 2px;
  transition: border-color 0.2s ease;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.ws_search_color_label .ws_search_colorcircle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: border-color 0.2s ease;
}

.ws_search_color_label:hover {
  border-color: #222;
}

/* ✅ Checked style when input is inside label */
.ws_search_color_label input[type="checkbox"]:checked+.ws_search_colorcircle {
  border: 2px solid #000 !important;
}


.evm_tagnum {
  display: flex;
  padding: 4px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: 1px solid #00000017;
}

.search_tag {
  flex-wrap: wrap;
}

input[type="checkbox"]:checked+.evm_tagnum {
  background: #000;
  color: #fff;
}
input[type="checkbox"]:checked+.evm_tagnum .ws_search_tagname_span{
color: #fff;
}
.vendor_label {
  display: flex;
  width: 100%;
}

.ws_search_vendor_search {
  width: 75%;
  margin: 0 auto;
  display: block;
  margin-bottom: 15px;
  border-radius: 25px;
  padding: 9px;
  border: 1px solid #ccc;
  font-size: 12px;
  margin-top: 8px;
}

.ws_search_vendor_search:focus {
  box-shadow: 0px 0px 12px 0px #cccccc;
  outline: none;
}

.option-box {
  list-style: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.option-label {
  display: flex;
  padding: 4px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-size: 12px;
  border: 1px solid #00000017;
  color: #000;
}

.evm_tagnum .ws_search_tagname_span {
  font-size: 12px;
  color: #000;
}

.ws_search_option_list {
  margin: 0 !important;
}

input[type="checkbox"]:checked+label.option-label {
  background: #000;
  color: #fff;
}

/*list view css*/
.evm_product_list.list-view {
  flex-direction: column;
  display: block;
  margin-top: 10px;
}

.ws_search_mb_4 {
  position: relative;
}

.ws_search_product-card-list .message-wrapper {
  position: absolute;
  right: 0;
  line-height: 17px;
  font-size: 12px;
  color: green;
  bottom: auto;
}

.ws_search_product-card-grid .message-wrapper {
  position: absolute;
  right: 0;
  left: 0;
  line-height: 18px;
  font-size: 12px;
  color: green;
}

.quick_view_grid .message-wrapper {
  position: absolute;
  right: 0;
  left: 0;
  line-height: 18px;
  font-size: 12px;
  color: green;
}

.evm_product_list.list-view .ws_search_mb_4 {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.evm_product_list.list-view .ws_search_product-card-grid {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 20px;
}

.evm_product_list.list-view .ws_search_product-image-container .ws_card-img-top {
  display: block;
  width: 200px;
  transition: opacity 0.3s;
}

.ws_search_product-card-list {
  overflow: hidden;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px 10px 10px;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  background: #FBFBFB;
  display: grid;
  grid-template-columns: auto auto;
  gap: 2rem;
}

.ws_search_image_price_list {
  display: flex;
  align-items: center;
  gap: 30px;
}

#ws_search_filter_applied {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ws_search_applied-filter {
  display: flex;
  background: #000000;
  padding: 4px 4px 4px 10px;
  border-radius: 18px;
  font-size: 12px;
  align-items: center;
  color: #fff;
  line-height: 20px;
  gap: 5px;
}

.ws_search_applied-filter .remove-filter {
  background: none;
  border: none;
  margin-left: 0px;
  cursor: pointer;
  font-size: 20px;
  color: #ffffff;
  line-height: 0;
}

.ws_search_color_label {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #3d383859;
  margin: 5px;
  cursor: pointer;
  padding: 0;
}

.ws_search_color_label .ws_search_colorcircle {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: currentColor;
}

input[type="radio"]:checked+.ws_search_color_label {
  border: 2px solid black;
}

.d-none {
  display: none;
}

.ws_search_pre-animate {
  opacity: 0;
  transform: translateY(10px);
}

.ws_search_fade-in {
  transition: all 0.4s ease;
  opacity: 1;
  transform: translateY(0);
}

.variant-options_list:not(.d-none) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.mobile_filter_btn {
  display: none;
}

.mobile_sidebar_close_btn {
  display: none;
}

.ws_search_term {
  height: 350px;
  overflow-y: auto;
}

.color_swatches_res {
  display: flex;
  align-items: center;
}

.list_mobile_layout {
  display: none !important;
}

/* Hide native checkbox */
.ws_search_search_custom-checkbox input[type="checkbox"] {
  display: none;
}

/* Layout for label */
.ws_search_search_custom-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
}

/* Custom checkbox appearance */
.ws_search_search_custom-checkbox .search_checkmark {
  width: 18px;
  height: 16px;
  border: 2px solid #666;
  border-radius: 2px;
  position: relative;
  display: inline-block;
  transition: all 0.2s;
}

/* Checkmark when checked */
.ws_search_search_custom-checkbox input[type="checkbox"]:checked+.search_checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.ws_search_search_custom-checkbox input[type="checkbox"]:checked+.search_checkmark {
  background-color: #000000;
  border-color: #000000;
}

/* Text styling */
.ws_search_search_custom-checkbox .evm_filter_num {
  display: flex;
  gap: 4px;
}

.ws_search_search_custom-checkbox input[type="checkbox"]:disabled+.search_checkmark {
  border-color: #cbc9c9;
  background-color: #f2f2f2;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Optional: disable text appearance too */
.ws_search_search_custom-checkbox input[type="checkbox"]:disabled~.evm_filter_num {
  color: #999;
  cursor: not-allowed;
  opacity: 0.7;
}

.list_desktop_layout {
  text-align: left;
}

.ws_search_color_swatch_box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws_search_swatch.ws_search_more-swatches {
  text-align: center;
  color: #000;
  margin-left: 6px;
}

.grid_swatches_res {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quick_view_grid .ws_textDnone {
  text-decoration: none;
}

.ws_search_checkmark-icon {
  display: inline-block;
  width: 7px;
  height: 13px;
  border: solid #22c55e;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  margin-left: 8px;
  opacity: 0;
  animation: showCheck 0.4s ease forwards;
}

@keyframes showCheck {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  50% {
    transform: scale(1.2) rotate(45deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(45deg);
    opacity: 1;
  }
}

.ws_search_filter_data {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.ws_search_filter_data.fade-out {
  opacity: 0.5;
}

.evm_product_list .ws_search_badge--bottom-left {
  padding: 6px 15px;
  background: #000;
  color: #fff;
  border-radius: 24px;
  font-size: 12px;
}

.ws_search_card__badge {
  position: absolute;
  z-index: 1;
  top: 15px;
}

.ws_search_price .ws-src-price.ws-pdcmp-price {
  text-decoration: line-through;
  color: #787878;
}

.ws_search_suggestion-item {
  width: 90%;
  max-width: max-content;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;

}

.quick_view_col .ws_search_quickLi {
  list-style: none;
}

.quick_view_col .ws_search_list {
  margin: 0;
}


.list-view .search_addtocart {
  margin-top: 0;
}

@media only screen and (max-width: 1680px) {
  .ws_search_price {
    font-size: 12px;
  }

  .wiser_search {
    width: 80%;
  }

  .product-card-grid_skelton {
    flex: 1 1 calc(33% - 20px);
  }

  .ws_search_suggestion {
    height: 500px;
    overflow-y: auto;
  }
}

@media only screen and (max-width: 1440px) {
  .ws_search_search-bar {
    width: 60%;
  }

  .ws_search_five_layout {
    grid-template-columns: repeat(4, 1fr);
  }


}

@media only screen and (max-width: 1200px) {
  .ws_search_five_layout {
    grid-template-columns: repeat(3, 1fr);
  }

  .ws_search_four_layout {
    grid-template-columns: repeat(3, 1fr);
  }

  .ws_search_products {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media only screen and (max-width: 1024px) {

  .search_addtocart_grid.search_addtocart {
    width: 100%;
  }

  .evm_product_list.list-view .ws_search_product-image-container .ws_card-img-top {
    width: 150px;
  }

  .ws_search_image_price_list {
    gap: 20px;
  }


}

@media only screen and (max-width: 989px) {
  .evm_search {
    flex-wrap: wrap;
    gap: 10px;
    display: block;
  }

  .search_sidebar_overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    width: 100%;
    height: 100%;
    left: -100%;
    transition: left 0.5s ease-in-out;
  }

  /* Show overlay */
  .search_sidebar_overlay.active {
    left: 0;
  }

  /* Sidebar drawer */
  .ws_search_search_sidebar {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease;
    padding: 10px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  /* Slide in from left when active */
  .search_sidebar_overlay.active .ws_search_search_sidebar {
    left: 0;
  }

  .mobile_sidebar_close_btn {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    display: block;
  }

  .searchBox-fakeInput {
    width: 80%;
    margin: 15px auto 0;
  }

  .quick_search-bar .searchBox-fakeInput {
    margin-top: 0;
  }

  #customSearchModal_search {
    padding: 0;
  }

  .evm_righ_section {
    width: 100%;
  }

  .mobile_filter_btn {
    display: flex;
    background: transparent;
    border: none;
    padding: 0;
    align-items: center;
    gap: 6px;
  }

  .ws_search_sort_box {
    justify-content: space-between;
  }

  .quick_search-bar {
    width: 100%;
  }

  .ws_search_searchBox-input {
    padding: 10px 0 10px 35px;
  }

  .add_to_cart_success {
    width: auto;
  }

  .ws_search_product-card-list .message-wrapper {
    bottom: -19px;
  }
}

@media only screen and (max-width: 980px) {

  .ws_search_term {
    width: 45%;
  }

  .product-card-grid_skelton {
    flex: 1 1 calc(50% - 20px);
  }



  .evm_skeleton_sidebar {
    display: none;
  }

  .evm_skeleton_search-bar {
    margin: 5px auto;
  }
}

@media only screen and (max-width: 800px) {
  .ws_search_image_price_list {
    width: auto;
  }

  .search_sidebar_overlay {
    width: 30%;
    max-width: 325px;
  }

  .color_swatches_res {
    text-align: center;
  }

  .quick_search-bar {
    width: 80%;
  }

  input#searchInput::placeholder {
    font-size: 12px;
  }

  .ws_search_products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .wiser_search {
    width: 100%;
  }

  .ws_search_suggestion {
    overflow-y: auto;
    height: 500px;
  }

  .ws_search_main_div {
    flex-wrap: wrap;
    gap: 0;
  }

  .ws_search_term {
    width: 100%;
  }

  .wiser_search {
    box-shadow: 0px 9px 15px -7px;
    width: 80%;
  }

  .main_div_skelton {
    gap: 0px;
    flex-wrap: wrap;
  }

  .search_term_skelton {
    width: 100%;
  }

  .product-card-grid_skelton {
    height: 180px;
  }

  .search_sidebar_overlay {
    width: 60%;
    max-width: 325px;
  }

  .evm_product_list.list-view .ws_search_product-image-container .ws_card-img-top {
    max-width: 200px;
  }

  .list_mobile_layout {
    display: block !important;
  }

  .list_desktop_layout {
    display: none !important;
  }

  .list_mobile_ttl_btn_box {
    text-align: center;
    max-width: 150px;
    min-width: 150px;
    margin-right: 5px;
  }

  .list_mobile_ttl_btn_box .ws_search_card-body {
    padding: 0px 10px;
  }

  .color_swatches_res {
    overflow-x: auto;
    padding: 0px;
    flex-direction: row;
    text-align: center;
  }

  .ws_search_image_price_list {
    gap: 5px;
  }

  .variant-options_list:not(.d-none) {
    gap: 0;
    flex-direction: column;
  }

  .search_addtocart {
    padding: 6px 6px;
    font-size: 12px;
  }

  .grid-view .search_addtocart {
    width: 100%;
  }

  .ws_search_product-card-list {
    padding: 10px;
  }

  .ws_search_five_layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .ws_search_four_layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .ws_search_three_layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-view .ws_search_price {
    justify-content: center;
  }

  .ws_search_term {
    height: auto;
  }

  .quick_search-bar {
    width: 90%;
  }

  .evm_filter {
    margin-top: 0;
  }

}

@media only screen and (max-width: 580px) {
  .ws_search_search-bar {
    max-width: 100%;
    margin: 0 auto 15px;
    width: 100%;
  }

  .wiser_search {
    width: 100%;
  }

  .ws_search_color_label {
    width: 25px;
    height: 25px;
  }


  .ws_search_color_label .ws_search_colorcircle {
    padding: 0px;
  }

  .ws_search_swatch.ws_search_more-swatches {
    font-size: 12px;
  }

  .ws_search_price {
    flex-direction: column;
  }
}

@media only screen and (max-width: 375px) {
  .list_mobile_ttl_btn_box {
    max-width: max-content;
    min-width: auto;
  }
}

@media only screen and (max-width: 350px) {
  .list_mobile_ttl_btn_box {
    max-width: none;
    min-width: min-content;
  }
}

.ws-search-hidden {
  display: none !important;
}

.evm_tagnum[type="checkbox"]:checked+.evm_tagnum .ws_search_tagname_span {
  color: #fff;
}

.search_addtocart::after {
  content: "" !important;
}

.ws_search_card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.quick_view_grid {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.search_addtocart {
  max-width: 100% !important;
  width: 100%;
  margin-top: auto;
}
.ws_search_view_more {
  margin-top: 15px !important;
  width: 100%;
  display: flex;
  justify-content: center;
}

body{
    overflow: unset !important;
}
.ws_search_dropdown_ul li {
    list-style: none;
}

.ws_loader {
  position: fixed;            /* fixed covers entire viewport */
  background: #7a7a7af5;
  width: 100vw;               /* full width of viewport */
  height: 100vh;              /* full height of viewport */
  left: 0;
  top: 0;
  display: flex;              /* center content */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  z-index: 9;
}
.ws_loader p{
color:#fff
}

.page_input{
  border: 1px solid #C4B9CC;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0px 2px 2px 0px #411D570D;
    color: #411D57;
    font-weight: 400;
    font-size: 14px;
}