/* Granada Elementor Toggle - keep styling compatible with theme (light/dark via theme vars/classes) */
.gt-root { width: 100%; }
.gt-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.gt-wrap.is-full { width: 100%; }
.gt-label { user-select: none; }

/* Toggle button */
.gt-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}
.gt-toggle:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; border-radius: 999px; }

.gt-track {
  display: inline-flex;
  align-items: center;
  width: 56px;
  height: 28px;
  border-radius: 999px;
  background: var(--e-global-color-primary, currentColor);
  opacity: .95;
  position: relative;
  transition: opacity .15s ease;
}
.gt-knob {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  transition: left .2s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}

.gt-root[data-gt-state="right"] .gt-knob { left: calc(100% - 22px - 4px); }

.gt-root.is-loading { pointer-events: none; opacity: .75; }

.gt-below { margin-top: .5rem; }
