<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Checkout | Seed Vault</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/lucide@latest"></script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;600&display=swap');
        h1, h2, h3 { font-family: 'Playfair Display', serif; }
        body { font-family: 'Inter', sans-serif; }
    </style>
</head>
<body class="bg-stone-50 text-stone-800">

    <!-- Navigation -->
    <nav class="bg-white border-b border-stone-200 sticky top-0 z-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between h-16 items-center">
                <div class="flex items-center">
                    <a href="/" class="text-2xl font-bold text-emerald-800 flex items-center gap-2">
                        <i data-lucide="sprout"></i>
                        <span class="hidden sm:inline">Seed Vault</span>
                    </a>
                </div>
                <div class="flex items-center gap-4">
                    <a href="/cart" class="text-stone-600 hover:text-emerald-700">Back to Cart</a>
                </div>
            </div>
        </div>
    </nav>

    <main class="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 py-16">
        <div class="text-center mb-12">
            <div class="w-20 h-20 bg-emerald-100 text-emerald-700 rounded-full flex items-center justify-center mx-auto mb-6">
                <i data-lucide="shield-check" class="w-10 h-10"></i>
            </div>
            <h1 class="text-4xl font-bold text-stone-900 mb-4">Secure Checkout</h1>
            <p class="text-stone-500">You're one step away from growing your sanctuary.</p>
        </div>

        <div class="bg-white rounded-2xl shadow-sm border border-stone-200 p-8">
            <form action="#" onsubmit="event.preventDefault(); alert('This is a simulation. In a real store, you would now enter payment details!'); window.location.href='/';">
                <div class="space-y-6">
                    <div>
                        <label class="block text-sm font-medium text-stone-700 mb-1">Email Address</label>
                        <input type="email" required class="w-full px-4 py-2 border border-stone-200 rounded-lg focus:ring-2 focus:ring-emerald-500 focus:border-transparent outline-none" placeholder="gardener@example.com">
                    </div>
                    
                    <div class="grid grid-cols-2 gap-4">
                        <div>
                            <label class="block text-sm font-medium text-stone-700 mb-1">First Name</label>
                            <input type="text" required class="w-full px-4 py-2 border border-stone-200 rounded-lg focus:ring-2 focus:ring-emerald-500 focus:border-transparent outline-none">
                        </div>
                        <div>
                            <label class="block text-sm font-medium text-stone-700 mb-1">Last Name</label>
                            <input type="text" required class="w-full px-4 py-2 border border-stone-200 rounded-lg focus:ring-2 focus:ring-emerald-500 focus:border-transparent outline-none">
                        </div>
                    </div>

                    <div>
                        <label class="block text-sm font-medium text-stone-700 mb-1">Shipping Address</label>
                        <input type="text" required class="w-full px-4 py-2 border border-stone-200 rounded-lg focus:ring-2 focus:ring-emerald-500 focus:border-transparent outline-none" placeholder="123 Garden Lane">
                    </div>

                    <div class="pt-6 border-t border-stone-100">
                        <h3 class="text-lg font-bold text-stone-900 mb-4">Payment Method (Simulation)</h3>
                        <div class="flex items-center gap-4 p-4 border border-emerald-200 bg-emerald-50 rounded-lg">
                            <i data-lucide="credit-card" class="text-emerald-700"></i>
                            <span class="text-emerald-800 font-medium">Bitcoin / Lightning Network (Coming Soon)</span>
                        </div>
                    </div>

                    <button type="submit" class="w-full bg-emerald-700 hover:bg-emerald-800 text-white font-bold py-4 rounded-xl transition shadow-lg shadow-emerald-900/20 mt-8">
                        Complete Order
                    </button>
                </div>
            </form>
        </div>
    </main>

    <footer class="bg-stone-900 text-stone-400 py-12 mt-24">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
            <p class="text-sm">&copy; 2026 The Artisanal Seed Vault. All rights reserved.</p>
        </div>
    </footer>

    <script>
        lucide.createIcons();
    </script>
</body>
</html>