<?php
require_once __DIR__ . '/../includes/config.php';
$pageTitle = 'Healthcare & Care Homes';
include __DIR__ . '/../includes/header.php';
?>
<div class="aud-hero" style="background:linear-gradient(135deg,#881337,#be123c)">
  <div class="aud-hero-icon">🏥</div>
  <h1 style="color:#fff">Uniforms &amp; PPE for <span style="color:#fecdd3">healthcare</span></h1>
  <p style="color:#fda4af99">NHS-compliant scrubs, tunics, healthcare footwear and PPE for hospitals, clinics, care homes and GP surgeries. Credit accounts for NHS and private providers.</p>
  <div class="aud-hero-actions">
    <a href="/products.php?cat=healthcare" class="hero-btn-gold">Browse healthcare range →</a>
    <a href="/credit.php?type=healthcare" class="hero-btn-outline">Apply for credit account</a>
  </div>
  <div class="aud-hero-pills">
    <span class="aud-pill">NHS-colour scrubs</span>
    <span class="aud-pill">Healthcare footwear</span>
    <span class="aud-pill">Disposable PPE</span>
    <span class="aud-pill">Net-30 credit</span>
    <span class="aud-pill">Bulk discounts</span>
  </div>
</div>

<div class="trust-bar"><div class="trust-inner">
  <div class="trust-item"><span class="trust-icon">✅</span> NHS-colour compliant</div>
  <div class="trust-item"><span class="trust-icon">💳</span> Credit accounts available</div>
  <div class="trust-item"><span class="trust-icon">📦</span> 24hr dispatch</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">Healthcare range</div><h2 class="stitle">Compliant uniforms for every role</h2><p class="ssub">NHS-colour scrubs, tunics, footwear and PPE — available in all standard healthcare colours.</p></div>
  <div class="products-grid">
    <?php $products=[['emoji'=>'👗','brand'=>'Cherokee','name'=>'NHS Scrub Top — Royal Blue','price'=>'14.99','badge'=>'b-pop','bl'=>'Popular'],['emoji'=>'👖','brand'=>'Cherokee','name'=>'Scrub Trousers — Navy','price'=>'12.99','badge'=>'b-pop','bl'=>'Popular'],['emoji'=>'🩺','brand'=>'Cherokee','name'=>'Healthcare Tunic — Women\'s','price'=>'16.99','badge'=>'b-new','bl'=>'New'],['emoji'=>'👟','brand'=>'Crocs','name'=>'Healthcare Clogs','price'=>'34.99','badge'=>'b-hot','bl'=>'Popular'],['emoji'=>'🧤','brand'=>'Portwest','name'=>'Nitrile Exam Gloves x100','price'=>'8.99','badge'=>'b-pop','bl'=>'Popular'],['emoji'=>'😷','brand'=>'Portwest','name'=>'Type II Face Masks x50','price'=>'5.99','badge'=>'b-new','bl'=>'New'],['emoji'=>'🦺','brand'=>'Premier','name'=>'Healthcare Tabard','price'=>'7.50','badge'=>'b-pop','bl'=>'Popular'],['emoji'=>'🧴','brand'=>'Deb','name'=>'Hand Sanitiser 500ml','price'=>'4.99','badge'=>'b-pop','bl'=>'Popular']];
    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 section-light"><div class="section-inner">
  <div class="section-hdr"><div class="stag">NHS colours available</div><h2 class="stitle">All standard healthcare colours</h2></div>
  <div style="display:flex;flex-wrap:wrap;gap:12px;justify-content:center">
    <?php foreach([['Royal Blue','#1d4ed8'],['Navy','#1e3a5f'],['Ceil Blue','#7db3d4'],['Hunter Green','#166534'],['Wine/Berry','#7e1d3f'],['White','#f8fafc'],['Black','#111827'],['Grey','#6b7280'],['Teal','#0f766e'],['Lilac','#a78bfa']] as $c): ?>
    <div style="display:flex;flex-direction:column;align-items:center;gap:6px">
      <div style="width:44px;height:44px;border-radius:50%;background:<?php echo $c[1];?>;border:2px solid #e5e7eb"></div>
      <span style="font-size:11px;color:var(--muted);font-weight:500"><?php echo $c[0];?></span>
    </div>
    <?php endforeach;?>
  </div>
</div></div>

<div class="section"><div class="section-inner"><div class="cta-block">
  <h2>Set up a <span>healthcare account</span></h2>
  <p>Credit accounts available for NHS trusts, private clinics, GP surgeries and care home groups. Net-30 terms, bulk discounts, dedicated support.</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'; ?>
