Enlarge the product image in mobile only in dawn theme

I want to enlarge the size of the product image in mobile view to look bitter

Can you post the link to your website so I can know what you’re referring to? Thanks.

https://50-dollarstore.com/

the size of the product images which is showing in featured collection is small by height in mobile view not in desktop view

Try something like this in your Add Custom CSS section in the customizer:

@media screen and (max-width 750px){
.card-wrapper{
    width: 250px;
    margin: 0px 50px;
}
}

Does that work?

Brother where should i put these codes ?

In your customizer, click on the collection that you want to edit, and scroll down to where it says Add Custom CSS. Paste that code in there and let me know if it works. Thanks.