const Footer = () => {
  return (
    <footer className="relative bg-wedar-deep text-wedar-bone pt-20 pb-10 overflow-hidden">
      <div className="max-w-[1440px] mx-auto px-6 lg:px-10">
        <div className="grid lg:grid-cols-12 gap-10 pb-12 border-b border-white/10">
          <div className="lg:col-span-7">
            <div className="font-black text-4xl tracking-tight text-wedar-bone">WEDAR</div>
            <p className="mt-6 text-[15px] leading-[1.85] text-wedar-bone/70 max-w-xl">Since 1998.<br/>台灣保健領導品牌
            </p>
            <div className="mt-8 font-black text-xs tracking-[0.3em] text-wedar-lime">WE DO CARE.</div>
          </div>

          <div className="lg:col-span-5">
            <div className="text-[11px] font-bold tracking-[0.25em] uppercase text-wedar-bone/50 mb-4">聯繫</div>
            <ul className="space-y-3 text-[14px] text-wedar-bone/80">
              <li>
                <span className="opacity-60">聯盟信箱</span><br />
                <a href="mailto:hello@wedar.shop" className="hover:text-wedar-lime transition-colors">hello@wedar.shop</a>
              </li>
              <li>
                <span className="opacity-60">LINE 官方</span><br />
                <a href="https://line.me/R/ti/p/@wedartw" target="_blank" rel="noopener noreferrer" className="hover:text-wedar-lime transition-colors">@wedartw</a>
              </li>
            </ul>
          </div>
        </div>

        <div className="pt-8 text-center text-[11px] tracking-wide text-wedar-bone/40">
          © WEDAR · ALL RIGHTS RESERVED.
        </div>
      </div>
    </footer>);

};

Object.assign(window, { Footer });