.product-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: .75rem;
  padding: .5rem .75rem;
  transition: transform .1s ease, box-shadow .1s ease, border-color .1s ease;
}
.product-badge:hover, .product-badge:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  border-color: #d1d5db;
}
.product-badge__img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: .5rem;
}
.product-badge__title {
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}
