{% assign title = item.title %}
            {% if title != blank %}
              
                {{ title }}
              
            {% endif %}
            {% assign subtitle = item.title | remove: title | remove_first: '-' | strip %}
            {% if subtitle != blank %}
              
                {{ subtitle | split: '-' | first }}
              
            {% endif %}
    
            {% for option in item.options_with_values %}
              {% unless option.name == "Title" %}
                
{{ option.name }} {{ option.value }}
              {% endunless %}
            {% endfor %}
            
              {% for prop in item.properties %}
                {%- liquid 
                  if prop[0] contains 'custom-' or prop[0] contains 'ccs-embroidery-'
                    continue
                  endif
                %}
                {% assign _prop = prop | first | split:'_' %}
                {% unless _prop[0] == blank %} 
                  
{{ prop | first | replace: '_', ' ' | capitalize }} {{ prop | last }}
                {% endunless %}
              {% endfor %}
              {% if found_bundle %}
                {% for prop in item.properties %}
                  {% assign pk1 = prop | first %}
                  {% if pk1 == '_components' %}
                    {% assign bundle_items = prop | last | split: ',' %}
                    {% for bundle_item in bundle_items %}
                      
                      {% if bundle_qty_up and bundle_qty != blank %}
                        {{ bundle_qty }}
                      {% else %}
                        {{ item.quantity }}
                      {% endif %}
                      x {{ bundle_item | strip }}
                      
                    {% endfor %}
                  {% endif %}
                {% endfor %}
              {% endif %} 
            
              {{ item.price | money | replace: "$ ", "$" }}
              {% if item.properties._compare_at_price %}
                {{ item.properties._compare_at_price | money | replace: "$ ", "$" }}
              {% endif %}