/* Dodo dual score pill
   Format: five fillable eggs + score / DF + percentage */

.dodo-dual-score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;

  padding: 5px 8px;
  border-radius: 999px;

  color: #ffffff;
  background: linear-gradient(180deg, rgba(8,8,14,.96), rgba(0,0,0,.92));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 0 18px rgba(255,22,93,.14);

  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
}

.dodo-egg-row {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.dodo-egg-icon {
  --egg-fill: 0%;

  position: relative;
  display: inline-block;
  width: 11px;
  height: 14px;
  flex: 0 0 auto;

  overflow: hidden;
  border-radius: 52% 52% 48% 48% / 62% 62% 42% 42%;
  transform: rotate(-7deg);

  background:
    linear-gradient(
      90deg,
      #ffd45a 0%,
      #ffb300 var(--egg-fill),
      rgba(255,255,255,.08) var(--egg-fill),
      rgba(255,255,255,.03) 100%
    );

  border: 1px solid rgba(255,211,89,.7);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,.55),
    inset 0 -2px 3px rgba(90,48,0,.55),
    0 0 5px rgba(255,190,35,.22);
}

.dodo-egg-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 4px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  filter: blur(.2px);
}

.dodo-egg-icon[data-empty="true"] {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.dodo-egg-score-number {
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}

.dodo-score-slash {
  color: rgba(255,255,255,.42);
  font-weight: 900;
  padding: 0 1px;
}

.dodo-fit-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 17px;
  border-radius: 7px;

  color: #ffffff;
  background: linear-gradient(135deg, #ff165d 0%, #8a35ff 100%);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.26),
    0 0 12px rgba(255,22,93,.28);

  font-size: 9px;
  font-weight: 1000;
  letter-spacing: -.04em;
  line-height: 1;
}

.dodo-fit-score-number {
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}

.dodo-simple-rating-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 5px 8px;
  border-radius: 999px;

  color: #ffffff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);

  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
