merhaba arkadaşlar raido buttonlar ile seçenekleri ekledim beden seçeneklerini yani 36 38 40 42 diye gidiyor mesela 36 beden yoksa 36 bedeni göstermiyor burada problem yok ama ben görünmesini istiyorum görünsün ve css ile üstüne çarpı atayım bunu nasıl yapabilirim dosya uzantım product.twig

       {% endif %}
{% if option.type == 'radio' %}
<div id="bedensecenegi" class="form-group{% if option.required %} required{% endif %}">
<div class="control-label">{{ option.name }}</div>
<div id="input-option{{ option.product_option_id }}"> {% for option_value in option.product_option_value %}
<div class="radio">
<label>
<input type="radio" name="option[{{ option.product_option_id }}]" value="{{ option_value.product_option_value_id }}" />
{% if option_value.image %} <img src="{{ option_value.image }}" alt="{{ option_value.name }} {% if option_value.price %} {{ option_value.price_prefix }} {{ option_value.price }} {% endif %}" class="img-thumbnail" /> {% endif %}
{{ option_value.name }}
{% if option_value.price %}
({{ option_value.price_prefix }}{{ option_value.price }})
{% endif %} </label>
</div>
{% endfor %} </div>
</div>
{% endif %}
            {% if option.type == 'checkbox' %}