<?php
require_once __DIR__ . '/../includes/config.php';
$pageTitle = 'Schools & Education';
include __DIR__ . '/../includes/header.php';
?>
<div class="aud-hero" style="background:linear-gradient(135deg,#0c4a6e,#0369a1)">
  <div class="aud-hero-icon">🎓</div>
  <h1 style="color:#fff">Supplies for <span style="color:#bae6fd">schools &amp; colleges</span></h1>
  <p style="color:#7dd3fc99">Staff uniforms, PE kit, branded clothing, stationery and art supplies. Annual supply agreements and credit accounts for academies and trusts.</p>
  <div class="aud-hero-actions">
    <a href="/products.php?cat=tshirts" class="hero-btn-gold">Browse education range →</a>
    <a href="/credit.php?type=education" class="hero-btn-outline">Apply for credit account</a>
  </div>
  <div class="aud-hero-pills">
    <span class="aud-pill">Staff uniforms</span>
    <span class="aud-pill">PE &amp; sports kit</span>
    <span class="aud-pill">Stationery</span>
    <span class="aud-pill">Credit accounts</span>
    <span class="aud-pill">Annual agreements</span>
  </div>
</div>

<div class="trust-bar"><div class="trust-inner">
  <div class="trust-item"><span class="trust-icon">💳</span> Credit accounts for schools</div>
  <div class="trust-item"><span class="trust-icon">📅</span> Annual supply agreements</div>
  <div class="trust-item"><span class="trust-icon">🎨</span> Branded embroidery</div>
  <div class="trust-item"><span class="trust-icon">🚚</span> Free delivery over £75</div>
</div></div>

<div class="section"><div class="section-inner">
  <div class="section-hdr"><div class="stag">Education range</div><h2 class="stitle">Everything schools need</h2></div>
  <div class="products-grid">
    <?php $products=[['emoji'=>'👔','brand'=>'Kustom Kit','name'=>'Staff Polo Shirt','price'=>'9.99','badge'=>'b-pop','bl'=>'Popular'],['emoji'=>'🎽','brand'=>'Gildan','name'=>'PE T-Shirt','price'=>'4.99','badge'=>'b-pop','bl'=>'Popular'],['emoji'=>'🧥','brand'=>'Regatta','name'=>'Staff Fleece Jacket','price'=>'18.99','badge'=>'b-new','bl'=>'New'],['emoji'=>'📓','brand'=>'Avery','name'=>'A4 Notebooks x10','price'=>'8.99','badge'=>'b-pop','bl'=>'Popular'],['emoji'=>'🖊️','brand'=>'Staedtler','name'=>'Ballpoint Pens x20','price'=>'5.99','badge'=>'b-pop','bl'=>'Popular'],['emoji'=>'🎒','brand'=>'Quadra','name'=>'School Backpack','price'=>'12.50','badge'=>'b-new','bl'=>'New'],['emoji'=>'🧤','brand'=>'Gildan','name'=>'PE Shorts','price'=>'6.99','badge'=>'b-pop','bl'=>'Popular'],['emoji'=>'🎨','brand'=>'Avery','name'=>'Art Supply Pack','price'=>'14.99','badge'=>'b-hot','bl'=>'Trending']];
    foreach($products as $p): ?><div class="product-card"><div class="product-img"><?php echo $p['emoji'];?></div><div class="product-body"><div class="product-brand"><?php echo $p['brand'];?></div><div class="product-name"><?php echo $p['name'];?></div><div class="price-row"><div><div class="product-price">£<?php echo $p['price'];?></div><div class="price-ex">ex. VAT</div></div><span class="prod-badge <?php echo $p['badge'];?>"><?php echo $p['bl'];?></span></div><button class="btn-cart" onclick="addToCart('<?php echo $p['name'];?>')">Add to basket</button></div></div><?php endforeach;?>
  </div>
</div></div>

<div class="section"><div class="section-inner"><div class="cta-block">
  <h2>Set up a <span>school account</span></h2>
  <p>Credit accounts for academies, multi-academy trusts and colleges. Annual supply agreements, branded embroidery, and a dedicated education account manager.</p>
  <div class="cta-buttons"><a href="/credit.php" class="cta-btn-gold">Apply for credit account →</a><a href="/contact.php" class="cta-btn-out">Contact us</a></div>
</div></div></div>

<?php include __DIR__ . '/../includes/footer.php'; ?>
