<%- include('partials/head', { title: (typeof title !== 'undefined' ? title : 'Error') + ' — TokoYugha' }) %>
<%- include('partials/navbar', { active: '' }) %>

<div class="reveal flex flex-col items-center justify-center min-h-[60vh] text-center px-4">
    <i class="fas fa-circle-exclamation text-4xl sm:text-5xl text-rose-400 mb-4"></i>
    <h1 class="text-xl sm:text-2xl font-extrabold text-white mb-2"><%= typeof title !== 'undefined' ? title : 'Terjadi Kesalahan' %></h1>
    <p class="text-slate-400 mb-6 max-w-sm"><%= typeof message !== 'undefined' ? message : 'Gagal memuat halaman. Coba lagi nanti.' %></p>
    <a href="/" class="neo neo-hover neo-press px-6 py-3 bg-brand-600 hover:bg-brand-500 text-white font-semibold transition">Kembali ke Beranda</a>
</div>

<%- include('partials/footer') %>
<%- include('partials/scripts') %>