/* Category Slider Start  */
.icon-all {
  mask-image: url(../../assets/images/icon-all.svg);
  -webkit-mask-image: url(../../assets/images/icon-all.svg);
  width: 34px;
  height: 34px;
  background: #333d4c;
}
.child-category-wrapper {
  /* display: flex;
  gap: 16px; */
  position: relative;
}

.child-category-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  border: 1px solid #efefef;
  border-radius: 6px;
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  min-width: 120px;
  min-height: 103px;
  aspect-ratio: 5 / 4;
  transition: 0.3s ease-in-out;
}
.child-category-link-container img {
  max-width: 56px;
  max-height: 56px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.child-category-link span {
  font-size: 10px;
  line-height: 13px;
  font-weight: 600;
  color: #17242a;
  text-transform: uppercase;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.child-category-view-all-link {
  border-color: #f59635;
  flex-shrink: 0;
}
.child-category-view-all-link:hover {
  background-color: #f59635;
  color: #fff;
}
.child-category-view-all-link:hover i {
  background: #fff;
}

.child-category-link:hover {
  border-color: #f59635;
}
.child-category-link:hover span {
  color: #f59635;
}

.child-category-view-all-link:hover span {
  color: #fff;
}
/* Swiper Start */
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}
.swiper-button-next,
.swiper-button-prev {
  height: 24px;
  width: 24px;
  background: #fff;
  box-shadow: 0px 2px 4px 0px #00000026;
  border-radius: 50%;
  top: 50%;
  transform: translateY(40%);
}
.swiper-button-next {
  right: -10px;
}
.swiper-button-prev {
  left: -10px;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
/* Swiper End */
/* Category Slider End  */
/* Product Listing Start  */
.product-box-row {
  margin-bottom: -16px;
}
.product-box-col {
  margin-bottom: 16px;
}
.product-listing-section .sort-by {
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-listing-section .sort-by span {
  flex-shrink: 0;
}
.product-listing-section .sort-by select {
  font-size: 14px;
  line-height: 21px;
  max-width: 134px;
}
.product-listing-section .sort-by select {
  background: url(../../assets/images/icon-chevron-up.svg) !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
}
/* Product Box */
.product-image-block {
  padding-top: 100%;
  background-color: #f6f6f6;
  border-radius: 6px;
  margin-bottom: 14px;
}
.product-image-block img {
  padding: 14px;
}
.product-content-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.product-company {
  font-size: 12px;
  line-height: 15px;
}

.product-title {
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 6px;
}
.product-link-container{
  flex: 1;
}
.discounted-price {
  font-size: 14px;
  line-height: 18px;
}

.original-price {
  font-size: 12px;
  line-height: 15px;
}

.product-sale {
  padding: 5px 10px 5px 7px;
  top: 16px;
  line-height: 13px;
  clip-path: polygon(90% 0, 100% 25%, 90% 50%, 100% 75%, 90% 100%, 0 100%, 0 0);
  background-color: #d12929;
  box-shadow: 0px 1px 0px 0px #670808;
  margin-bottom: 0;
}
.product-box .counter {
  border: 1px solid transparent;
  border-radius: 100px;
  background-color: #f6f6f6;
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 9;
  transition: 0.4s all ease-in-out;
}
.product-box .counter input {
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  width: 20px;
  background: transparent;
  margin-right: 10px;
}
.product-box .counter-minus,
.product-box .counter-plus {
  width: 32px;
  height: 32px;
}
.product-box .counter-minuss,
.product-box .counter-pluss {
  width: 32px;
  height: 32px;
}
.product-box .counter-plus {
  background-color: #17242a;
  border-radius: 100%;
}
.product-box .counter-pluss {
  background-color: #17242a;
  border-radius: 100%;
}
.product-box .icon-plus {
  mask-image: url(../../assets/images/icon-plus-sm.svg);
  -webkit-mask-image: url(../../assets/images/icon-plus-sm.svg);
  background: #fff;
  width: 10px;
  height: 10px;
}
.product-box .counter input,
.product-box .counter .counter-minus {
  display: none;
  transition: 0.4s all ease-in-out;
}
.product-box .counter input,
.product-box .counter .counter-minuss {
  display: none;
  transition: 0.4s all ease-in-out;
}
.product-box .counter.expanded {
  border: 1px solid #17242a;
}
.product-box .counter.expanded input,
.product-box .counter.expanded .counter-minus {
  display: inline-flex;
  transition: 0.4s all ease-in-out;
}
.product-box .counter.expanded input,
.product-box .counter.expanded .counter-minuss {
  display: inline-flex;
  transition: 0.4s all ease-in-out;
}
.fav-button {
  top: 14px;
  right: 14px;
}
.ratings-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #262a2b;
  background-color: #fff9eb;
  border-radius: 15px;
  padding: 2px 6px;
  margin-bottom: 6px;
}

/* Product Box End */
/* Product Listing End  */
.child-category-link img{
  height: 56px;
    width: 56px;
}
/* .size-block-box[disabled]{
  position: relative;
  overflow: hidden;
}
.size-block-box[disabled]::after{
  content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%) rotate(40deg);
    width: 1px;
    height: 150%;
    background: #565656;
    z-index: 1;
} */
.section-header-container h2 span{
  font-size: 16px;
  color: #898989;
  font-weight: 400;
  margin-left: 2px;
}

/* Withhout slider */
.child-category-noimage .child-category-link {
  min-width: 40px;
  min-height: 40px;
  aspect-ratio: inherit;
}
.child-category-noimage .child-category-link.child-category-view-all-link i{
  display: none;
}

/* With Icon In slider */
/* .child-category-noimage .child-category-link {
  min-width: 70px;
  min-height: 70px;
  aspect-ratio: inherit;
}
.child-category-noimage .child-category-link.child-category-view-all-link  .icon-all{
  width: 24px;
  height: 24px;
} */
@media only screen and (max-width: 1199px) {
  /* Category Slider Start  */
  .swiper-slide .child-category-link {
    max-width: 100%;
  }
  /* .child-category-view-all-link {
    height: auto;
    min-height: auto;
    aspect-ratio: 1;
    max-width: 100px;
  } */
  /* Category Slider End  */
}
@media only screen and (max-width: 991px) {
}
@media only screen and (max-width: 767px) {
  /* .child-category-view-all-link{
    min-width: 157px;
    max-width: 102px;
  } */
}
@media only screen and (max-width: 640px) {
  /* Category Slider Start  */
  .swiper-slide .child-category-link {
    max-height: 120px;
  }

  .swiper-button-next {
    right: 0px;
  }
  /* Category Slider End  */
  .product-listing-section .sort-by select {
    background-position: right 4px center !important;
  }
}
@media only screen and (max-width: 575px) {
  .section-header-container h2 span{
    font-size: 14px;
    margin-left: 4px;
  }
}
@media only screen and (max-width: 480px) {
  /* Category Slider Start  */
  .icon-all {
    width: 24px;
    height: 24px;
  }
  /* .child-category-view-all-link {
    max-width: 60px;
    border: none;
    min-height: -webkit-fill-available;
  } */
  .swiper-slide .child-category-link {
    max-height: 100px;
  }

  .child-category-wrapper {
    gap: 8px;
  }
  /* Category Slider End  */
}
