/* Minification failed. Returning unminified contents.
(25,1): run-time error CSS1019: Unexpected token, found '@'
(25,2): run-time error CSS1019: Unexpected token, found '@keyframes'
(26,8): run-time error CSS1035: Expected colon, found '{'
 */
/* ===== Catalog AJAX loader ===== */
#item-list {
    position: relative;
}

.catalog-ajax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.catalog-ajax-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid rgba(0,0,0,.10);
    border-top-color: rgba(0,0,0,.45);
    animation: catalogSpin .85s linear infinite;
}

@@keyframes catalogSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== "Show more" button ===== */
.catalog-more-wrap {
    margin: 18px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-more-btn {
    appearance: none;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 999px;
    padding: 12px 20px;
    min-width: 190px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
    background: #86b64a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .catalog-more-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 26px rgba(0,0,0,.12);
    }

    .catalog-more-btn:disabled {
        opacity: .55;
        cursor: default;
        transform: none;
    }

    /* маленький спиннер внутри кнопки */
    .catalog-more-btn .spinner {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,.35);
        border-top-color: #fff;
        animation: catalogSpin .85s linear infinite;
        display: none;
    }

    .catalog-more-btn.is-loading .spinner {
        display: inline-block;
    }


