How to set the same logo on all product pages under 'Tartar Care'?

Hello, I currently have this code so that on this page: https://tartar-berlin.com/collections/tartar-care the header is different than in other pages:

{% if template contains "collection" and collection.handle == "tartar-care" %}
{% assign logo_src="https://cdn.shopify.com/s/files/1/2479/2738/files/TARTAR-Care-Logo-Web-transparent.png?v=1614004087" %}
{% else %}
{% assign logo_src="https://cdn.shopify.com/s/files/1/2479/2738/files/TARTAR-webheader_2f64f81d-e65a-4f1e-99ab-6766355f38de.jpg?17689223928869986124" %}
{% endif %}

I want the same logo to appear on all other product pages under “Tartar Care”. Right now it only appears on the main collection page but not when you click on a specific product. Thank you so much for you help!

Hello @Elisaw

Please check this one code.

{% if template contains "collection" and collection.handle == "tartar-care" %}
{% assign logo_src="https://cdn.shopify.com/s/files/1/2479/2738/files/TARTAR-Care-Logo-Web-transparent.png?v=1614004087" %}
{% else %}
{% assign logo_src="https://cdn.shopify.com/s/files/1/2479/2738/files/TARTAR-Care-Logo-Web-transparent.png?v=1614004087" %}
{% endif %}

.

@ZestardTech thanks for your reply! I need the “tartar care” logo to only appear for the collection and all the products. So here:

https://tartar-berlin.com/collections/tartar-care

and here and all other products under the collection:

https://tartar-berlin.com/collections/tartar-care/products/lederpflegeburste-rosshaar-hell

On the rest of the website the other logo should appear like here:

https://tartar-berlin.com/

Hello @Elisaw

Please check this one code.

{% if template contains "collection" %}
{% assign logo_src="https://cdn.shopify.com/s/files/1/2479/2738/files/TARTAR-Care-Logo-Web-transparent.png?v=1614004087" %}
{% else %}
{% assign logo_src="https://cdn.shopify.com/s/files/1/2479/2738/files/TARTAR-webheader_2f64f81d-e65a-4f1e-99ab-6766355f38de.jpg?17689223928869986124" %}
{% endif %}

@ZestardTech that would add it to every collection. I only need it for the collection “tartar care”. Any other ideas?