.select-container {
  --select-bg: #fff;
  --select-text: #3c3c3b;
  --select-border: #bdbdbd;
  --select-border-soft: #dbdbdb;
  --select-accent: #dc8419;
  --select-radius: 14px;
  --select-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  position: relative;
}
 
.select-container__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  border: 1px solid var(--select-border);
  border-radius: var(--select-radius);
  background: var(--select-bg);
  color: var(--select-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.select-container__button:focus,
.select-container__button:focus-within {
  border: 2px solid #dc8419;
  text-decoration: none !important;
}

.select-container__button-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  gap: 4px;
}

.select-container__button-text {
  white-space: nowrap;
}

.select-container__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  transform: rotate(180deg);
}

.select-container[aria-expanded="true"] .select-container__button-icon {
  transform: none;
}

.select-container__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  min-width: 240px;
  background: #f5f5f5;
  border: 1px solid var(--select-border-soft);
  border-radius: var(--select-radius);
  box-shadow: var(--select-shadow);
  padding: 12px;
}

.select-container[aria-expanded="true"] .select-container__dropdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.selectOption {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--select-text);
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  padding: 8px 10px;
  cursor: pointer;
}

.selectOption:hover,
.selectOption:focus-visible,
.selectOption.is-selected {
  background: #fff;
  text-decoration: none !important;
}

.selectOption:hover,
.selectOption:focus-visible {
  font-weight: 700;
}

.select-container .select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(100%);
  white-space: nowrap;
  pointer-events: none;
}