"use client";

import React from "react";

const BRANDS = [
  { name: "Typek", tag: "South Africa's #1 Paper" },
  { name: "BIC", tag: "Stationery World Leader" },
  { name: "Casio", tag: "CAPS Approved Calculators" },
  { name: "Pilot", tag: "Precision Writing" },
  { name: "Faber-Castell", tag: "Fine Pencils & Arts" },
  { name: "Pritt", tag: "Non-Toxic Adhesives" },
  { name: "Staedtler", tag: "German Engineering" },
  { name: "Croxley", tag: "Quality SA Filing" },
  { name: "HP", tag: "Original Ink & Toner" },
  { name: "Bostik", tag: "High Bond Adhesives" },
  { name: "Stabilo", tag: "Boss Highlighters" },
];

export const BrandLogos: React.FC = () => {
  return (
    <section className="py-10 bg-slate-100 border-b border-slate-200 overflow-hidden">
      <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
        <div className="text-center mb-6">
          <p className="text-xs font-bold uppercase tracking-widest text-slate-500">
            Stockists of South Africa&apos;s Leading Stationery Brands
          </p>
        </div>

        <div className="flex flex-wrap items-center justify-center gap-3 sm:gap-6">
          {BRANDS.map((b) => (
            <div
              key={b.name}
              className="bg-white px-4 py-2.5 rounded-2xl border border-slate-200/80 shadow-2xs hover:border-blue-900/40 transition-all flex flex-col items-center justify-center min-w-[110px]"
            >
              <span className="font-black text-slate-900 text-sm tracking-tight">{b.name}</span>
              <span className="text-[9px] text-slate-500 font-semibold">{b.tag}</span>
            </div>
          ))}
        </div>
      </div>
    </section>
  );
};
