.section-product-main {
  padding-top: 20px;
}
.section-product-main h1 {
  color: var(--text-heading);
  margin-bottom: 12px;
}
.section-product-main .wrap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.section-product-main .wrap-header .result {
  font-size: var(--fz-18);
  font-weight: 400;
  color: var(--text-description);
}

.section-product-main .col-right .wrap-filter {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wrap-product-sale .swiper-slide {
  height: auto;
}

.product-small {
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  height: 100%;
}

.category-page-row .row-small > .col {
  padding-bottom: 24px;
}
.product-small .add-to-cart-button .added_to_cart.wc-forward,
.product-small .star-rating,
.product-small .image-tools {
  display: none !important;
}
.product-small .category a,
.product-small .category {
  color: var(--text-description);
  font-size: var(--fz-14);
  font-weight: 500;
  line-height: normal;
  margin-bottom: 4px;
}
.product-small .box-text-products {
  background: #fff;
  padding: 16px;
  height: 230px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e9e9e9;
  overflow: hidden;
}

.product-small .title-wrapper .product-title a {
  color: var(--text-heading);
  font-size: var(--fz-16);
  font-weight: 500;
  line-height: normal !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
}
.product-small .category a:hover,
.product-small .title-wrapper .product-title a:hover {
  color: var(--primary-color);
}
.product-small .box-image img {
  height: 260px;
  object-fit: cover;
  transition: all 0.5s ease !important;
  overflow: hidden;
}
.product-small .box-image:hover img {
  scale: 1.1;
}
.product-small .price,
.product-small .price-wrapper {
  display: flex !important;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  margin: 10px 0px;
}
.number-product {
  /* margin-bottom: 20px; */
  color: var(--text-description);
  font-size: 14px;
  font-weight: 400;
}
.product-small .price-wrapper del bdi {
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
}
.product-small .price-wrapper .amount {
  font-size: var(--fz-18) !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

.box-filter .widget-title,
#shop-sidebar .widget-title {
  font-size: var(--fz-20);
  color: var(--text-heading);
  font-weight: 600;
  background: #e9e9e9;
  padding: 16px;
  text-transform: none;
  width: 100%;
  display: inline-block;
}

#shop-sidebar .is-divider {
  display: none;
}

.box-filter .btn-filter {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: var(--primary-color);  
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}
.box-filter .btn-filter img {
  width: 35px;
  object-fit: contain;
}
.box-filter .box-category-menu {
  transform: translateY(-100%);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  opacity: 1;
  z-index: 999999;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  background-color: #fff;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  pointer-events: none;
  padding: 20px;
}
.box-filter .box-category-menu::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--primary-color);
}
.box-filter .box-category-menu::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.box-filter .box-category-menu::-webkit-scrollbar {
	width: 6px;
}
.box-filter .box-category-menu.active {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}
.box-filter .box-category-menu .widget {
  margin-bottom: 0px;
}

/*  */
.cart-toast {
  position: fixed;
  top: 125px;
  right: 20px;
  background: #00c853;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  z-index: 9999;
}
.cart-toast.error {
  background: #d32f2f;
}

.woocommerce-message.message-wrapper {
  animation: wooNoticeFadeOut 2s ease forwards;
}

@keyframes wooNoticeFadeOut {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}


@media (max-width: 850px) {
.box-filter .btn-filter {
    display: flex;
  }
  .hide-for-medium-cus {
    padding: 0px !important;
  }
   .category-page-row #shop-sidebar {
    display: none;
  }
}