.products-section{padding:2rem 0}.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}.product-card{background:var(--white);border-radius:var(--radius-xl);overflow:hidden;text-decoration:none;border:1px solid var(--gray-200);transition:all .3s}.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--blue-200)}.product-image{aspect-ratio:4/3;background:var(--gray-50);display:flex;align-items:center;justify-content:center}.product-placeholder{color:var(--gray-300)}.product-info{padding:1.25rem}.product-brand{font-size:0.75rem;color:var(--blue-500);font-weight:600;text-transform:uppercase}.product-name{font-size:1rem;font-weight:700;color:var(--gray-900);margin:0.25rem 0;font-family:monospace}.product-description{font-size:0.8rem;color:var(--gray-500);margin-bottom:1rem}.product-footer{display:flex;justify-content:space-between;align-items:center;padding-top:0.75rem;border-top:1px solid var(--gray-100)}.product-price{font-size:1.1rem;font-weight:700}.product-stock{font-size:0.75rem;font-weight:600;padding:0.25rem 0.5rem;border-radius:12px}.product-stock.in-stock{background:#e8f8ee;color:var(--green)}@media(max-width:1100px){.products-grid{grid-template-columns:repeat(3,1fr)}}@media(max-width:768px){.products-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:480px){.products-grid{grid-template-columns:1fr}}