
:root {
  --quickk-color: #ffbb56;
  --discover-color: #0095f6; /* Updated */
  --toggle-width: 110px;
  --toggle-height: 36px;
  --pill-height: 30px;
}

.horeka-toggle-overlay {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 50;
}

.horeka-toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: var(--toggle-width);
  height: var(--toggle-height);
  background: #ffffff;
  border-radius: 999px;
  margin-top: 5px;
  margin-right: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  overflow: hidden;
  cursor: pointer;
}

.toggle-label {
  width: 50%;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #111;
  pointer-events: none;
  z-index: 2;
}

.toggle-pill {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: var(--pill-height);
  border-radius: 999px;
  background: var(--quickk-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              background .3s ease;
  z-index: 1;
}

.horeka-toggle.discover-active .toggle-pill {
  transform: translateX(100%);
  background: var(--discover-color);
}

.horeka-toggle.quickk-active .toggle-label {
  margin-left: 50%;
}
.horeka-toggle.discover-active .toggle-label {
  margin-right: 50%;
}

.toggle-icon {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 14px;
  color: #000;
}

.toggle-icon::before {
  content: "\f0e7";
}
.horeka-toggle.discover-active .toggle-icon::before {
  content: "\f3c5";
}
