#vanta-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.vanta-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1040;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: #fff;
  border-radius: 30px;
  padding: 8px 14px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  user-select: none;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-smooth);
}

.vanta-toggle:hover,
.vanta-toggle:focus {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
  outline: none;
}

.vanta-toggle .toggle-label {
  color: var(--global-text-color-light);
  white-space: nowrap;
}

.toggle-switch {
  width: 44px;
  height: 24px;
  background-color: #FBD3E1;
  border-radius: 12px;
  position: relative;
  transition: background-color var(--transition-smooth);
  flex-shrink: 0;
}

.toggle-switch .knob {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: left var(--transition-smooth);
}

.vanta-toggle.active .toggle-switch {
  background-color: #D3F0FB;
}

.vanta-toggle.active .toggle-switch .knob {
  left: 22px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vanta-toggle {
    bottom: 16px;
    right: 16px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .content {
    padding-bottom: 6.5rem;
  }

  .toggle-switch {
    width: 40px;
    height: 22px;
  }

  .toggle-switch .knob {
    width: 18px;
    height: 18px;
  }

  .vanta-toggle.active .toggle-switch .knob {
    left: 20px;
  }
}

@media (max-width: 576px) {
  .vanta-toggle {
    bottom: 12px;
    right: 12px;
    padding: 6px 10px;
    font-size: 10px;
    gap: 4px;
  }

  .content {
    padding-bottom: 7rem;
  }

  .vanta-toggle .toggle-label {
    display: none;
  }

  .toggle-switch {
    width: 38px;
    height: 20px;
  }

  .toggle-switch .knob {
    width: 16px;
    height: 16px;
  }

  .vanta-toggle.active .toggle-switch .knob {
    left: 18px;
  }
}
