/** Shopify CDN: Minification failed

Line 16:0 Unexpected "{"
Line 16:1 Expected identifier but found "%"
Line 21:0 Unexpected "{"
Line 21:1 Expected identifier but found "%"
Line 22:7 Expected identifier but found "%"
Line 25:0 Unexpected "{"
Line 25:1 Expected identifier but found "%"
Line 26:0 Unexpected "{"
Line 26:1 Expected identifier but found "%"
Line 27:6 Unexpected "<"
... and 9 more hidden warnings

**/
{%- liquid
    assign desc = product.description
    assign desc_color_text = block.settings.desc_color_text
    assign word_number = block.settings.word_number
-%}
{% if product.metafields.c_f.short_description %}
    {%- liquid
        assign desc = product.metafields.c_f.short_description
    -%}
{% endif %}
{%- if desc != blank -%}
    <div class="productView-desc scoder-text-format">
  <style>
    :root {
      --desc-color-text: {{ desc_color_text }}
    }
  </style>
        {{ desc | strip_html | truncatewords: word_number }}
    </div>
{%- endif -%}