.flavor-picker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--lots-font-ui);
  font-size: 0.92rem;
}

.flavor-picker__label {
  white-space: nowrap;
  font-weight: 600;
}

.flavor-picker select {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.35rem 2rem 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font: inherit;
}

.flavor-picker select:focus {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}

.flavor-picker select option {
  color: #111;
}

@media (max-width: 768px) {
  .flavor-picker {
    width: 100%;
    justify-content: space-between;
    border-radius: 16px;
  }

  .flavor-picker select {
    min-width: 9rem;
  }
}
