{%- comment -%}
  LOCALITY PAGE TEMPLATE — duplicate per town (Naupada, Wagle Estate, Kopri, ...).
  Easiest path on Shopify: create a Page + a custom page template
  "page.locality.liquid", then set the locality fields via theme app blocks
  or hard-code per page. Below is a self-contained section you can paste into
  a custom Liquid section and reuse.
{%- endcomment -%}
{%- assign town = page.metafields.local.town | default: "Naupada" -%}
{%- assign drive = page.metafields.local.drive_minutes | default: "10" -%}

<section class="locality-hero">
  <nav class="breadcrumbs" aria-label="Breadcrumb">
    <a href="/">Home</a> › <a href="/pages/thane-store">Thane Store</a> › <span>{{ town }}</span>
  </nav>
  <h1>Motorcycle Gear Shop near {{ town }} — Bikester Global Thane</h1>
  <p class="lede">
    Looking for a helmet or riding-gear shop near {{ town }}? Bikester Global's
    Thane store is just a {{ drive }}-minute ride away, stocking 40+ brands of
    helmets, jackets, gloves and boots with free fitment, EMI and 7-day exchange.
  </p>
  <div class="cta-row">
    <a class="btn btn-call" href="tel:{{ REPLACE_PHONE }}">📞 Call the store</a>
    <a class="btn btn-map" href="{{ REPLACE_GOOGLE_MAPS_URL }}" target="_blank" rel="noopener">📍 Directions from {{ town }}</a>
    <a class="btn btn-wa" href="https://wa.me/{{ REPLACE_WA_NUMBER }}?text=Hi, I'm from {{ town | url_encode }} and want to visit the Thane store">💬 WhatsApp us</a>
  </div>

  <h2>How to reach us from {{ town }}</h2>
  <p>{{ page.metafields.local.directions }}</p>

  <h2>What {{ town }} riders buy most</h2>
  <ul>
    <li>Full-face and modular helmets (AGV, LS2, SMK, Studds)</li>
    <li>All-weather riding jackets and rain gear</li>
    <li>Gloves, boots and back protectors</li>
  </ul>
</section>

{%- comment -%} Per-locality LocalBusiness + FAQ schema {%- endcomment -%}
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "AutoPartsStore",
  "name": "Bikester Global — Motorcycle Gear near {{ town }}, Thane",
  "url": "{{ canonical_url }}",
  "telephone": "{{ REPLACE_PHONE }}",
  "areaServed": "{{ town }}",
  "parentOrganization": { "@id": "https://bikesterglobal.com/#organization" },
  "aggregateRating": { "@type": "AggregateRating", "ratingValue": "4.7", "reviewCount": "979" }
}
</script>