.category-list a.active {
    color: #ffffff;
    background: #f47521;
    border-color: #f47521;
}

.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
    padding: 18px;
    border: 1px solid rgba(26, 31, 44, 0.1);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(26, 31, 44, 0.07);
}

.catalog-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid rgba(244, 117, 33, 0.35);
    border-radius: 999px;
    color: #c9540b;
    font-weight: 800;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.catalog-pagination a:hover,
.catalog-pagination a:focus-visible {
    color: #ffffff;
    background: #f47521;
    border-color: #f47521;
}

.catalog-pagination span {
    color: #5e6472;
    font-size: 0.95rem;
}

.catalog-pagination strong {
    color: #1a1f2c;
}

@media (max-width: 620px) {
    .catalog-pagination {
        flex-wrap: wrap;
        gap: 12px;
    }

    .catalog-pagination span {
        width: 100%;
        text-align: center;
        order: -1;
    }
}
