Show barcode on product collection page Dawn theme

Hey, I need you help.

I am using Dawn theme version 13.0.1
I would like to display product barcode on collection page under the each product title. It could be next to vendor (see attached file)
Link to the site https://vip-a.shop/collections/antoinette

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Find the card-product.liquid file, and add the following code at this location in the file:

{%- if card_product.variants.size > 0 and card_product.variants[0].barcode != blank -%}
    

Barcode: {{ card_product.variants[0].barcode }}

 {%- endif -%}

Thank you it is working!
Could you tell me which file I have to edit to add barcode also in search result page?
Example link: https://vip-a.shop/search?q=20171&options%5Bprefix%5D=last

Never mind! It is working also there too!

Yes, great!