function ContactStrip() {
  return (
    <div className="cs">
      <style>{`
        .cs { background: var(--color-bg); padding: 28px var(--gutter); text-align: center; font-size: 14px; color: var(--color-text); }
        .cs a { color: var(--color-primary-dark); text-decoration: none; }
        .cs a:hover { color: var(--color-primary-darker); }
      `}</style>
      <span>Email: <a href="mailto:support@motherscountrystore.com">support@motherscountrystore.com</a></span>
    </div>
  );
}

function Footer() { return null; }
window.ContactStrip = ContactStrip; window.Footer = Footer;
