.shop-product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.25rem}.shop-product-card{display:flex;flex-direction:column;background:var(--card);color:var(--card-foreground);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:box-shadow .16s ease,transform .16s ease}.shop-product-card:hover{box-shadow:var(--shadow-soft);transform:translateY(-2px)}.shop-product-card__media{aspect-ratio:4/3;background:var(--muted);overflow:hidden}.shop-product-card__media img{width:100%;height:100%;object-fit:cover;display:block}.shop-product-card__body{display:flex;flex-direction:column;gap:.375rem;padding:1rem;flex:1}.shop-product-card__name{font-family:var(--font-display-stack);font-size:1.0625rem;line-height:1.3}.shop-product-card__price{margin-top:auto;display:flex;align-items:baseline;gap:.5rem;font-weight:600;color:var(--brand)}.shop-filter-bar{display:flex;flex-wrap:wrap;align-items:center;gap:.75rem;padding:.75rem 1rem;margin-bottom:1.5rem;background:var(--secondary);border:1px solid var(--border);border-radius:var(--radius-lg)}.shop-filter-bar__group{display:flex;align-items:center;gap:.5rem}.shop-filter-bar__label{font-size:.8125rem;color:var(--muted-foreground)}.shop-cart-line{display:grid;grid-template-columns:4rem 1fr auto;gap:1rem;align-items:center;padding:1rem 0;border-bottom:1px solid var(--border)}.shop-cart-line__thumb{width:4rem;height:4rem;border-radius:var(--radius);background:var(--muted);display:flex;align-items:center;justify-content:center;font-family:var(--font-display-stack);font-size:1.5rem;font-weight:600;color:var(--muted-foreground);text-transform:uppercase}.shop-cart-line__total{font-weight:600;color:var(--brand);white-space:nowrap}@media (max-width:480px){.shop-cart-line{grid-template-columns:3rem 1fr}.shop-cart-line__total{grid-column:2;justify-self:end}}.shop-checkout-steps{display:flex;gap:.5rem;margin-bottom:2rem;counter-reset:shop-step;list-style:none;padding:0}.shop-checkout-steps li{counter-increment:shop-step;display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:var(--muted-foreground)}.shop-checkout-steps li:before{content:counter(shop-step);display:grid;place-items:center;width:1.75rem;height:1.75rem;border-radius:50%;background:var(--secondary);border:1px solid var(--border);font-weight:600;font-size:.8125rem}.shop-checkout-steps li[aria-current=step]{color:var(--foreground);font-weight:600}.shop-checkout-steps li[aria-current=step]:before{background:var(--primary);border-color:var(--primary);color:var(--primary-foreground)}.shop-checkout-steps li:not(:last-child):after{content:"";width:1.5rem;height:1px;background:var(--border)}