document.addEventListener('DOMContentLoaded', () => { // Mobile menu toggle const mobileBtn = document.querySelector('.mobile'); const nav = document.querySelector('.nav'); if (mobileBtn && nav) { mobileBtn.addEventListener('click', () => { nav.classList.toggle('show-mobile'); }); } // Sticky shadow on scroll const header = document.querySelector('.site-header'); window.addEventListener('scroll', () => { if (window.scrollY > 10) { header.style.boxShadow = '0 10px 30px rgba(0,0,0,.06)'; } else { header.style.boxShadow = 'none'; } }); // Toast function toast(msg, ok = true) { const el = document.createElement('div'); el.textContent = msg; el.style.cssText = ` position:fixed;right:20px;bottom:20px;z-index:9999; padding:14px 18px;border-radius:12px;color:#fff; background:${ok ? '#14b8a6' : '#ef4444'}; box-shadow:0 20px 40px rgba(0,0,0,.18); font-weight:700; `; document.body.appendChild(el); setTimeout(() => el.remove(), 2800); } // AJAX forms document.querySelectorAll('form[data-ajax="true"]').forEach(form => { form.addEventListener('submit', async (e) => { e.preventDefault(); const btn = form.querySelector('button[type="submit"]'); const old = btn ? btn.innerHTML : ''; if (btn) { btn.disabled = true; btn.innerHTML = 'Please wait...'; } try { const fd = new FormData(form); const res = await fetch(form.action, { method: 'POST', body: fd, headers: { 'X-Requested-With': 'XMLHttpRequest' } }); const data = await res.json(); if (data.success) { toast(data.message || 'Success'); form.reset(); } else { toast(data.message || 'Something went wrong', false); } } catch (err) { toast('Network error', false); } if (btn) { btn.disabled = false; btn.innerHTML = old; } }); }); });
We're Here To Help

Contact SimbaCareUSA

Have a question about products, support, partnerships, or pet wellness? Our team is ready to assist you.

Send Us A Message

Complete the form below and we’ll respond as soon as possible.

By submitting, you agree that we may contact you regarding your inquiry.

Reach Us Directly

Prefer direct communication? Use the information below.

Email Support support@simbacareusa.com
Business Inquiries partners@simbacareusa.com
Response Time Usually within 24 business hours
Service Area United States & Global Digital Support

Premium Care Starts With A Conversation

We’re committed to helping pet families with better products, better guidance, and better service.

Learn About Us