Contact Us

Get in Touch

Whether you’re a retailer, distributor, or brand owner — we’d love to hear from you.
Fill out the form below and we’ll respond within 24 hours.

Select a product…
Owly Ada — Premium Cot Mattress
Owly Coco — Bamboo Viscose Mattress
Owly LouLou — Essential Cot Mattress
Owly Lea — Washable Air Fiber Mattress
Multiple products
Custom / OEM project
Other

Select volume…
Sample (1–10 pcs)
Small order (20–100 pcs)
Medium (100–500 pcs)
Large (500+ pcs)
Not sure yet


document.getElementById(‘owly-contact-form’).addEventListener(‘submit’, function(e) {
e.preventDefault();
var btn = document.getElementById(‘submit-btn’);
var status = document.getElementById(‘form-status’);
btn.disabled = true;
btn.textContent = ‘Sending…’;
status.textContent = ”;

var formData = new FormData(this);

fetch(‘/_contact_handler.php’, {
method: ‘POST’,
body: formData
})
.then(function(r) { return r.json(); })
.then(function(data) {
if (data.success) {
status.innerHTML = ‘✓ ‘ + data.message + ‘‘;
document.getElementById(‘owly-contact-form’).reset();
} else {
status.innerHTML = ‘✗ ‘ + data.message + ‘‘;
}
btn.disabled = false;
btn.textContent = ‘Send Inquiry →’;
})
.catch(function() {
status.innerHTML = ‘✗ Network error. Please try again.‘;
btn.disabled = false;
btn.textContent = ‘Send Inquiry →’;
});
});