.bar {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 32px 20px;
}

.pill {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 64px;
  padding: 10px 32px;
  border: 1px solid #c6c7cc;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  position: relative;

  &::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5);
    pointer-events: none;
  }

  &:active {
    opacity: 0.75;
  }
}

.pillActive {
  border: 2px solid #6f81fb;

  .pillLabel {
    color: #3768fa;
  }
}

.pillIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.pillIconImg {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.pillLabel {
  font-family: 'PingFang SC', sans-serif;
  font-size: 28px;
  line-height: 44px;
  color: #1c1d1f;
  white-space: nowrap;
}
