/* Harley family badges on product cards */
.product-card__families {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin: 4px 0 2px;
}
.family-badge {
  display: inline-block;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 3px;
  background: #1a1a1a;
  color: #d4a843;
  line-height: 1.5;
}
