"Shipping Calculated at checkout" How do I remove?

When selecting a product to add to cart on my store it says “shipping calculated at checkout” underneath the price. How do I remove this or make it so you can’t click on shipping and have it redirect you to the policies?

store: colourfi.store

@AntiEverybody

Welcome to the Shopify Community.
WE are always happy to help you.

there are two way to disable it.
1.There is an Setting on the theme to disable it.

2.Second by code.

.product__policies.rte {
    display: none !important;
}
  1. Navigate to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
  3. Save it.

thank you.