.w-slider-nav.w-round > div.w-active {background-color:#fdbe0f;width:20px;}
.w-slider-nav.w-round > div {background-color:#fff;border-radius:10px;}
.wp-pagenavi{
    grid-column-gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    display: flex;
}
/* Стили фильтра */
/* Форма WooCommerce */
form.woocommerce-ordering {
  position: relative;
  width: 250px;
  margin: 0;
}

/* Прячем стандартный select */
form.woocommerce-ordering select.orderby {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  left: 0;
  top: 0;
}

/* Кастомный dropdown */
.wc-sort {
  position: relative;
  width: 250px;
}

.wc-sort__toggle {
  width: 100%;
  min-height: 40px;
  padding: 12px 10px 12px 14px;
  background: #fff;
  border: none;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #263b51;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.wc-sort__toggle::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-right: 3px solid #263b51;
  border-bottom: 3px solid #263b51;
  transform: rotate(45deg);
  transition: transform .2s ease, top .2s ease;
}

.wc-sort.is-open .wc-sort__toggle::after {
  transform: rotate(-135deg);
  top: 20px;
}

.wc-sort__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  padding: 5px 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.wc-sort.is-open .wc-sort__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wc-sort__item {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #263b51;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.wc-sort__item:hover {
  color: #fdbe0f;
  background: rgba(91, 108, 255, .04);
}

.wc-sort__item.is-active {
  color: #fdbe0f;
}

@media (max-width: 767px) {
    .wc-sort__toggle,
  .wc-sort__item {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  form.woocommerce-ordering,
  .wc-sort {
    width: 100%;
}
}