.product-card {
  height: 100%;
  margin: 0 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-card__image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-light);
  text-decoration: none;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 18px;
  transition: 0.3s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__placeholder {
  color: var(--color-primary);
  font-weight: 800;
}

.product-card__content {
  padding: 20px;
  text-align: center;
}

.product-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.product-card__title a {
  color: var(--color-dark);
  text-decoration: none;
}

.product-card__title a:hover {
  color: var(--color-primary);
}

.product-card__price {
  margin-top: 12px;
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 800;
}

.product-card__btn {
  margin-top: 16px;
}

@media (min-width: 992px) {
  .product-card__image {
    height: 240px;
  }
}
