.wcce-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cbcbcb;
    padding: 16px 20px;
    margin-bottom: 25px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.wcce-toolbar__left{

    display:flex;

    gap:10px;

    align-items:center;

}

.wcce-per-page {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wcce-per-page__label {
    color: #999;
    font-size: 16px;
}

.wcce-per-page__options {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wcce-per-page__option {
    cursor: pointer;
    color: #999;
    font-size: 16px;
    line-height: 1;
}

.wcce-per-page__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wcce-per-page__option span {
    transition: color 0.2s ease;
}

.wcce-per-page__option input:checked + span {
    color: #111;
}

.wcce-result-count {
    display: flex;
    align-items: baseline;
    gap: 5px;
    white-space: nowrap;
    color: #111;
    font-size: 16px;
}

.wcce-result-count__label {
    color: #999;
}

.wcce-result-count strong {
    color: #111;
    font-weight: 700;
}

/* Кастомная сортировка */
.wcce-sort {
    position: relative;
}

.wcce-sort__button {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: none;
    color: #111;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.wcce-sort__current {
    color: #0073e6;
}

.wcce-sort__button:hover .wcce-sort__current {
    color: #f15a24;
}

.wcce-sort__button:hover .wcce-sort__arrow {
    border-color: #f15a24;
}

.wcce-sort__arrow {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #0073e6;
    border-bottom: 1.5px solid #0073e6;
    transform: rotate(45deg);
    margin-left: 3px;
    margin-top: -3px;
}

.wcce-sort__menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 235px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 9px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    padding: 6px 0;
    z-index: 100;
    overflow: hidden;
}

.wcce-sort__option {
    display: block;
    width: 100%;
    padding: 11px 16px;
    border: 0;
    background: transparent;
    color: #111;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
}

.wcce-sort__option:hover {
    background: #fff7dc;
}

.wcce-sort__option:hover {
    background: #f5f5f5;
}

.wcce-orderby--hidden {
    display: none !important;
}

.wcce-sort__option.is-selected {
    color: #f15a24;
    font-weight: 700;
}

/* Пагинация */
.wcce-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
	justify-content: flex-end;
}

.wcce-pagination li {
    margin: 0;
    padding: 0;
}

.wcce-pagination {
    margin-top: 15px;
    margin-bottom: 15px;
}

.wcce-pagination a,
.wcce-pagination .current {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 4px;
    background: #eeeeee;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    box-sizing: border-box;
}

.wcce-pagination .current {
    background: #f15a24;
    color: #fff;
    font-weight: 700;
}

.wcce-pagination a:hover {
    background: #dddddd;
}

/* Кнопка сброса фильтра */
.js-reset-filter {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 15px 0 20px;
    padding: 12px 20px;
    background: #e74a41;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.js-reset-filter:hover {
    background: #be3932;
    color: #ffffff !important;
}

/* Блок выбранных фильтров */
.wcce-selected-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 20px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    font-size: 14px;
}

.wcce-selected-filters > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 0 !important;
}

.wcce-selected-filter-value {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    background: #f15a24;
    color: #ffffff;
    border-radius: 5px;
    font-weight: 400;
}

.wcce-selected-filter-remove {
    color: #000000;
    font-size: 18px;
    font-weight: 900;
    margin-left: 8px;
    cursor: pointer;
    line-height: 1;
}

.wcce-selected-filters__title {
    width: 100%;
    margin-bottom: 14px;
    font-size: 14pt;
    font-weight: 700;
    color: #111;
}

.wcce-selected-filters__empty {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
}

.wcce-selected-filters__empty-value {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    background: #f15a24;
    color: #ffffff;
    border-radius: 5px;
    font-weight: 400;
}

.filter-heading {
    position: relative;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 22px;
    padding-bottom: 10px;
}

.filter-heading::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #f15a24;
    border-radius: 2px;
    margin: 8px auto 0;
}