<?php
$page_title = 'Payment cancelled';
require __DIR__ . '/_guard.php';
?>
<style>
.m-page{padding:3rem 0;}
</style>
<div class="m-page">
<div class="container" style="max-width:560px;text-align:center;">
    <div style="font-size:3rem;margin-bottom:1rem;">↩️</div>
    <h1>Payment cancelled</h1>
    <p class="muted">
        You cancelled the PayFast payment. Your account has not been charged
        and no invoice has been created.
    </p>
    <div style="display:flex;gap:.75rem;justify-content:center;margin-top:1.75rem;">
        <a href="checkout-membership.php" class="btn">Try again →</a>
        <a href="welcome.php" class="btn btn-outline">Back to dashboard</a>
    </div>
</div>
</div>
<?php require __DIR__ . '/_footer.php'; ?>