.pills {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: calc(100% + 32px);
  min-width: 0;
  margin: -8px -16px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 10px 20px 14px;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 20px;
}

.pills::-webkit-scrollbar {
  display: none;
}

.pill {
  white-space: nowrap;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: none;
  border-radius: 9px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  flex-shrink: 0;
  transform-origin: center;
}

.pill:hover {
  transform: scale(1.04);
}

.pill.active {
  transform: scale(1.07);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.13);
}
