Skip to content
    
    
      
    
    
    
      - Choosing a selection results in a full page refresh.
 
      - Opens in a new window.
 
    
    document.addEventListener('DOMContentLoaded', function() {
  // Find the variant select element
  var variantSelect = document.querySelector('select[name="id"]'); // Adjust selector if needed
  if (variantSelect && variantSelect.options.length > 0) {
    // Select the first option
    variantSelect.value = variantSelect.options[0].value;
    // Trigger a change event so the rest of the page (price, image, etc.) updates
    if (typeof variantSelect.dispatchEvent === 'function') {
      variantSelect.dispatchEvent(new Event('change'));
    } else if (typeof variantSelect.fireEvent === 'function') { // For older IE compatibility
      variantSelect.fireEvent('onchange');
    }
  }
});