/* ==== PRODUCT CARD ==== */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
  text-align: center;
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.product-card .card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}
.product-card .thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .thumb img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Meta */
.product-card .meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.product-card .title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.product-card .excerpt {
  display: none; /* ẩn excerpt*/
}

.product-card .cta {
  font-size: .75rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 4px;
}
.product-card .cta:hover{
  color: var(--color-muted);
  transition: color .2s ease;
}