/* ── Product tag chips ──────────────────────────────────────────────── */
.pcard-tag-chips,
.product-tag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.pcard-tag-chip,
.product-tag-chip,
.pd-tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px 3px 8px;
  border-radius: 999px;
  background: #fff4f8;
  color: #c93d68;
  font-size: 11.5px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #f5c0d0;
  line-height: 1.5;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.pcard-tag-chip::before,
.product-tag-chip::before,
.pd-tag-chip::before {
  content: '#';
  font-size: 10px;
  font-weight: 700;
  margin-right: 2px;
  opacity: 0.5;
}
.pcard-tag-chip:hover,
.product-tag-chip:hover,
.pd-tag-chip:hover {
  background: #e75480;
  color: #fff;
  border-color: #e75480;
}
.pcard-tag-chip:hover::before,
.product-tag-chip:hover::before,
.pd-tag-chip:hover::before {
  opacity: 0.8;
}

/* ── Product card title — slightly more prominent ───────────────────── */
.pcard .pcard-name {
  font-size: 16px;
  font-weight: 700;
}
.product-card .product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-dark, #1a1a1a);
  margin-bottom: 4px;
}

/* Badge positioning for homepage product cards */
.product-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

/* ── Product card teaser (2-line clamp) ─────────────────────────────── */
.pcard-teaser,
.product-teaser {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 6px;
  margin-bottom: 0;
}
