/**
 * FB Product Badge Widget Styles
 * Matches the "Featured Product" pill badge design from FB Products widget.
 */

.fb-product-badge-wrap {
  display: flex;
  width: 100%;
}

.fb-product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 23px;
  height: 23px;
  padding: 0 16px;
  border: 1px solid rgba(237, 24, 75, 0.2);
  border-radius: 20px;
  background: rgba(237, 24, 75, 0.4);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  white-space: nowrap;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.fb-product-badge:hover,
.fb-product-badge:focus {
  color: #fff;
  text-decoration: none;
}

