<!-- Category Banner Header -->
<div class="p-4 p-md-4 mb-4 bg-white rounded-3 border shadow-sm d-flex align-items-center gap-3">
  <div class="p-3 bg-primary-subtle text-primary rounded-circle">
    <i class="bi <?= !empty($category['icon']) ? e($category['icon']) : 'bi-grid-fill' ?> fs-2"></i>
  </div>
  <div>
    <nav aria-label="breadcrumb">
      <ol class="breadcrumb mb-1 small">
        <li class="breadcrumb-item"><a href="<?= url('/') ?>" class="text-decoration-none">หน้าแรก</a></li>
        <li class="breadcrumb-item"><a href="<?= url('/search') ?>" class="text-decoration-none">หมวดหมู่ทั้งหมด</a></li>
        <li class="breadcrumb-item active" aria-current="page"><?= e($category['name']) ?></li>
      </ol>
    </nav>
    <h4 class="fw-bold mb-0 text-dark"><?= e($category['name']) ?></h4>
    <?php if (!empty($category['description'])): ?>
      <p class="text-muted small mb-0 mt-1"><?= e($category['description']) ?></p>
    <?php endif; ?>
  </div>
</div>

<!-- Render Products with Filters -->
<?php require __DIR__ . '/search.php'; ?>
