<script>
//Скрываем недостпные варианты
var selects = document.querySelectorAll('.t-product__option-select');
selects.forEach(function(select) {
var options = select.querySelectorAll('option');
var disabledOptions = Array.from(options).filter(function(option) {
return option.disabled;
});
if (options.length === disabledOptions.length) {
select.parentNode.parentNode.style.display = "none";
}
});
</script>