/* ═══════════ PRODUCTS PAGE ═══════════ */
.products-header{text-align:center;padding:3rem 1rem 1.5rem;max-width:720px;margin:0 auto}
.products-header h1{font-size:clamp(1.5rem,3vw,2rem);color:#1a1a2e;font-weight:800;margin-bottom:.5rem}
.products-header p{color:#64748b;font-size:.9375rem;line-height:1.6}
.products-grid{max-width:1280px;margin:0 auto;padding:1rem;display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.products-grid a{background:#fff;border-radius:12px;overflow:hidden;text-decoration:none;color:#1a1a2e;box-shadow:0 2px 8px rgba(0,0,0,.06);transition:box-shadow .2s,transform .2s;border:1px solid #e2e8f0}
.products-grid a:hover{box-shadow:0 8px 30px rgba(0,0,0,.1);transform:translateY(-2px)}
.products-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.products-grid .info{padding:.875rem}
.products-grid h3{font-size:.9375rem;color:#1a1a2e;margin-bottom:.25rem;font-weight:700}
.products-grid p{font-size:.8125rem;color:#64748b;line-height:1.4}
.products-cta-bottom{text-align:center;padding:3rem 1rem}
.products-cta-bottom p{color:#64748b;margin-bottom:.75rem}
@media (min-width:768px) {
  .products-grid{grid-template-columns:repeat(3,1fr);gap:1.5rem;padding:1rem 2rem}
}
