Coordonnées

/* ===== CONTACT PAGE STYLES ===== */ .contact-page { max-width: 700px; margin: 40px auto; padding: 30px; background: #fff; border-radius: 8px; box-shadow: 0 3px 15px rgba(0,0,0,0.1); font-family: "Poppins", sans-serif; } .contact-page h1 { text-align: center; font-size: 2em; margin-bottom: 10px; color: #222; } .contact-page p.intro { text-align: center; color: #555; margin-bottom: 30px; } form.contact-form { display: flex; flex-direction: column; gap: 15px; } .contact-form label { font-weight: 600; color: #333; } .contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 1em; background: #fafafa; transition: border-color 0.3s ease; } .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #008060; /* Shopify green */ outline: none; } .contact-form button { background: #008060; color: #fff; font-weight: 600; border: none; border-radius: 5px; padding: 14px; font-size: 1.1em; cursor: pointer; transition: background 0.3s ease; } .contact-form button:hover { background: #00664a; } .success-message { background: #e6f4ea; color: #145c32; border: 1px solid #b7e0c5; padding: 12px; margin-top: 20px; border-radius: 5px; display: none; }

Contact Us

Have an issue with your order or need help? Fill out the form below and our team will get back to you within 24 hours.

Your Name * Email Address * Order Number (if applicable) Reason for Contact * Select a reason Order Issue Product Question Website Problem Other Message * Send Message
✅ Thank you! Your message has been sent successfully.
// Optional: fake success message (for testing) const form = document.getElementById('contact_form'); const successMsg = document.getElementById('success-message'); form.addEventListener('submit', function(e) { // Prevent default for demo – Shopify handles this automatically in production e.preventDefault(); successMsg.style.display = 'block'; form.reset(); });