NOVA MARKET

Contact

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Contact Us · Sparh</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #f8f9fc; color: #1e293b; line-height: 1.6; padding: 2rem 1rem;
        }
        .container {
            max-width: 900px; margin: 0 auto; background: #ffffff;
            border-radius: 24px; box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1);
            padding: 2.5rem 2rem;
        }
        h1 {
            font-size: 2rem; font-weight: 700; color: #0f172a;
            border-left: 6px solid #3b82f6; padding-left: 1.2rem; margin-bottom: 0.25rem;
        }
        .last-updated {
            color: #64748b; font-size: 0.9rem; margin-bottom: 2rem;
            padding-left: 1.8rem; border-bottom: 1px solid #e2e8f0; padding-bottom: 1.25rem;
        }
        h2 {
            font-size: 1.4rem; font-weight: 600; color: #0f172a;
            margin: 1.75rem 0 1rem; display: flex; align-items: center; gap: 0.5rem;
        }
        h2::before {
            content: ''; display: inline-block; width: 6px; height: 22px;
            background: #3b82f6; border-radius: 8px;
        }
        p { margin-bottom: 1rem; color: #334155; }
        .contact-line {
            display: flex; flex-wrap: wrap; align-items: baseline;
            gap: 0.4rem 0.8rem; margin-bottom: 0.5rem;
        }
        .contact-line strong { font-weight: 600; color: #0f172a; min-width: 80px; }
        .highlight-box {
            background: #f1f5fe; border-left: 4px solid #3b82f6;
            padding: 1rem 1.5rem; border-radius: 12px; margin: 1.25rem 0;
        }
        .address-block {
            background: #f9fbfe; border-radius: 16px; padding: 1rem 1.5rem;
            margin: 1.25rem 0; border: 1px solid #e2e8f0;
        }
        .address-block p { margin-bottom: 0.3rem; }
        .footer-note {
            margin-top: 2.5rem; font-size: 0.85rem; color: #6b7a8f;
            text-align: center; border-top: 1px solid #dde4ec; padding-top: 1.5rem;
        }
        a { color: #2563eb; text-decoration: none; font-weight: 500; }
        a:hover { text-decoration: underline; }
        @media (max-width: 700px) { .container { padding: 1.5rem 1rem; } }
    </style>
</head>
<body>
    <div class="container">
        <h1>Contact Us</h1>
        <div class="last-updated">Last updated: September 10, 2026</div>

        <p>Sparh provides support for orders, delivery questions, product information, payments, returns, refunds, privacy requests, and store policies.</p>

        <h2>Customer support</h2>
        <div class="contact-line"><strong>Email:</strong> support@sparh.shop</div>
        <div class="contact-line"><strong>Phone:</strong> +1 843-568-6648</div>
        <div class="contact-line"><strong>Support & mailing address:</strong> 32 Ripplemoor Ln, Charleston, South Carolina 29414, United States</div>

        <h2>Registered business address</h2>
        <div class="address-block">
            <p>Sparh</p>
            <p>32 Ripplemoor Ln</p>
            <p>Charleston, South Carolina 29414</p>
            <p>United States</p>
        </div>

        <div class="highlight-box">
            📌 When contacting us about an order, include the order number and email address used at checkout. For a damaged, defective, incorrect, or not-as-described item, also include clear photos or video of the product and packaging. We normally reply within <strong>2 business days</strong>.
        </div>

        <div class="footer-note">© 2026 Sparh · sparh.shop · All rights reserved.</div>
    </div>
</body>
</html>