.shop-hero{padding:48px 0 16px;text-align:center}
.shop-hero h1{font-size:clamp(1.75rem,4vw,2.25rem);font-weight:800;margin-bottom:12px}
.shop-hero p{font-size:1rem;color:var(--color-text-muted);max-width:520px;margin:0 auto}

.products-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:28px;padding:40px 0 64px}

.product-card{background:#fff;border:1.5px solid var(--color-border);border-radius:16px;overflow:hidden;display:flex;flex-direction:column;transition:box-shadow .2s,border-color .2s;text-decoration:none;color:inherit}
.product-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.1);border-color:var(--color-primary)}

.product-card-img{width:100%;aspect-ratio:4/3;object-fit:contain;background:#f9f9f9;display:block}
.product-card-img-placeholder{width:100%;aspect-ratio:4/3;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;color:#9ca3af;background:linear-gradient(135deg,#f3f4f6,#e5e7eb)}
.product-card-img-placeholder svg{opacity:.5}
.product-card-img-placeholder span{font-size:.8rem}

.product-card-body{padding:24px;flex:1;display:flex;flex-direction:column;gap:12px}
.product-card-badge{display:inline-block;font-size:.72rem;font-weight:700;padding:3px 10px;border-radius:999px;align-self:flex-start}
.badge-popular{background:#fef3c7;color:#92400e}
.badge-complete{background:#ede9fe;color:#5b21b6}
.product-card-title{font-size:1.15rem;font-weight:800;line-height:1.3;color:var(--color-text)}
.product-card-desc{font-size:.875rem;color:var(--color-text-muted);line-height:1.55;flex:1}
.product-card-price{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap}
.product-card-price .price-main{font-size:1.5rem;font-weight:800;color:var(--color-text)}
.product-card-price .price-mrp{font-size:.875rem;color:var(--color-text-muted);text-decoration:line-through}
.product-card-features{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:6px}
.product-card-features li{font-size:.8rem;color:var(--color-text-muted);display:flex;align-items:flex-start;gap:7px;line-height:1.4}
.product-card-features li::before{content:'✓';color:#16a34a;font-weight:700;flex-shrink:0}
.product-card-cta{margin-top:4px;text-align:center;padding:.8rem 1.5rem;border-radius:10px;font-weight:700;font-size:.95rem;transition:background .2s}
.cta-primary{background:var(--color-primary);color:#fff}
.product-card:hover .cta-primary{background:#e85d25}
.cta-secondary{background:#f3f4f6;color:var(--color-text)}
.product-card:hover .cta-secondary{background:#e5e7eb}

.card-recommended{position:relative}
.card-recommended::before{content:'Most Popular';position:absolute;top:16px;right:-28px;background:var(--color-primary);color:#fff;font-size:.68rem;font-weight:800;padding:4px 36px;transform:rotate(45deg);letter-spacing:.05em;z-index:1}

.compare-note{text-align:center;font-size:.8rem;color:var(--color-text-muted);padding-bottom:24px}
.compare-note a{color:var(--color-primary);text-decoration:underline}
