How to show product variant as radio button replace of the select box in debut theme

To change the dropdown selector in debut theme with radio buttons, you can use this:
Replace the { % unless … %} in { % form ‘product’… %} with this snippet

{% unless product.has_only_default_variant %}
              {% for option in product.options_with_values %}
                
                {% assign option_position = forloop.index %}
                
              {% endfor %}
            {% endunless %}

If helpful, please Like and Accept the solution