.text-badge__wrapper {
  background: var(--brand-primary);
  width: fit-content;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--Border-Radius-Rounded-10, 10px);
  padding: 6px 12px;
}
.text-badge__wrapper small {
  display: block;
  color: white;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--font-body-family);
}

.card__inner .text-badge__wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.text-badge__wrapper.sold-out {
  background: #dcddde;
}

.text-badge__wrapper.sold-out small {
  color: #1f2223;
}
