.product-card{display:flex;flex-direction:column;align-items:center;position:relative;z-index:0;background:linear-gradient(158deg,#0a00ff14 0,color-mix(in srgb,var(--color-surface) 78%,var(--color-accent-2-light) 22%) 100%);border:1px solid color-mix(in srgb,var(--color-accent) 22%,var(--color-border));border-radius:var(--radius-xl);box-shadow:var(--shadow-raised);padding:var(--space-5);text-decoration:none;transition:box-shadow .16s cubic-bezier(.22,1,.36,1),transform .16s cubic-bezier(.22,1,.36,1),border-color .16s cubic-bezier(.22,1,.36,1);width:100%;max-width:100%;min-width:0;justify-content:space-between}.product-card:hover{border-color:color-mix(in srgb,var(--color-accent) 38%,var(--color-border));box-shadow:var(--shadow-panel-hover);transform:translateY(-3px);z-index:1}.product-card:focus-visible{outline:3px solid color-mix(in srgb,var(--color-accent) 70%,var(--color-border));outline-offset:3px;z-index:1}.product-card:focus-within{z-index:1}@media (prefers-reduced-motion:reduce){.product-card{transition:box-shadow var(--transition-fast),border-color var(--transition-fast)}.product-card:hover{transform:none}}.product-card__image-wrapper{position:relative;width:100%;border-radius:var(--radius-lg);overflow:hidden;margin-bottom:var(--space-3)}.product-card__image{width:100%;height:100%;object-fit:contain}.product-card__name{font-size:var(--text-base);font-weight:600;color:var(--color-text);text-align:center}.product-card__footer{width:100%;display:flex;flex-direction:column;align-items:center}.product-card__footer>*{width:100%}.product-card__buy{width:100%;padding:var(--space-3) var(--space-4);background:var(--color-accent-2);color:var(--color-bg);border:none;border-radius:var(--radius-md);font-size:var(--text-base);font-weight:600;cursor:pointer;transition:background var(--transition-fast)}.product-card__buy:hover{background:var(--color-accent-2-hover)}.product-card__buy:focus-visible{outline:2px solid var(--color-accent-2);outline-offset:2px}.product-card__buy:disabled{background:var(--color-disabled);cursor:not-allowed}.product-card--out-of-stock{background:var(--color-light);border:1px solid var(--color-border)}.product-card--out-of-stock:hover{box-shadow:none;transform:none}.product-card--out-of-stock .product-card__image{filter:grayscale(100%);opacity:.75}.product-card--out-of-stock .product-card__name{color:var(--color-muted)}.product-card__stock-badge{position:absolute;top:var(--space-3);inset-inline-start:var(--space-3);z-index:1;background:var(--color-overlay);color:var(--color-bg);font-size:var(--text-xs);font-weight:700;padding:var(--space-2) var(--space-3);border-radius:var(--radius-pill);pointer-events:none}.product-card__price{font-size:var(--text-lg);font-weight:700;color:var(--color-primary);text-align:center;margin:var(--space-4) 0}.product-card__price .price{font-size:inherit;font-weight:inherit;color:inherit}.product-card--category{background:linear-gradient(165deg,var(--color-bg) 0,color-mix(in srgb,var(--color-surface) 75%,var(--color-accent-2-light) 25%) 100%);border:1px solid color-mix(in srgb,var(--color-accent) 18%,var(--color-border))}.product-card--category .product-card__name{margin-bottom:var(--space-2)}