<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="facebook-domain-verification" content="zow0523qdzg9l6g0s2yc5oerm4ioz7" />
    
    <title>Store Not Found - Enthusiastic</title>
    <link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='15' fill='%23F1F5F9'/%3E%3Ccircle cx='16' cy='16' r='6' fill='%234A5568'/%3E%3C/svg%3E">
    <link rel="stylesheet" href="/css/bulma.min.css">
    <style>
        
        :root {
            --brand-primary: #4A5568;
            --brand-primary-dark: #2D3748;
            --brand-font: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, Helvetica, Arial, sans-serif;
        }

        html {
            min-height: 100%;
        }

        body {
            font-family: var(--brand-font);
            background: #F7FAFC;
            min-height: 100%;
        }

        .main-container {
            background: #FFFFFF;
            border-radius: 12px;
            border: 1px solid #E2E8F0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            margin: 2rem auto;
            max-width: 1200px;
            padding: 3rem;
        }

        .logo-section {
            text-align: center;
            margin-bottom: 3rem;
        }

        .logo-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--brand-primary-dark);
            margin-top: 1rem;
        }

        .logo-subtitle {
            font-size: 1rem;
            color: #718096;
            margin-top: 0.5rem;
        }

        .tabs {
            border-bottom: 2px solid #E2E8F0;
            margin-bottom: 2rem;
        }

        .tabs ul {
            justify-content: center;
        }

        .tabs li a {
            font-size: 1.1rem;
            color: var(--brand-primary);
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }

        .tabs li.is-active a {
            color: var(--brand-primary-dark);
            border-bottom-color: var(--brand-primary);
            font-weight: 600;
        }

        .tabs li a:hover {
            color: var(--brand-primary-dark);
        }

        .content-section {
            display: none;
        }

        .content-section.is-active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .page-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--brand-primary-dark);
            text-align: center;
            margin-bottom: 2rem;
        }

        .tagline {
            font-size: 1.25rem;
            color: var(--brand-primary);
            text-align: center;
            margin-bottom: 2rem;
        }

        .content-text {
            font-size: 1.1rem;
            color: var(--brand-primary-dark);
            line-height: 1.7;
        }

        .hero-box {
            background: #F7FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            padding: 2rem;
        }

        .icon-card {
            text-align: center;
            padding: 1.5rem;
        }

        .icon-card svg {
            margin: 0 auto 1rem;
        }

        .icon-card p {
            color: var(--brand-primary);
            font-size: 1.05rem;
        }

        .quote-box {
            background: white;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .quote-text {
            font-size: 1.25rem;
            color: var(--brand-primary);
            font-style: italic;
        }

        .coming-soon-box {
            background: #F7FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            padding: 3rem;
            text-align: center;
        }

        footer {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #E2E8F0;
            text-align: center;
            color: #718096;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        .newsletter-form {
            background: #F7FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 3rem;
        }

        .newsletter-form h3 {
            color: var(--brand-primary-dark);
            text-align: center;
            margin-bottom: 1rem;
        }

        .newsletter-form p {
            color: var(--brand-primary);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .newsletter-form .field {
            margin-bottom: 1rem;
        }

        .newsletter-form label {
            color: var(--brand-primary-dark);
            font-weight: 600;
            display: block;
            margin-bottom: 0.5rem;
        }

        .newsletter-form input,
        .newsletter-form select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #CBD5E0;
            border-radius: 6px;
            font-size: 1rem;
            background: white;
            transition: border-color 0.2s;
        }

        .newsletter-form input[type="checkbox"],
        .newsletter-form input[type="radio"] {
            width: auto;
            padding: 0;
        }

        .newsletter-form input:focus,
        .newsletter-form select:focus {
            outline: none;
            border-color: var(--brand-primary);
        }

        .newsletter-form .radio-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }

        .newsletter-form .radio-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .newsletter-form .radio-option input[type="radio"] {
            width: auto;
            margin: 0;
        }

        .newsletter-form .radio-option label {
            margin: 0;
            font-weight: normal;
            cursor: pointer;
        }

        .newsletter-form .submit-btn {
            background: var(--brand-primary);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: block;
            margin: 1.5rem auto 0;
        }

        .newsletter-form .submit-btn:hover {
            background: var(--brand-primary-dark);
        }

        .newsletter-form .required {
            color: #D32F2F;
        }

        .newsletter-form .success-message,
        .newsletter-form .error-message {
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            margin-top: 1rem;
            display: none;
        }

        .newsletter-form .success-message {
            background: #E8F5E9;
            border: 1px solid #81C784;
            color: #2E7D32;
        }

        .newsletter-form .error-message {
            background: #FFEBEE;
            border: 1px solid #E57373;
            color: #C62828;
        }

    </style>
    
</head>
<body>
    <div class="container">
        <div class="main-container">
            <!-- Logo Section -->
            <div class="logo-section">
                
                <h1 class="logo-title">Enthusiastic</h1>
                <p class="logo-subtitle"></p>
            </div>

            <!-- Navigation Tabs -->
            <div class="tabs is-centered is-medium">
                <ul>
                    <li class="is-active">
                        <a href="/sitemap.xml">Home</a>
                    </li>
                    <li>
                        <a href="/sitemap.xml/about">About</a>
                    </li>
                    <li>
                        <a href="/sitemap.xml/products">Products</a>
                    </li>
                    <li>
                        <a href="/sitemap.xml/subscribe">Subscribe</a>
                    </li>
                    
                    
                </ul>
            </div>

            <!-- Page Content - Child templates insert their content here -->
            <div class="content-section is-active">

        <div class="coming-soon-box">
            <h3 class="title is-3">Store Not Found</h3>
            <p class="content-text">This link doesn't match a store we know about. Double-check the link and try again.</p>
        </div>

        
    </div>

            <!-- Footer -->
            <footer>
                <p style="text-align: center; margin-bottom: 1.5rem;">
                    <a href="/sitemap.xml/subscribe" style="color: var(--brand-primary); font-size: 1.05rem; font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--brand-primary);">
                        Subscribe to Our Newsletter
                    </a>
                </p>
                <p style="font-size: 1.05rem; font-weight: 600;">Enthusiastic</p>
                <p style="font-size: 0.85rem; margin-top: 1rem;">
                    <a href="/sitemap.xml/privacy-policy"
                       style="color: #718096; text-decoration: none;">Privacy Policy</a>
                    <span style="margin: 0 0.5rem; color: #718096;">|</span>
                    <a href="/sitemap.xml/terms-of-service"
                       style="color: #718096; text-decoration: none;">Terms of Service</a>
                </p>
            </footer>
        </div>
    </div>

    <!-- Page-specific scripts -->
    
</body>
</html>
