How to show only one product in a row on mobile instead of two?

I am using the Wokiee theme - it allows me to change the number of products in a collection row on desktop, but on mobile there are 2 products per row by default. How can I change this?

Site: https://thebigcoinshop.myshopify.com/

Pass: roll

thanks for any help

@baxter88 in customize->Default collection-> Numbers of column in mobile from here you can set 1 product in row in mobile device

Hey Ujjaval,

Thanks for your reply- but on my theme I currently do not have the option to do that

@baxter88 add below css in theme.css file

@media (max-width:425px)
{
.col-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}
}

Thank you. You are a legend