/* E11-S4 seller-tier badge chip. Self-contained fixed colors (no theme
   CSS-variable dependency). Renders inline next to a product title (inside the
   card <a>) or next to a store name (inside the <h1>/<h2>). */
.feselle-guard-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-inline-start: 0.4rem;
  padding: 0.1rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}

.feselle-guard-tier-badge--silver {
  border-color: #c7cbca;
  background: #f4f5f4;
  color: #4a5350;
}

.feselle-guard-tier-badge--gold {
  border-color: #d9b94a;
  background: #fbf3e0;
  color: #7a5a16;
}