.product-card{background:#fff;display:flex;flex-direction:column;gap:12px;padding:18px;transition:transform .25s ease,box-shadow .25s ease}.product-card__media{position:relative;background:#f5f5f5;aspect-ratio:4/3;overflow:hidden}.product-card__image,.product-card__media{display:flex;align-items:center;justify-content:center}.product-card__image{width:100%;height:100%}.product-card__image img{max-width:80%;max-height:80%;-o-object-fit:contain;object-fit:contain;transition:transform .35s ease}.product-card__badges{position:absolute;top:14px;left:14px;display:flex;flex-direction:column;gap:8px}.product-badge{display:inline-flex;align-items:center;justify-content:center;padding:6px 12px;font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;border-radius:999px;color:#111;background:var(--accent-yellow)}.product-badge--sale{background:#e53935;color:#fff}.product-card__actions{position:absolute;top:16px;right:14px;display:flex;flex-direction:column;gap:10px;opacity:0;transform:translateX(8px);pointer-events:none;transition:opacity .25s ease,transform .25s ease}.product-card__action{width:36px;height:36px;border-radius:50%;border:0;background:var(--accent-yellow);color:#111;display:inline-flex;align-items:center;justify-content:center;box-shadow:0 6px 12px rgba(0,0,0,.12);transition:transform .2s ease}.product-card__action:hover{transform:translateY(-2px)}.product-card__body{display:flex;flex-direction:column;gap:8px}.product-card__category{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:#666}.product-card__title{font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:#111}.product-card__price{display:flex;align-items:center;gap:8px}.product-card__price-current{font-weight:800;font-size:16px;color:#111}.product-card__price-old{font-size:13px;color:#9a9a9a;text-decoration:line-through}.product-card__add{margin-top:6px;align-self:flex-start;padding:10px 18px;border-radius:999px;background:var(--accent-yellow);color:#111;font-weight:800;font-size:11px;letter-spacing:.1em;text-transform:uppercase;border:0;opacity:0;transform:translateY(6px);transition:opacity .25s ease,transform .25s ease;pointer-events:none}.product-card:hover{transform:translateY(-4px);box-shadow:0 14px 28px rgba(0,0,0,.08)}.product-card:hover .product-card__actions{opacity:1;transform:translateX(0);pointer-events:auto}.product-card:hover .product-card__add{opacity:1;transform:translateY(0);pointer-events:auto}.product-card:hover .product-card__image img{transform:scale(1.03)}@media(hover:none){.product-card__actions,.product-card__add{opacity:1;transform:none;pointer-events:auto}}@media(max-width:640px){.product-card__media{aspect-ratio:1/1}.product-card__actions{right:10px;top:10px}}