
.sps-switch-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6px 0;
  gap: 20px;
}



.sps-label{
	color: #605BA8;
	text-transform: uppercase;
	font-size: 12.5px;
}

.sps-switch-bar {
  display: inline-flex;
	border: 2px solid #605BA8;
    border-radius: 20px;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffffff; 
}


.sps-switch-label {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}


.sps-switch-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}


.sps-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #605BA8;
  opacity: 1;
  transition: all 0.18s ease;
  white-space: nowrap;

  border: 1px solid transparent;
  box-sizing: border-box;
}


.sps-option:hover {
  opacity: 0.9;
}


.sps-option-active {
  background: #605BA8;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 4px 10px rgba(0, 0, 0, 0.28);
  opacity: 1;
  color: #fff;
  border-color: #605BA8;
}


.sps-option-active:hover {
  color: #605BA8;
  text-decoration: none;
  background: #ffffff;
  border-color: #605BA8;
}

@media (max-width: 768px) {
  .sps-switch-wrapper {
    margin: 4px 0;
  }

  .sps-switch-bar {
    font-size: 0.72rem;
  }

  .sps-option {
    padding: 3px 10px;
    font-size: 0.7rem;
  }
}
