/* ══════════════════════════════════════
   NS OPTION PILLS
══════════════════════════════════════ */

.ns-option-section {
  margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
}

.ns-option-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-bottom: 12px;
}

.ns-option-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ns-opt-pill {
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: border-color 0.22s, color 0.22s, background 0.22s;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.ns-opt-pill:hover {
  border-color: rgba(8,115,234,0.4);
  color: white;
}

.ns-opt-pill.active {
  border-color: #0873EA;
  color: white;
  background: rgba(8,115,234,0.1);
}

.ns-opt-pill:focus,
.ns-opt-pill:active {
  outline: none;
  box-shadow: none;
}

.ns-opt-pill,
.ns-opt-pill:hover,
.ns-opt-pill:focus,
.ns-opt-pill:active,
.ns-opt-pill:visited {
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  text-decoration: none;
}

.ns-opt-pill:hover {
  border-color: rgba(8,115,234,0.4);
  color: white;
  background: transparent;
}

.ns-opt-pill.active {
  border-color: #0873EA;
  color: white;
  background: rgba(8,115,234,0.1);
}