#mega-menu-wrap{
    background: #c60035;
}

/* ----------------------------------------------------------------------
   Search Index — блок фільтрів (адмінське прев'ю search_index).
   Вигляд навмисно повторює бойовий фільтр сайту (плагін WOOF): заголовок
   групи з "+/-" згортанням, компактний чекбокс-список з лічильником
   у дужках. Заскоплено в .sg-search-scope, щоб не зачепити решту сайту.
   ---------------------------------------------------------------------- */

.sg-search-scope .filter-tax {
    padding-bottom: 5px;
    margin-bottom: 9px;
    border-bottom: 1px solid #eee;
}

.sg-search-scope .filter-title {
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sg-search-scope .filter-toggle {
    text-decoration: none;
    width: 14px;
    text-align: center;
    color: inherit;
}

.sg-search-scope .filter-toggle::before {
    content: '\002B'; /* + */
}

.sg-search-scope .filter-tax.opened .filter-toggle::before {
    content: '\2212'; /* − */
}

.sg-search-scope .filter-content {
    display: none;
}

.sg-search-scope .filter-tax.opened .filter-content {
    display: block;
}

.sg-search-scope ul.filter-items {
    margin: 0 !important;
    list-style: none !important;
}

.sg-search-scope .filter-items .filter-item {
    margin: 0 3px 4px 3px;
    list-style: none !important;
}

.sg-search-scope .filter-items label {
    display: inline-flex !important;
    align-items: center;
    cursor: pointer;
    padding-top: 4px;
    padding-bottom: 4px;
    vertical-align: middle;
}

.sg-search-scope .filter-items input[type="checkbox"] {
    opacity: 0;
    margin: 0;
}

.sg-search-scope .filter-label-text {
    margin-left: 7px;
}

.sg-search-scope .filter-items input[type="checkbox"]:checked ~ .filter-label-text {
    color: #c60035;
}

.sg-search-scope .filter-count {
    margin-left: 3px;
    color: #767676;
}

.sg-search-scope .filter-decor {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    margin-left: 7px;
}

/* Лоадер на час AJAX-запиту фільтрації (filter.js::sendFiltersAjax). */
.sg-search-scope .products.sg-search-loading {
    position: relative;
    min-height: 120px;
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.sg-search-scope .products.sg-search-loading::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    width: 36px;
    height: 36px;
    margin-left: -18px;
    border: 3px solid #eee;
    border-top-color: #c60035;
    border-radius: 50%;
    animation: sg-search-spin 0.7s linear infinite;
}

@keyframes sg-search-spin {
    to { transform: rotate(360deg); }
}

/* Пагінація (.filter-pagination) навмисно НЕ тут — вона інлайниться в
   футер тільки на /shop/ і сторінках категорій, див. functions.php
   (sg_search_pagination_inline_css). */