.pagination-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.pagination-info{
    font-size:15px;
    font-weight:600;
    color:#23002C;
}

.custom-pagination{
    display:flex;
    gap:8px;
    list-style:none;
    margin:0;
    padding:0;
}

.custom-pagination li a,
.custom-pagination li span{
    width:42px;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid #ddd;
    border-radius:8px;
    text-decoration:none;
    color:#23002C;
    background:#fff;
    transition:.3s;
}

.custom-pagination li a:hover{
    background:#23002C;
    color:#fff;
    border-color:#23002C;
}

.custom-pagination li.active span{
    background:#23002C;
    color:#fff;
    border-color:#23002C;
}

.custom-pagination li.disabled span{
    opacity:.4;
}

/* Mobile */
.mobile-pagination{
    display:none;
}

.mobile-pagination-buttons{
    display:flex;
    justify-content:space-between;
    gap:10px;
    margin-top:15px;
}

.mobile-btn{
    flex:1;
    text-align:center;
    padding:12px;
    background:#23002C;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.mobile-btn:hover{
    color:#fff;
}

@media (max-width:768px){

    .pagination-wrapper{
        flex-direction:column;
        align-items:stretch;
    }

    .pagination-info{
        text-align:center;
    }

    .desktop-pagination{
        display:none;
    }

    .mobile-pagination{
        display:block;
    }

    .custom-pagination{
        justify-content:center;
        flex-wrap:wrap;
    }

}