.woocommerce-pagination .nav-pagination,
.pagination {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    .page-number,
    .page-numbers {
        width: 32px;
        height: 32px;
        border-radius: 4px;
        border: 1px solid #dfe3e8;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        color: rgba(38, 38, 38, 0.6);
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.42;
        transition: all 0.3s;
    }
    .page-number:hover,
    .page-number.current,
    .page-numbers:hover,
    .page-numbers.current {
        border-radius: 4px;
        border: 2px solid #e97f00;
        background: #fff;
        color: #e97f00;
    }
}
