html {
  scroll-behavior: smooth;
}

body:not(.single-product) main {
  padding-top: 96px !important;
}
@media (max-width: 1024px) {
  body:not(.single-product) main {
    padding-top: 60px !important;
  }
}

.wd-side-hidden {
  --wd-side-hidden-w: 42vw;
}
@media (max-width: 1024px) {
  .wd-side-hidden {
    --wd-side-hidden-w: 100vw;
  }
}

.wd-header-cart.is-empty .wd-tools-count {
  color: #000 !important;
}

@media (max-width: 767px) {
  .mobile-text-white h2 {
    color: #fff !important;
  }
}

.list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html.oy-hidden {
  overflow: hidden !important;
}
html.oy-hidden .w3s-sp-top {
  z-index: 800;
}
html.oy-hidden .w3s-swiper-mobile-single-product-wrapper,
html.oy-hidden .w3s-sp-top__gallery {
  pointer-events: none !important;
  z-index: -1 !important;
}
html.oy-hidden .w3s-sp-top__info {
  z-index: 888888;
}

.oy-hidden {
  overflow: hidden !important;
  width: 100%;
}
@media (max-width: 1024px) {
  .oy-hidden .whb-main-header {
    z-index: 0 !important;
  }
}
.oy-hidden .w3s-sp-top__gallery {
  pointer-events: none;
}

@media (min-width: 1025px) {
  .desktop-hidden {
    display: none !important;
  }
}

.ptitle-spacing {
  letter-spacing: 4px;
}

@media (min-width: 768px) {
  .hidden-desktop {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

.sp-woocommerce-tab-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 64px;
  z-index: 6;
  position: relative;
}
.sp-woocommerce-tab-titles.fixed {
  position: fixed;
  bottom: 35px;
}
.sp-woocommerce-tab-titles .tab-btn {
  cursor: pointer;
}

.sp-woocommerce-tab-contents {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42vw;
  height: 100%;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
      transform: translateX(100%);
  z-index: 4;
  border-left: 0.1rem solid #eee;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
.sp-woocommerce-tab-contents.show {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
  z-index: 5;
}
.sp-woocommerce-tab-contents .close {
  position: absolute;
  top: 140px;
  right: 40px;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.sp-woocommerce-tab-contents .close:hover {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sp-woocommerce-tab-contents .close::before {
  content: "\f112";
  font-size: var(--wd-action-icon-size, 1.1em);
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  font-family: "woodmart-font";
}
.sp-woocommerce-tab-contents-inner {
  margin-inline: auto;
  padding-top: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 6.25vw);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 23vw;
}

.w3s-products {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10px, 1fr)); /* Responsive grid */
  gap: 8px;
  padding: 8px;
}
@media (max-width: 1024px) {
  .w3s-products {
    grid-template-columns: repeat(auto-fit, minmax(calc(50vw - 30px), 1fr));
  }
}
.w3s-products .w3s-product-item {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4/3;
}
.w3s-products .w3s-product-item:hover .product-info {
  opacity: 1;
}
.w3s-products .w3s-product-item .product-info {
  padding-inline: 8px;
  opacity: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 8888;
}
.w3s-products .w3s-product-item .product-info h2 {
  font-size: 15px;
  font-weight: 400;
}

.w3s-swiper {
  width: 100%;
  aspect-ratio: 3/4;
}
.w3s-swiper .swiper-button-next,
.w3s-swiper .swiper-button-prev {
  opacity: 0;
  color: #262626;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.w3s-swiper:hover .swiper-button-next,
.w3s-swiper:hover .swiper-button-prev {
  opacity: 1;
}
.w3s-swiper .swiper-button-next::after,
.w3s-swiper .swiper-button-prev::after {
  font-size: 13px;
}
.w3s-swiper .swiper-slide {
  background: #f1f1f1;
}
.w3s-swiper .swiper-slide img {
  aspect-ratio: 3/4;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
}

.product-element-top .single-loop-image {
  background: #f1f1f1;
}
.product-element-top img {
  aspect-ratio: 3/4;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
}

.w3s-special-item .product-image-link {
  background: #f1f1f1;
}

body:not(.filters-active) .special-layout .products {
  gap: 8px;
  grid-template-areas: ". ." ". ." "merch1 merch1" "merch1 merch1" ". ." ". ." "merch2 merch2" "merch2 merch2" ". ." ". ." "merch3 merch3" "merch3 merch3";
}
@media (min-width: 1025px) {
  body:not(.filters-active) .special-layout .products.grid-columns-3 {
    grid-template-areas: ".      merch1 merch1" ".      merch1 merch1" ".      .      .     " ".      .      .     " "merch2 merch2 .     " "merch2 merch2 .     " ".      .      .     " ".      .      .     " ".      merch3 merch3" ".      merch3 merch3" ".      .      .     " ".      .      .     " "merch4 merch4 .     " "merch4 merch4 .     " ".      .      .     " ".      .      .     " ".      merch5 merch5" ".      merch5 merch5" ".      .      .     " ".      .      .     " "merch6 merch6 .     " "merch6 merch6 .     " ".      .      .     " ".      .      .     " ".      merch7 merch7" ".      merch7 merch7" ".      .      .     " ".      .      .     " "merch8 merch8 .     " "merch8 merch8 .     ";
  }
}
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)) {
  grid-template-areas: ". ." ". ." "merch1 merch1" "merch1 merch1";
}
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)) {
  grid-template-areas: ". ." ". ." "merch1 merch1" "merch1 merch1" ". ." ". ." "merch2 merch2" "merch2 merch2";
}
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)):has(.wd-product:nth-of-type(21)) {
  grid-template-areas: ". ." ". ." "merch1 merch1" "merch1 merch1" ". ." ". ." "merch2 merch2" "merch2 merch2" ". ." ". ." "merch3 merch3" "merch3 merch3";
}
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)):has(.wd-product:nth-of-type(21)):has(.wd-product:nth-of-type(28)) {
  grid-template-areas: ". ." ". ." "merch1 merch1" "merch1 merch1" ". ." ". ." "merch2 merch2" "merch2 merch2" ". ." ". ." "merch3 merch3" "merch3 merch3" ". ." ". ." "merch4 merch4" "merch4 merch4";
}
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)):has(.wd-product:nth-of-type(21)):has(.wd-product:nth-of-type(28)):has(.wd-product:nth-of-type(39)) {
  grid-template-areas: ". ." ". ." "merch1 merch1" "merch1 merch1" ". ." ". ." "merch2 merch2" "merch2 merch2" ". ." ". ." "merch3 merch3" "merch3 merch3" ". ." ". ." "merch4 merch4" "merch4 merch4" ". ." ". ." "merch5 merch5" "merch5 merch5";
}
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)):has(.wd-product:nth-of-type(21)):has(.wd-product:nth-of-type(28)):has(.wd-product:nth-of-type(39)):has(.wd-product:nth-of-type(46)) {
  grid-template-areas: ". ." ". ." "merch1 merch1" "merch1 merch1" ". ." ". ." "merch2 merch2" "merch2 merch2" ". ." ". ." "merch3 merch3" "merch3 merch3" ". ." ". ." "merch4 merch4" "merch4 merch4" ". ." ". ." "merch5 merch5" "merch5 merch5" ". ." ". ." "merch6 merch6" "merch6 merch6";
}
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)):has(.wd-product:nth-of-type(21)):has(.wd-product:nth-of-type(28)):has(.wd-product:nth-of-type(39)):has(.wd-product:nth-of-type(46)):has(.wd-product:nth-of-type(57)) {
  grid-template-areas: ". ." ". ." "merch1 merch1" "merch1 merch1" ". ." ". ." "merch2 merch2" "merch2 merch2" ". ." ". ." "merch3 merch3" "merch3 merch3" ". ." ". ." "merch4 merch4" "merch4 merch4" ". ." ". ." "merch5 merch5" "merch5 merch5" ". ." ". ." "merch6 merch6" "merch6 merch6" ". ." ". ." "merch7 merch7" "merch7 merch7";
}
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)):has(.wd-product:nth-of-type(21)):has(.wd-product:nth-of-type(28)):has(.wd-product:nth-of-type(39)):has(.wd-product:nth-of-type(46)):has(.wd-product:nth-of-type(57)):has(.wd-product:nth-of-type(64)) {
  grid-template-areas: ". ." ". ." "merch1 merch1" "merch1 merch1" ". ." ". ." "merch2 merch2" "merch2 merch2" ". ." ". ." "merch3 merch3" "merch3 merch3" ". ." ". ." "merch4 merch4" "merch4 merch4" ". ." ". ." "merch5 merch5" "merch5 merch5" ". ." ". ." "merch6 merch6" "merch6 merch6" ". ." ". ." "merch7 merch7" "merch7 merch7" ". ." ". ." "merch8 merch8" "merch8 merch8";
}
@media (min-width: 1025px) {
  body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)) {
    grid-template-areas: ". . merch1 merch1" ". . merch1 merch1";
  }
  body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)) {
    grid-template-areas: ". . merch1 merch1" ". . merch1 merch1" ". . . ." "merch2 merch2 . ." "merch2 merch2 . .";
  }
  body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)):has(.wd-product:nth-of-type(21)) {
    grid-template-areas: ". . merch1 merch1" ". . merch1 merch1" ". . . ." "merch2 merch2 . ." "merch2 merch2 . ." ". . . ." ". . merch3 merch3" ". . merch3 merch3";
  }
  body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)):has(.wd-product:nth-of-type(21)):has(.wd-product:nth-of-type(28)) {
    grid-template-areas: ". . merch1 merch1" ". . merch1 merch1" ". . . ." "merch2 merch2 . ." "merch2 merch2 . ." ". . . ." ". . merch3 merch3" ". . merch3 merch3" ". . . ." "merch4 merch4 . ." "merch4 merch4 . .";
  }
  body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)):has(.wd-product:nth-of-type(21)):has(.wd-product:nth-of-type(28)):has(.wd-product:nth-of-type(39)) {
    grid-template-areas: ". . merch1 merch1" ". . merch1 merch1" ". . . ." "merch2 merch2 . ." "merch2 merch2 . ." ". . . ." ". . merch3 merch3" ". . merch3 merch3" ". . . ." "merch4 merch4 . ." "merch4 merch4 . ." ". . . ." ". . merch5 merch5" ". . merch5 merch5";
  }
  body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)):has(.wd-product:nth-of-type(21)):has(.wd-product:nth-of-type(28)):has(.wd-product:nth-of-type(39)):has(.wd-product:nth-of-type(46)) {
    grid-template-areas: ". . merch1 merch1" ". . merch1 merch1" ". . . ." "merch2 merch2 . ." "merch2 merch2 . ." ". . . ." ". . merch3 merch3" ". . merch3 merch3" ". . . ." "merch4 merch4 . ." "merch4 merch4 . ." ". . . ." ". . merch5 merch5" ". . merch5 merch5" ". . . ." "merch6 merch6 . ." "merch6 merch6 . .";
  }
  body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)):has(.wd-product:nth-of-type(21)):has(.wd-product:nth-of-type(28)):has(.wd-product:nth-of-type(39)):has(.wd-product:nth-of-type(46)):has(.wd-product:nth-of-type(57)) {
    grid-template-areas: ". . merch1 merch1" ". . merch1 merch1" ". . . ." "merch2 merch2 . ." "merch2 merch2 . ." ". . . ." ". . merch3 merch3" ". . merch3 merch3" ". . . ." "merch4 merch4 . ." "merch4 merch4 . ." ". . . ." ". . merch5 merch5" ". . merch5 merch5" ". . . ." "merch6 merch6 . ." "merch6 merch6 . ." ". . . ." ". . merch7 merch7" ". . merch7 merch7";
  }
  body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)):has(.wd-product:nth-of-type(10)):has(.wd-product:nth-of-type(21)):has(.wd-product:nth-of-type(28)):has(.wd-product:nth-of-type(39)):has(.wd-product:nth-of-type(46)):has(.wd-product:nth-of-type(57)):has(.wd-product:nth-of-type(64)) {
    grid-template-areas: ". . merch1 merch1" ". . merch1 merch1" ". . . ." "merch2 merch2 . ." "merch2 merch2 . ." ". . . ." ". . merch3 merch3" ". . merch3 merch3" ". . . ." "merch4 merch4 . ." "merch4 merch4 . ." ". . . ." ". . merch5 merch5" ". . merch5 merch5" ". . . ." "merch6 merch6 . ." "merch6 merch6 . ." ". . . ." ". . merch7 merch7" ". . merch7 merch7" ". . . ." "merch8 merch8 . ." "merch8 merch8 . .";
  }
}
@media (min-width: 1025px) {
  body:not(.filters-active) .special-layout .products.grid-columns-6 {
    grid-template-areas: ".      .      . . merch1 merch1" ".      .      . . merch1 merch1" "merch2 merch2 . . .      .     " "merch2 merch2 . . .      .     " ".      .      . . merch3 merch3" ".      .      . . merch3 merch3" "merch4 merch4 . . .      .     " "merch4 merch4 . . .      .     " ".      .      . . merch5 merch5" ".      .      . . merch5 merch5" "merch6 merch6 . . .      .     " "merch6 merch6 . . .      .     " ".      .      . . merch7 merch7" ".      .      . . merch7 merch7" "merch8 merch8 . . .      .     " "merch8 merch8 . . .      .     ";
  }
}

body:not(.filters-active) .special-layout .products.grid-columns-3:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(3),
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(3),
body:not(.filters-active) .special-layout .products.grid-columns-6:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(3) {
  grid-row: merch1;
  grid-column: merch1;
}

body:not(.filters-active) .special-layout .products.grid-columns-3:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(10),
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(10),
body:not(.filters-active) .special-layout .products.grid-columns-6:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(10) {
  grid-row: merch2;
  grid-column: merch2;
}

body:not(.filters-active) .special-layout .products.grid-columns-3:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(21),
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(21),
body:not(.filters-active) .special-layout .products.grid-columns-6:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(21) {
  grid-row: merch3;
  grid-column: merch3;
}

body:not(.filters-active) .special-layout .products.grid-columns-3:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(28),
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(28),
body:not(.filters-active) .special-layout .products.grid-columns-6:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(28) {
  grid-row: merch4;
  grid-column: merch4;
}

body:not(.filters-active) .special-layout .products.grid-columns-3:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(39),
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(39),
body:not(.filters-active) .special-layout .products.grid-columns-6:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(39) {
  grid-row: merch5;
  grid-column: merch5;
}

body:not(.filters-active) .special-layout .products.grid-columns-3:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(46),
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(46),
body:not(.filters-active) .special-layout .products.grid-columns-6:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(46) {
  grid-row: merch6;
  grid-column: merch6;
}

body:not(.filters-active) .special-layout .products.grid-columns-3:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(57),
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(57),
body:not(.filters-active) .special-layout .products.grid-columns-6:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(57) {
  grid-row: merch7;
  grid-column: merch7;
}

body:not(.filters-active) .special-layout .products.grid-columns-3:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(64),
body:not(.filters-active) .special-layout .products.grid-columns-4:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(64),
body:not(.filters-active) .special-layout .products.grid-columns-6:has(.wd-product:nth-of-type(3)) .wd-product:nth-of-type(64) {
  grid-row: merch8;
  grid-column: merch8;
}

.wd-product:hover .loop-product-info {
  /* opacity: 1; */
}

@media (max-width: 1024px) {
  body.home .loop-product-info {
    display: none !important;
  }
}
body.home .w3s-swiper .swiper-pagination {
  display: none;
}
@media (max-width: 1024px) {
  body.home .w3s-swiper .swiper-pagination {
    display: flex;
  }
}

.loop-product-info {
  padding-inline: 10px;
  /* opacity: 0;
  position: absolute; */
  padding-top: 10px;
  padding-bottom: 4px /*10px;*/
  /* 20px bottom */
  bottom: 0;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  z-index: 10;
}
@media (max-width: 1024px) {
  .loop-product-info {
    padding-top: 12px;
    padding-bottom: 12px !important;
    position: relative;
    opacity: 1;
    padding-bottom: 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
}
.loop-product-info-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.loop-product-info-top h3  {
  font-weight: normal;
}
/* .loop-product-info-top h3  .ptitle-spacing {
  font-weight: bold;
} */
.single-product .add-to-cart-mobile__top  del .amount,
.loop-product-info-top .price del .amount {
  color: rgba(40,40,40, .8 ) !important;
}
.single-product .add-to-cart-mobile__top  del,
.loop-product-info-top .price del {
  color: rgba(40,40,40, .8) !important;
}
@media (max-width: 1024px) {
  .loop-product-info-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 5px;
  }
}
.loop-product-info-top h2 {
  font-size: 15px;
  font-weight: 400;
}
.loop-product-info-top .price {
  margin-top: 0 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}
@media (max-width: 1024px) {
  .loop-product-info-top .price {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}
.loop-product-info .loop-btn {
  padding-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.wd-product-grid-slider-nav {
  display: none !important;
}

.w3s-loop-actions {
  position: relative;
}
.w3s-loop-actions .filters-area,
.w3s-loop-actions .filters-opened {
  position: absolute;
  left: -15px !important;
  z-index: 10;
  width: calc(100vw + 15px) !important;
  background: #fff;
}

.wd-products-shop-view:before {
  content: "View by";
}
.wd-products-shop-view .per-row-3:before {
  display: none;
}
.wd-products-shop-view .per-row-3:after {
  content: "3";
}
.wd-products-shop-view .per-row-4:before {
  display: none;
}
.wd-products-shop-view .per-row-4:after {
  content: "4";
}
.wd-products-shop-view .per-row-6:before {
  display: none;
}
.wd-products-shop-view .per-row-6:after {
  content: "6";
}

.woocommerce-ordering select {
  border: 0;
}

.filters-column .vc_column-inner > .wpb_wrapper {
  gap: 20px;
}
.filters-column .vc_column-inner > .wpb_wrapper .open-filters:before {
  display: none;
}

.loop-product-title {
  text-align: left;
}

@media (max-width: 1024px) {
  .wd-grid-g {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.products .product:hover .loop-attribute-color__container {
  opacity: 1;
}

.loop-attribute-color__container {
  position: absolute;
  right: 0;
  padding: 10px;
  z-index: 10;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .loop-attribute-color__container {
    display: none !important;
  }
}
.loop-attribute-color__container ul {
  gap: 5px;
}
.loop-attribute-color__container ul li {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.loop-attribute-color__container ul li .square {
  width: 13px !important;
  height: 13px !important;
}
.loop-attribute-color__container ul li .more-color {
  font-size: 10px;
}
.loop-attribute-color__container ul li:after {
  display: none;
}

.wd-product .out-of-stock-badge {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  padding-left: 10px;
  padding-top: 10px;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .wd-product .out-of-stock-badge {
    opacity: 1;
  }
}
.wd-product:hover .out-of-stock-badge {
  opacity: 1;
}

#section-banners .position-absolute {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2.778vw;
  z-index: 10;
}

#w3s_newsletter_holder {
  max-width: 600px;
  width: 100%;
}
#w3s_newsletter_holder h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}
#w3s_newsletter_holder input {
  border: 0;
  border-bottom: 1px solid #000;
}
#w3s_newsletter_holder small {
  color: rgba(40,40,40);
  margin-top: 16px;
  line-height: 1.6;
  display: block;
}
#w3s_newsletter_holder a {
  color: inherit;
}
#w3s_newsletter_holder a:hover {
  color: #b9b9b9;
}
#w3s_newsletter_holder #newsletter-form {
  position: relative;
}
#w3s_newsletter_holder #newsletter-form-submit {
  position: absolute;
  right: 0;
  background: transparent;
  text-transform: none;
  padding-left: 0;
  padding-right: 16px;
}
#w3s_newsletter_holder #newsletter-form-submit:hover {
  opacity: 0.8;
}

.news-in-swiper {
  position: relative;
}
.news-in-swiper .product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2.778vw;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.news-in-swiper .product-info-top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-in-swiper .product-info .wd-buttons .wd-wishlist-btn {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.news-in-swiper .product-info h3 {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 0;
}
.news-in-swiper .product-info .loop-btn {
  padding-top: 0;
  padding-bottom: 12px;
}
.news-in-swiper .price {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}
@media (max-width: 1024px) {
  .news-in-swiper .price {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.news-in-swiper .swiper-button-next,
.news-in-swiper .swiper-button-prev {
  color: #262626;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.news-in-swiper .swiper-button-next::after,
.news-in-swiper .swiper-button-prev::after {
  font-size: 18px;
}

.wd-wishlist-btn {
  background-color: transparent;
}
.wd-wishlist-btn a {
  width: 16px !important;
  height: 16px !important;
  background-image: url(/wp-content/uploads/2025/02/icon-_heart.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 14.55px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wd-wishlist-btn a::before, .wd-wishlist-btn a::after {
  display: none;
}
.wd-wishlist-btn a:hover, .wd-wishlist-btn a.added {
  background-image: url(/wp-content/uploads/2025/02/icon-_heart_fill.svg);
}

.loop-btn {
  padding-top: 5px;
  background-color: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.w3s_wc_categories_wrapper {
  border-top: 1px solid #000;
  width: 100%;
  /* border-bottom: 1px solid #000 !important; */
  position: relative;
}
.w3s_wc_categories_wrapper::before {
  content: "";
  height: 1px;
  width: calc(100vw + 15px);
  position: absolute;
  left: -15px;
  background: #000;
  top: -1px;
}
.w3s_wc_categories_wrapper::after {
  /* content: "";
  height: 1px;
  width: calc(100vw + 15px);
  position: absolute;
  left: -15px;
  background: #000;
  bottom: -1px; */
}
.w3s_wc_categories_wrapper .w3s_wc_categories {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  min-height: 60px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.w3s_wc_categories_wrapper .w3s_wc_categories li {
  margin-bottom: 0;
}
.w3s_wc_categories_wrapper .w3s_wc_categories li a {
  white-space: nowrap;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #a4a4a4;
}
.w3s_wc_categories_wrapper .w3s_wc_categories li a:hover, .w3s_wc_categories_wrapper .w3s_wc_categories li a.active {
  color: #000;
  font-weight: 300;
}

.show-sp-swiper .whb-main-header {
  z-index: 5 !important;
}
.show-sp-swiper .w3s-sp-top__gallery {
  z-index: 50;
}

.w3s-sp-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 7;
  position: relative;
}
@media (max-width: 1024px) {
  .w3s-sp-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.w3s-sp-top__gallery {
  width: 58vw;
  z-index: 5;
  position: relative;
}
@media (max-width: 1024px) {
  .w3s-sp-top__gallery {
    width: 100vw;
  }
}
.w3s-sp-top__gallery .swiper-zoom-container {
  /* background-color: #f1f1f1; */
  mix-blend-mode: multiply;
}
@media (max-width: 1024px) {
  .w3s-sp-top__gallery .single-featured-image {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100% !important;
    height: calc(100vh - 150px) !important;
    height: calc(100svh - 150px) !important;
  }
}
.w3s-sp-top__gallery-hoverImage {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  background-size: cover;
  background-position: center center;
  top: 0px;
  left: 0px;
  z-index: 10;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out, background-image 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, background-image 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .w3s-sp-top__gallery-hoverImage {
    display: none;
  }
}
@media (max-width: 1024px) {
  .w3s-sp-top__gallery .w3s-swiper-single-product {
    width: 100vw;
    height: calc(100vh - 150px);
    height: calc(100svh - 150px);
  }
}
@media (max-width: 1024px) {
  .w3s-sp-top__gallery .w3s-swiper-single-product [class*=swiper-button-] {
    display: none;
  }
}
@media (max-width: 1024px) {
  .w3s-sp-top__gallery .w3s-swiper-single-product img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100% !important;
    height: calc(100vh - 150px) !important;
    height: calc(100svh - 150px) !important;
  }
}
@media (max-width: 575px) {
  .w3s-sp-top__gallery .w3s-swiper-single-product img {
     -o-object-fit: contain;
       object-fit: contain;
    width: 100% !important;
    height: calc(100vh - 150px) !important;
    height: calc(100svh - 150px) !important;
  }
}
@media (max-width: 1024px) {
  .w3s-sp-top__gallery .w3s-swiper-single-product .swiper-pagination {
    bottom: -32px !important;
    width: 100% !important;
    padding-left: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
}
@media (max-width: 1024px) {
  .w3s-sp-top__gallery .w3s-swiper-single-product .swiper-pagination span {
    background: transparent;
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .w3s-sp-top__gallery .w3s-swiper-single-product .swiper-pagination-bullet-active {
    background-color: #000 !important;
  }
}
.w3s-sp-top__info {
  z-index: 6;
  width: 42vw;
}
@media (max-width: 1024px) {
  .w3s-sp-top__info {
    width: 100vw;
    width: 100svw;
  }
}
.w3s-sp-top__info__wrapper {
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .w3s-sp-top__info__wrapper {
    min-height: unset;
    position: relative;
  }
}
.w3s-sp-top__info__wrapper-product-details {
  width: 55%;
  padding: 8vw 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1300px) {
  .w3s-sp-top__info__wrapper-product-details {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .w3s-sp-top__info__wrapper-product-details {
    width: 100%;
    padding: 2vw 15px;
  }
}
.w3s-sp-top-title h1 {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 200;
}
.w3s-sp-top-title h1 .ptitle-spacing {
  font-size: 22px !important;
}
.w3s-sp-top-description {
  margin-top: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .w3s-sp-top-description {
    margin-bottom: 0px;
  }
}
.w3s-sp-top-add-to-cart {
  margin-top: 32px;
  width: 100%;
}
@media (max-width: 1024px) {
  .w3s-sp-top-add-to-cart {
    display: none;
  }
}
.w3s-sp-top-add-to-cart form {
  width: 100%;
}
.w3s-sp-top-add-to-cart form button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
}
.w3s-sp-top-add-to-cart form button .btn-text::before {
  padding-right: 8px;
  content: "\f126";
  font-family: "woodmart-font";
}
.w3s-sp-top-add-to-cart form > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px !important;
  line-height: 1.5;
}
.w3s-sp-top-add-to-cart form .btn-text {
  text-align: left;
}
.w3s-sp-top-add-to-cart form .btn-price {
  text-align: right;
}
.w3s-sp-top-add-to-cart form .btn-price * {
  color: #fff;
}
.w3s-sp-top-tabs {
  width: 55%;
  font-size: 14px;
}

.w3s-sp-top-tabs ul:not(.fixed) li {
  padding-bottom: 32px;
}
@media (max-width: 1024px) {
  .w3s-sp-top-tabs .side-panel__content-header {
    display: none;
  }
}
@media (max-width: 1300px) {
  .w3s-sp-top-tabs {
    width: 70%;
  }
}
@media (max-width: 1024px) {
  .w3s-sp-top-tabs {
    width: 100%;
    padding: 2vw 15px;
  }
}
.w3s-sp-top-tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  gap: 5rem;
  padding-bottom: 32px;
}
@media (max-width: 1024px) {
  .w3s-sp-top-tabs ul {
    gap: 3rem;
    padding-bottom: 16px;
  }
}
.w3s-sp-top-tabs ul.fixed {
  z-index: 889;
  position: fixed;
  bottom: 0;
}
@media (max-width: 1024px) {
  .w3s-sp-top-tabs ul.fixed {
    position: relative;
    bottom: unset;
    z-index: 0;
  }
}
.w3s-sp-top-tabs ul li {
  margin-bottom: 0;
  cursor: pointer;
}
.w3s-sp-top-tabs__content {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 250px);
  text-align: center;
  padding-top: 5vh;
}
@media (max-width: 1024px) {
  .w3s-sp-top-tabs__content {
    max-height: unset;
  }
}
.w3s-sp-top-tabs__content-full-desc {
  padding-right: 20px;
}
@media (max-width: 1024px) {
  .w3s-sp-top-tabs__content-full-desc {
    padding-right: 0px;
  }
}
@media (max-width: 1024px) {
  .w3s-sp-top-tabs__content > div:not(:first-child) {
    display: none;
  }
}
@media (max-width: 1024px) {
  .w3s-sp-top-tabs .side-panel-tabs {
    position: relative;
    width: 100%;
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    border-left: 0;
  }
}
.w3s-sp-top-tabs .side-panel__wrapper {
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .w3s-sp-top-tabs .side-panel__content {
    padding-top: 0;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .w3s-sp-top-tabs .side-panel__content .close-panel {
    display: none;
  }
}
.w3s-sp-top-attribute-color {
  border-bottom: 1px solid #ddd;
  padding: 1vw 0;
}
.w3s-sp-top-attribute-color__names {
  position: relative;
  overflow: hidden;
  height: 20px; /* Adjust based on your design */
  display: block;
  font-size: 12px; /* 13 */
}
.w3s-sp-top-attribute-color__names .default,
.w3s-sp-top-attribute-color__names .hovered {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: left;
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.w3s-sp-top-attribute-color__names .default {
  top: 0%;
  opacity: 1;
}
.w3s-sp-top-attribute-color__names .hovered {
  top: 100%; /* Starts below */
  opacity: 0;
  display: none;
}
.w3s-sp-top-attribute-color__container {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.w3s-sp-top-attribute-color__container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.w3s-sp-top-attribute-color__container ul li:not(:first-child) {
  cursor: pointer;
}
.w3s-sp-top-attribute-color__container ul li:first-child {
  position: relative;
}
.w3s-sp-top-attribute-color__container ul li:first-child::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: -5px;
}
.w3s-sp-top-attribute-color__container ul li a {
  display: block;
}
.w3s-sp-top-attribute-color__container ul li a .square {
  width: 20px;
  height: 20px;
  background-color: var(--bg-color);
}
.w3s-sp-top-attribute-color__container ul li a.w3s-sp-swatch-img .square {
  background: var(--bg);
}
.w3s-sp-top-attribute-color__container .view-all-colors {
  cursor: pointer;
  font-size: 12px; /*14*/
  line-height: 20px;
}

.side-panel-product-colors {
  padding-bottom: 100px;
}
.side-panel-product-colors ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(9rem, 1fr));
}
.side-panel-product-colors ul li {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.side-panel-product-colors ul li::after {
  display: none;
}
.side-panel-product-colors ul li:hover .colorText {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.side-panel-product-colors ul li .colorText {
  position: absolute;
  left: 10px;
  bottom: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  line-height: 1.4;
  padding-bottom: 5px;
}
@media (max-width: 1024px) {
  .side-panel-product-colors ul li .colorText {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.side-panel-product-colors ul img {
  width: 100%;
}

.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42vw;
  height: 100%;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 888;
  border-left: 0.1rem solid #eee;
  background-color: #fff;
  -webkit-transition: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  transition: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
@media (max-width: 1024px) {
  .side-panel {
    z-index: 50;
  }
}
.side-panel.showFromRight {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}
.side-panel__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 150px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-y: scroll;
  scrollbar-width: none;
  height: 100%;
  position: relative;
}
.side-panel__wrapper .close-panel {
  margin-left: auto;
  width: 50px;
  height: 100%;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.side-panel__wrapper .close-panel:hover::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.side-panel__wrapper .close-panel::before {
  content: "\f112";
  font-size: var(--wd-action-icon-size, 1.1em);
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  font-family: "woodmart-font";
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.side-panel__content {
  padding-top: 150px;
  width: 65%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1300px) {
  .side-panel__content {
    width: 80%;
  }
}
.side-panel__content-header {
  position: relative;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.side-panel__content-header h3 {
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 0;
}

.w3s-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  background: #fff;
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  z-index: 5;
}
.w3s-overlay.show {
  opacity: 0.7;
}

.wd-shop-ordering select {
  display: none;
}

.w3s-select {
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

.w3s-options {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  width: 150px;
  z-index: 10;
  padding: 8px;
}
@media (max-width: 1024px) {
  .w3s-options {
    right: 0;
  }
}

.w3s-option {
  padding: 5px;
  border: 1px solid #ddd;
  line-height: 1;
  font-size: 13px;
  cursor: pointer;
  font-size: 15px;
}
.w3s-option.active {
  border-color: #000;
}

.w3s-select.open .w3s-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.w3s-select.open .w3s-select-trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.wd-quick-shop .w3s-swiper .swiper-pagination,
.archive.tax-product_cat .w3s-swiper .swiper-pagination {
  bottom: 0px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}
.wd-quick-shop .swiper-pagination-bullet,
.archive.tax-product_cat .swiper-pagination-bullet {
  margin: 0 !important;
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 !important;
          flex: 1 !important;
  height: 2px !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.wd-quick-shop .swiper-pagination-bullet.swiper-pagination-bullet-active,
.archive.tax-product_cat .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000 !important;
}

.w3s-swiper .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
}
.w3s-swiper .swiper-pagination-bullet-active {
  background-color: #000;
}

.mobile-nav {
  width: 100vw;
}

.w3s-swiper-mobile-single-product-wrapper {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 20;
  overflow: hidden scroll;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #e4e4e4;
}
.w3s-swiper-mobile-single-product-wrapper .w3s-swiper-mobile-single-product {
  height: 100vh !important;
  height: 100svh !important;
}
.w3s-swiper-mobile-single-product-wrapper .w3s-swiper-mobile-single-product .swiper-slide {
  height: 100vh !important;
  height: 100svh !important;
}
.w3s-swiper-mobile-single-product-wrapper .w3s-swiper-mobile-single-product .swiper-slide img {
  height: 100vh !important;
  height: 100svh !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .w3s-swiper-mobile-single-product-wrapper .w3s-swiper-mobile-single-product [class*=swiper-button-] {
    display: none;
  }
}
@media (max-width: 575px) {
  .w3s-swiper-mobile-single-product-wrapper .w3s-swiper-mobile-single-product .swiper-slide img {
    height: 100vh !important;
    height: 100svh !important;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.w3s-swiper-mobile-single-product-wrapper-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  padding-inline: 5px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.w3s-swiper-mobile-single-product-wrapper-header .close {
  margin-right: 8px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.w3s-swiper-mobile-single-product-wrapper-header .close:before {
  content: "\f112";
  font-size: var(--wd-action-icon-size, 1.1em);
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  font-family: "woodmart-font";
}
@media (max-width: 1024px) {
  .w3s-swiper-mobile-single-product-wrapper-show {
    z-index: 600;
    opacity: 1;
    pointer-events: all;
  }
}
.w3s-swiper-mobile-single-product-wrapper .swiper-pagination {
  bottom: -32px !important;
  width: 100% !important;
  padding-left: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
.w3s-swiper-mobile-single-product-wrapper .swiper-pagination span {
  background: transparent;
  width: 100% !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.w3s-swiper-mobile-single-product-wrapper .swiper-pagination-bullet-active {
  background-color: #000 !important;
}

.add-to-cart-mobile {
  opacity: 0;
  pointer-events: none;
  position: sticky;
  background-color: #fff;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #000;
  padding: 32px;
  z-index: 100;
}
@media (max-width: 1024px) {
  .add-to-cart-mobile {
    opacity: 1;
    pointer-events: all;
    padding: 32px 15px;
  }
}
.add-to-cart-mobile__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.add-to-cart-mobile button {
  width: 100%;
}
.add-to-cart-mobile button .btn-price {
  display: none;
}

@media (max-width: 1024px) {
  .filters-column .wd-shop-view {
    display: none;
  }
}

.w3s-loop-actions .filters-area, .w3s-loop-actions .filters-opened {
  top: calc(100% + 30px) !important;
  left: -15px !important;
  padding-left: 30px;
}

.filters-area {
  border-top: solid 1px #000 !important;
}

@media (max-width: 1024px) {
  .wd-shop-ordering {
    margin-left: auto;
  }
}

.side-panel-colors {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42vw;
  height: 100%;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 9999;
  border-left: 0.1rem solid #eee;
  background-color: #fff;
  -webkit-transition: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  transition: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
@media (max-width: 1024px) {
  .side-panel-colors {
    width: 100vw;
  }
}
.side-panel-colors.showFromRight {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}
.side-panel-colors__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 150px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-y: scroll;
  scrollbar-width: none;
  height: 100%;
  position: relative;
}
.side-panel-colors__wrapper .close-panel {
  margin-left: auto;
  width: 50px;
  height: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.side-panel-colors__wrapper .close-panel:hover::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.side-panel-colors__wrapper .close-panel::before {
  content: "\f112";
  font-size: var(--wd-action-icon-size, 1.1em);
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  font-family: "woodmart-font";
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.side-panel-colors__wrapper .list {
  grid-template-columns: repeat(3, minmax(100px, 1fr));
}
@media (max-width: 1024px) {
  .side-panel-colors__wrapper .list {
    grid-template-columns: 1fr 1fr;
  }
}
.side-panel-colors__content {
  padding-top: 150px;
  width: 65%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1300px) {
  .side-panel-colors__content {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .side-panel-colors__content {
    width: 100%;
    padding: 16px;
  }
}

.cart-widget-side .mini_cart_item:hover {
  background-color: #fff !important;
}
.cart-widget-side .quantity input {
  border: 0 !important;
  background-color: transparent;
}
.cart-widget-side .quantity input:hover {
  background-color: #fff !important;
  color: #000;
}

.acf-stores .region-group:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .acf-stores .region-group:not(:last-child) {
    margin-bottom: 25px;
  }
}
.acf-stores .region-group .stores-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1024px) {
  .acf-stores .region-group .stores-group {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
.acf-stores .region-group .stores-group p {
  margin-bottom: 5px;
}
.acf-stores .region-group h2, .acf-stores .region-group h3 {
  margin-bottom: 10px;
}
.acf-stores .region-group h2 {
  font-size: 18px;
  font-weight: 400;
}
.acf-stores .region-group h3 {
  font-size: 16px;
  font-weight: 300;
}

.w3s-popup {
  overflow: hidden !important;
  position: fixed !important;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-animation: customFadeIn 0.6s ease-out forwards;
          animation: customFadeIn 0.6s ease-out forwards;
}
.w3s-popup.hidden {
  display: none !important;
}
.w3s-popup-inner-header {
  max-width: 800px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.w3s-popup-inner-header button {
  background: transparent !important;
  font-size: 40px;
  padding: 0;
  color: #fff !important;
}
.w3s-popup-inner {
  background: #fff;
  max-width: 800px;
  padding: 15px;
}

@-webkit-keyframes customFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px); /* Optional: slight movement */
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes customFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px); /* Optional: slight movement */
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .home .w3s-swiper-loop [class*=swiper-button-] {
    display: none;
  }
}

@media (max-width: 767px) {
  .about-promo .wrapper-content-banner {
    padding: 2.778vw !important;
  }
}
.about-promo .banner-title {
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}
.about-promo .content-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .about-promo .content-banner {
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.recycle-section {
  position: relative;
}
.recycle-section .position-absolute {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2.778vw;
  z-index: 10;
}
.recycle-section .position-absolute h2 {
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
  .archive.tax-product_cat .w3s-swiper-loop [class*=swiper-button-] {
    display: none;
  }
}

.single-product .swiper-zoom-container img {
  cursor: url("https://amesthebags.nullnodes.com/wp-content/uploads/2025/02/plus.svg") 25 30, auto;
}
.single-product .swiper-slide.swiper-slide-zoomed .swiper-zoom-container img {
  cursor: url("https://amesthebags.nullnodes.com/wp-content/uploads/2025/02/minus.svg") 25 30, auto;
}
.single-product .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
}
.single-product .w3s-product-images.-scrolled .sp-gallery-sticked-section {
  position: absolute;
}
.single-product .w3s-product-images.-scrolled .sp-gallery-swiper-buttons {
  height: 35px;
  position: absolute;
  bottom: 50vh;
  top: unset;
}
.single-product .w3s-product-images .sp-gallery-swiper-buttons {
  position: fixed;
  left: 0;
  right: 0;
  top: 50%;
  height: 0;
  top: 50%;
  z-index: 8;
  width: 58vw;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .single-product .w3s-product-images .sp-gallery-swiper-buttons {
    width: 100vw;
  }
}
.single-product .w3s-product-images .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
  top: unset;
}
.single-product .w3s-product-images .swiper-pagination-bullet-active {
  background-color: #000;
}
.single-product .w3s-product-images .sp-gallery-sticked-section {
  text-align: left;
  padding-inline: 32px;
  position: fixed;
  width: 58vw;
  left: 0;
  bottom: 30px;
  height: 25px;
  z-index: 5;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .single-product .w3s-product-images .sp-gallery-sticked-section {
    position: absolute !important;
  }
}
@media (max-width: 1024px) {
  .single-product .w3s-product-images .sp-gallery-sticked-section {
    width: 100vw;
  }
}
@media (max-width: 1024px) {
  .single-product .w3s-product-images .sp-gallery-sticked-section .wd-wishlist-btn {
    bottom: -10px;
    position: relative;
    right: -16px;
  }
}
.single-product .w3s-product-images .sp-gallery-sticked-section .swiper-pagination {
  width: 50%;
  text-align: left;
  padding-left: 32px;
}
.single-product .related-products .swiper-pagination,
.single-product .recently-products .swiper-pagination {
  display: none !important;
}
.single-product .has-sale .btn-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-product .has-sale .btn-price del {
  font-size: 12px;
}

.w3s-page-title {
  width: 100vw;
  padding-top: 80px;
  padding-bottom: 50px;
  margin-bottom: 50px !important;
  position: relative;
}
.w3s-page-title:before {
  content: "";
  width: 150vw;
  left: -50vw;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
}

.wd-shop-view {
  margin-left: auto;
}

.wpforms-form input {
  border: 0;
  border-bottom: 1px solid #000;
}
.wpforms-form input.wpforms-error {
  border: 0 !important;
  border-bottom: 1px solid #D63637 !important;
}
.wpforms-form textarea {
  border: 1px solid #ced3da;
}
.wpforms-form .wpforms-submit {
  width: 100%;
  background-color: #000;
  color: #fff;
}

.contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-left: 0;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 420px) {
  .contact-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.wd-content-layout.content-layout-wrapper.container {
  max-width: unset;
}

:is(.woocommerce-checkout > .checkout-order-review, .woocommerce-order-pay #order_review)::before, :is(.woocommerce-checkout > .checkout-order-review, .woocommerce-order-pay #order_review)::after {
  display: none;
}

:is(.woocommerce-checkout > .checkout-order-review, .woocommerce-order-pay #order_review) {
  background: transparent;
}

.woocommerce-thankyou-order-received {
  border: 0 !important;
  color: #000 !important;
}

.gift-wrap-option {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.w3s-page-title {
  width: 100vw;
  padding-top: 80px;
  padding-bottom: 50px;
  margin-bottom: 50px !important;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
}
@media (max-width: 1024px) {
  .w3s-page-title {
    padding-top: 50px;
    padding-bottom: 25px;
    margin-bottom: 25px !important;
    grid-template-columns: 1fr;
  }
}
.w3s-page-title:before {
  content: "";
  width: 150vw;
  left: -50vw;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
}

.single-with-inner-nav .page-navigation-inner {
  position: sticky;
  top: 200px;
}
@media (max-width: 1024px) {
  .single-with-inner-nav .page-navigation-inner nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.single-with-inner-nav .page-navigation-inner li:not(.current-menu-item):not(:hover) a {
  color: #ddd;
}
.single-with-inner-nav .page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 20px;
}
@media (max-width: 1024px) {
  .single-with-inner-nav .page-wrapper {
    grid-template-columns: 1fr;
  }
}

.whb-full-width .whb-row > .container {
  max-width: 100%;
  width: clamp(var(--wd-container-w), 100%, 100%) !important;
}

.wd-search-opened .whb-main-header {
  background-color: #fff;
}

.whb-main-header {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.whb-main-header:hover {
  background-color: #fff;
}

#menu-main-menu {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: flex-start;
    /* justify-content: space-between; */
  /* padding-inline: 80px; */
  padding-left: 50px;
}

.whb-header .wd-header-wishlist .wd-tools-icon::before {
  font-size: 16px;
}

.whb-general-header .wd-dropdown:not(.wd-dropdown-my-account) {
  top: 65px;
  border-top: 1px solid #000;
  margin-top: 0 !important;
  -webkit-box-shadow: 0 13px 10px -11px rgba(0, 0, 0, 0.2);
          box-shadow: 0 13px 10px -11px rgba(0, 0, 0, 0.2);
}
.whb-general-header .wd-dropdown-menu.wd-design-full-width:not(.wd-scroll) {
  padding-bottom: 30px;
}
.whb-general-header .wd-nav > li:is(.wd-has-children, .menu-item-has-children) > a::after {
  display: none;
}

.wd-header-cart.wd-design-4 .wd-cart-number {
  -webkit-margin-start: 0 !important;
          margin-inline-start: 0 !important;
}

.whb-header_860063 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.whb-header_860063.hidden-header {
  top: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

:is([data-vc-full-width], [class*=wd-section-stretch]).vc_row.w3s-shop-filters {
  position: sticky !important;
  top: 96px;
  z-index: 200;
  background: white;
  -webkit-transition: 0.3s ease-in-out !important;
  transition: 0.3s ease-in-out !important;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 1024px) {
  :is([data-vc-full-width], [class*=wd-section-stretch]).vc_row.w3s-shop-filters {
    top: 60px;
  }
}
:is([data-vc-full-width], [class*=wd-section-stretch]).vc_row.w3s-shop-filters.hidden-header {
  -webkit-transform: translateY(-96px);
      -ms-transform: translateY(-96px);
          transform: translateY(-96px);
}
@media (max-width: 1024px) {
  :is([data-vc-full-width], [class*=wd-section-stretch]).vc_row.w3s-shop-filters.hidden-header {
    -webkit-transform: translateY(-60px);
        -ms-transform: translateY(-60px);
            transform: translateY(-60px);
  }
}

.single-product .whb-general-header {
  background: #fff !important;
}

.container.main-footer,
.wd-copyrights .container,
.wd-prefooter .container {
  max-width: clamp(var(--wd-container-w), 100%, 100%) !important;
}

.wd-prefooter {
  border-bottom: 1px solid #2e2e2e !important;
}

.wd-footer li a {
  color: rgb(46, 46, 46);
}
.wd-footer li a:hover {
  opacity: 0.8;
}

.wd-copyrights {
  border-top: 1px solid #2e2e2e !important;
}

.wd-search-full-screen {
  opacity: 0;
  top: 0 !important;
  -webkit-transition: 0.2s ease-in-out !important;
  transition: 0.2s ease-in-out !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}
.wd-search-full-screen.wd-opened {
  top: 0 !important;
  opacity: 1;
}
.wd-search-full-screen:not(.wd-searched) {
  height: 115px;
}
.wd-search-full-screen:not(.wd-searched):before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  height: 100vh;
  width: 100%;
  z-index: -2 !important;
}
.wd-search-full-screen:not(.wd-searched) .autocomplete-suggestions {
  opacity: 0;
}
.wd-search-full-screen.wd-searched .search-results-wrapper {
  padding-top: 45px !important;
}
.wd-search-full-screen .search-info-text {
  display: none;
}
.wd-search-full-screen .searchform {
  padding-top: 32px;
  padding-bottom: 32px;
  padding-inline: 32px !important;
}
.wd-search-full-screen .searchform input {
  text-align: left !important;
  max-width: 600px;
  width: 100%;
  font-size: 18px !important;
  border-bottom: 1px solid #000;
  height: 50px;
}
.wd-search-full-screen .wd-suggestions-group,
.wd-search-full-screen .autocomplete-suggestions {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 6px !important;
  padding-bottom: 32px !important;
}
@media (max-width: 1300px) {
  .wd-search-full-screen .wd-suggestions-group,
  .wd-search-full-screen .autocomplete-suggestions {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 767px) {
  .wd-search-full-screen .wd-suggestions-group,
  .wd-search-full-screen .autocomplete-suggestions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
.wd-search-full-screen .wd-suggestions-group .wd-suggestion,
.wd-search-full-screen .wd-suggestions-group .autocomplete-suggestion,
.wd-search-full-screen .autocomplete-suggestions .wd-suggestion,
.wd-search-full-screen .autocomplete-suggestions .autocomplete-suggestion {
  /* background: #f1f1f1 !important; */
}
.wd-search-full-screen .wd-suggestions-group .wd-suggestion img,
.wd-search-full-screen .wd-suggestions-group .autocomplete-suggestion img,
.wd-search-full-screen .autocomplete-suggestions .wd-suggestion img,
.wd-search-full-screen .autocomplete-suggestions .autocomplete-suggestion img {
  aspect-ratio: 3/4;
  -o-object-fit: contain;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.wd-search-full-screen .wd-suggestions-group .wd-suggestion:hover .wd-suggestion-content,
.wd-search-full-screen .wd-suggestions-group .autocomplete-suggestion:hover .wd-suggestion-content,
.wd-search-full-screen .autocomplete-suggestions .wd-suggestion:hover .wd-suggestion-content,
.wd-search-full-screen .autocomplete-suggestions .autocomplete-suggestion:hover .wd-suggestion-content {
  opacity: 1;
}
.wd-search-full-screen .wd-suggestions-group .wd-suggestion .wd-suggestion-content,
.wd-search-full-screen .wd-suggestions-group .wd-suggestion .suggestion-content,
.wd-search-full-screen .wd-suggestions-group .autocomplete-suggestion .wd-suggestion-content,
.wd-search-full-screen .wd-suggestions-group .autocomplete-suggestion .suggestion-content,
.wd-search-full-screen .autocomplete-suggestions .wd-suggestion .wd-suggestion-content,
.wd-search-full-screen .autocomplete-suggestions .wd-suggestion .suggestion-content,
.wd-search-full-screen .autocomplete-suggestions .autocomplete-suggestion .wd-suggestion-content,
.wd-search-full-screen .autocomplete-suggestions .autocomplete-suggestion .suggestion-content {
  display: grid;
  grid-template-columns: 1fr 1fr !important;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.wd-search-full-screen .wd-suggestions-group .wd-suggestion .wd-suggestion-content .wd-entities-title,
.wd-search-full-screen .wd-suggestions-group .wd-suggestion .suggestion-content .wd-entities-title,
.wd-search-full-screen .wd-suggestions-group .autocomplete-suggestion .wd-suggestion-content .wd-entities-title,
.wd-search-full-screen .wd-suggestions-group .autocomplete-suggestion .suggestion-content .wd-entities-title,
.wd-search-full-screen .autocomplete-suggestions .wd-suggestion .wd-suggestion-content .wd-entities-title,
.wd-search-full-screen .autocomplete-suggestions .wd-suggestion .suggestion-content .wd-entities-title,
.wd-search-full-screen .autocomplete-suggestions .autocomplete-suggestion .wd-suggestion-content .wd-entities-title,
.wd-search-full-screen .autocomplete-suggestions .autocomplete-suggestion .suggestion-content .wd-entities-title {
  margin-bottom: 8px;
}
.wd-search-full-screen .wd-suggestions-group .wd-suggestion .wd-suggestion-content .suggestion-color,
.wd-search-full-screen .wd-suggestions-group .wd-suggestion .suggestion-content .suggestion-color,
.wd-search-full-screen .wd-suggestions-group .autocomplete-suggestion .wd-suggestion-content .suggestion-color,
.wd-search-full-screen .wd-suggestions-group .autocomplete-suggestion .suggestion-content .suggestion-color,
.wd-search-full-screen .autocomplete-suggestions .wd-suggestion .wd-suggestion-content .suggestion-color,
.wd-search-full-screen .autocomplete-suggestions .wd-suggestion .suggestion-content .suggestion-color,
.wd-search-full-screen .autocomplete-suggestions .autocomplete-suggestion .wd-suggestion-content .suggestion-color,
.wd-search-full-screen .autocomplete-suggestions .autocomplete-suggestion .suggestion-content .suggestion-color {
  margin-bottom: 0;
}
.wd-search-full-screen .wd-suggestions-group .wd-suggestion .wd-suggestion-content .price,
.wd-search-full-screen .wd-suggestions-group .wd-suggestion .suggestion-content .price,
.wd-search-full-screen .wd-suggestions-group .autocomplete-suggestion .wd-suggestion-content .price,
.wd-search-full-screen .wd-suggestions-group .autocomplete-suggestion .suggestion-content .price,
.wd-search-full-screen .autocomplete-suggestions .wd-suggestion .wd-suggestion-content .price,
.wd-search-full-screen .autocomplete-suggestions .wd-suggestion .suggestion-content .price,
.wd-search-full-screen .autocomplete-suggestions .autocomplete-suggestion .wd-suggestion-content .price,
.wd-search-full-screen .autocomplete-suggestions .autocomplete-suggestion .suggestion-content .price {
  text-align: right;
}
.wd-search-full-screen .wd-suggestions-group .view-all-results,
.wd-search-full-screen .autocomplete-suggestions .view-all-results {
  max-width: 200px;
  height: 40px;
  width: 100%;
  padding-inline: 28px;
  background: #000;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
  line-height: 40px;
}
@media (max-width: 767px) {
  .wd-search-full-screen .wd-suggestions-group .view-all-results,
  .wd-search-full-screen .autocomplete-suggestions .view-all-results {
    margin-bottom: 32px;
  }
}

.wd-all-results {
  max-width: 250px !important;
  height: 40px !important;
  width: 100%;
  padding-inline: 28px !important;
  background: #000;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
  line-height: 40px !important;
  margin-bottom: 32px !important;
}

.input-holder {
  position: relative;
  max-width: 600px;
}
@media (max-width: 767px) {
  .input-holder {
    max-width: calc(100% - 100px);
  }
}

.input-holder .delete-search {
  display: none;
  position: absolute;
  right: 0;
  top: 15px;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}

.wd-close-search {
  display: block !important;
}

@media (max-width: 767px) {
  .wd-search-full-screen .wd-close-search.wd-style-icon {
    --wd-action-icon-size: 26px !important;
  }
}

.total-results {
  opacity: 0;
}

.invert-color img {
  filter: invert(1) !important;  
}

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

