Product Grid - product name font and price font size - Reformation Theme

Tell me, please, how do I change the size of the text in the product grid - product name font and the price size ? I can only change to the smallest 100% in the theme setting, but I want to get the fonts smaller than that. I’m using the reformation theme. I don’t have the base.css file in my code. Please tell me how to do this.

Here is the link to the website https://noenddenim.com/

Hello @noend :waving_hand:

In Shopify Admin, you can go to Edit theme code, open file product.css and add this code at the bottom

.product-card-info .product-card-title {
    font-size: 24px !important;
}

.product-card-info .price {
    font-size: 24px !important;
}

You can change the font size values in the code.