/** Shopify CDN: Minification failed

Line 16:0 Unexpected "{"
Line 16:1 Expected identifier but found "%"
Line 17:2 Unexpected "<"
Line 18:50 Unterminated string token
Line 19:16 Unexpected "{"
Line 19:23 Expected ":"
Line 19:45 Unexpected "600w"
Line 20:16 Unexpected "{"
Line 20:23 Expected ":"
Line 20:46 Unexpected "1200w"
... and 4 more hidden warnings

**/
{% if image != blank %}
  <img src="{{ image | img_url: '300x' }}" 
       srcset="{{ image | img_url: '300x' }} 300w,
               {{ image | img_url: '600x' }} 600w,
               {{ image | img_url: '1200x' }} 1200w"
       sizes="(max-width: 600px) 300px,
              (max-width: 1200px) 600px,
              1200px"
       loading="lazy"
       class="lazyload"
       alt="{{ image.alt | escape }}">
{% endif %}
