.product-card { background: var(--color-surface); border-radius: 20px; box-shadow: var(--shadow-card); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12); }
.product-card__image { position: relative; overflow: hidden; }
.product-card__image img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__badge { position: absolute; top: 16px; left: 16px; }
.product-card__favorite { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; border: none; background: #fff; display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-card); }
.product-card__favorite.is-active { color: var(--color-accent-strong); background: #fff7eb; }
.product-card__favorite.is-active svg { fill: currentColor; }
.product-card__body { padding: 20px; display: grid; gap: 12px; flex: 1; }
.product-card__title { font-size: 18px; font-weight: 700; margin: 0; }
.product-card__text { color: var(--color-text-muted); font-size: 14px; line-height: 1.5; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-card__price { color: var(--color-accent-strong); font-weight: 700; font-size: 18px; }

@media (max-width: 640px) {
  .product-card__image img { height: 190px; }
}
