.ProductCard{position:relative;width:100%}.ProductCard .link{display:flex;flex-direction:column}.ProductCard .media{position:relative;width:100%;overflow:hidden;aspect-ratio:4/5;border-radius:1.25em;background-color:var(--surface);background-size:cover;background-position:50%;transition:transform .45s cubic-bezier(.16,1,.3,1)}.ProductCard .media:before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 60%,rgba(0,0,0,.25));opacity:0;transition:opacity .3s ease}.ProductCard:hover .media{transform:scale(1.02)}.ProductCard:hover .media:before{opacity:1}.ProductCard .tag{position:absolute;display:inline-flex;align-items:center;top:.85em;left:.85em;padding:.35em .7em;font-size:.72em;font-weight:600;border-radius:999px;text-transform:uppercase;letter-spacing:.04em;backdrop-filter:blur(8px)}.ProductCard .tag.new{background:hsla(0,0%,100%,.9);color:#0a0a0a}.ProductCard .tag.best{background:hsla(0,0%,4%,.85);color:#fff}.ProductCard .tag+.tag{top:2.6em}.ProductCard .swatches{position:absolute;display:inline-flex;align-items:center;gap:.25rem;bottom:.85em;left:.85em;padding:.3em .6em;background:hsla(0,0%,100%,.85);backdrop-filter:blur(8px);border-radius:999px;opacity:0;transform:translateY(.3em);transition:opacity .25s ease,transform .25s ease}.ProductCard .swatches .swatch{display:inline-block;width:.85em;height:.85em;border-radius:50%;border:1px solid rgba(0,0,0,.1)}.ProductCard .swatches .more{font-size:.72em;font-weight:600;color:#0a0a0a;padding-left:.2em}.ProductCard:hover .swatches{opacity:1;transform:translateY(0)}.ProductCard .meta{padding:.9em .25em 0}.ProductCard .line{display:flex;align-items:center;justify-content:space-between;gap:.5rem}.ProductCard .line+.line{margin-top:.3em}.ProductCard .name{font-size:.95em;font-weight:500;color:var(--text);letter-spacing:-.005em}.ProductCard .price{font-size:.95em;font-weight:600;color:var(--text)}.ProductCard .cat,.ProductCard .rating{font-size:.8em;color:var(--muted)}.ProductCard .rating{display:inline-flex;align-items:center;gap:.25rem;font-weight:500}.ProductCard .rating .star{display:inline-block;width:.85em;height:.85em;background:#f5b033;mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26'/%3E%3C/svg%3E") center/contain no-repeat;-webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26'/%3E%3C/svg%3E") center/contain no-repeat}.ProductGrid{display:grid;gap:1.5rem;grid-template-columns:1fr}@media(min-width:640px){.ProductGrid{grid-template-columns:repeat(2,1fr)}}@media(min-width:1024px){.ProductGrid{grid-template-columns:repeat(3,1fr)}}@media(min-width:1280px){.ProductGrid{grid-template-columns:repeat(4,1fr)}}.ProductGrid .skeleton{display:flex;flex-direction:column}.ProductGrid .skeleton .media{aspect-ratio:4/5;border-radius:1.25em}.ProductGrid .skeleton .line,.ProductGrid .skeleton .media{background:linear-gradient(110deg,var(--surface) 30%,var(--elevated) 50%,var(--surface) 70%);background-size:200% 100%;animation:shimmer 2s linear infinite}.ProductGrid .skeleton .line{height:.9em;border-radius:.4em;margin-top:.85em}.ProductGrid .skeleton .line.short{width:40%}.ProductGrid+.empty,.empty{text-align:center;color:var(--muted);padding:4em 1em}@keyframes shimmer{0%{background-position:100% 0}to{background-position:-100% 0}}