.products-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin-top:3rem}
.product-card{background:var(--g);border:1px solid var(--lg);border-radius:16px;overflow:hidden;transition:.4s}
.product-card:hover{border-color:var(--c);transform:translateY(-5px)}
.product-image{width:100%;height:320px;background:linear-gradient(135deg,#1a1a1a,#000);display:flex;align-items:center;justify-content:center;overflow:hidden}
.product-image img{width:100%;height:100%;object-fit:cover}
.product-info{padding:1.5rem}
.product-name{font-family:'Space Grotesk',sans-serif;font-size:1.25rem;font-weight:700;text-transform:uppercase;margin-bottom:.5rem}
.product-price{font-size:1.5rem;font-weight:800;color:var(--c);margin-bottom:1rem}
.product-desc{color:#666;font-size:.9rem;margin-bottom:1rem}
.shop-section{padding:4rem 0}
.shop-filters{display:flex;gap:1rem;margin-bottom:3rem;flex-wrap:wrap}
.filter-select{padding:.75rem 1.5rem;background:var(--g);border:1px solid var(--lg);color:var(--w);border-radius:8px;font-family:'Montserrat',sans-serif;cursor:pointer}
.filter-select:focus{border-color:var(--c);outline:none}
.product-detail{padding:8rem 2rem 4rem;display:grid;grid-template-columns:1fr 1fr;gap:4rem;max-width:1200px;margin:0 auto}
.main-image{width:100%;height:500px;background:linear-gradient(135deg,#1a1a1a,#000);border-radius:16px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.main-image img{width:100%;height:100%;object-fit:cover}
.product-info h1{font-family:'Space Grotesk',sans-serif;font-size:2.5rem;margin-bottom:1rem}
.product-description{color:#888;margin-bottom:2rem;line-height:1.8}
.product-options{display:flex;gap:2rem;margin-bottom:2rem}
.size-selector,.quantity-selector{display:flex;flex-direction:column;gap:.5rem}
.size-selector select,.quantity-selector input{padding:.75rem;background:var(--g);border:1px solid var(--lg);color:var(--w);border-radius:8px}
.product-meta{margin-top:2rem;padding-top:2rem;border-top:1px solid var(--lg)}
.product-meta p{color:#666;margin-bottom:.5rem}