<div class="quantity-input js-quantity-input {{ class|default }}">
<input type="button" value="" class="quantity-input__minus js-quantity-input__minus" {% if value|default <= 1 %} disabled {% endif %}>
<input type="number" step="1" min="1" max="{{ max|default }}" data-max="{{ max|default }}" value="{{ value|default(1) }}"
name="{{ name }}" class="quantity-input__field js-quantity-input__field" data-gtm-cp-pdp-minus="" aria-label="{{ 'line_item_header_quantity'|trans}}">
<input type="button" value="" class="quantity-input__plus js-quantity-input__plus" data-gtm-cp-pdp-plus="" {% if value|default >= max %} disabled {% endif %}>
</div>