Skip to product information
1 of 11

Wearables

Wearables

All the trimmings to make their night even more special

Corsages

Hand crafted corsages to meet your attire, with adjustable strapping to fit to comfort.

Contact us for floral tattoos and necklaces

Boutonnieres

Hand crafted boutonnieres with attachment hardware. Made fresh and cooled, ready for the big night

Pocket Square Boutonnieres

Hand crafted boutonnieres designed to spill out of the pocket, instead of attached to the lapel.

*** All pictures are past Blended Farms Corsages and Boutonnieres. Yours will be made to match your event or theme wishes ***

Regular price $30.00
Regular price Sale price $30.00
Sale Sold out
For all occasions
View full details
src="path-to-shopify-cart-integration.js"> `; document.body.insertAdjacentHTML('beforeend', modalHTML); deliveryModal = document.getElementById('delivery-modal'); setupModalEventListeners(); } function setupModalEventListeners() { // Set minimum date to tomorrow const tomorrow = new Date(); tomorrow.setDate(tomorrow.getDate() + 1); const deliveryDateInput = document.getElementById('delivery-date'); if (deliveryDateInput) { deliveryDateInput.min = tomorrow.toISOString().split('T')[0]; } // Close modal when clicking outside deliveryModal.addEventListener('click', function(e) { if (e.target === deliveryModal) { closeDeliveryModal(); } }); // Enable calculate button when all fields are filled const inputs = ['street', 'city', 'state', 'zipcode']; inputs.forEach(id => { const input = document.getElementById(id); if (input) { input.addEventListener('input', checkFormComplete); } }); } function checkFormComplete() { const street = document.getElementById('street').value.trim(); const city = document.getElementById('city').value.trim(); const state = document.getElementById('state').value; const zipcode = document.getElementById('zipcode').value.trim(); const calculateBtn = document.getElementById('calculate-btn'); if (street && city && state && zipcode) { calculateBtn.style.background = '#27ae60'; calculateBtn.disabled = false; } else { calculateBtn.style.background = '#95a5a6'; calculateBtn.disabled = true; } }