#wak-contrast-switcher-toggle {
    position: fixed;
    left: 15px;
    bottom: -3px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 13px;
    border: none;
    border-radius: 0;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 10px rgba(0,0,0,0.12);
    transition: transform 0.2s ease;
}

#wak-contrast-switcher-toggle:hover {
    transform: translateY(-3px);
}

/* Label */

.wak-switch-label {
    white-space: nowrap;
}

/* Switch Track */

.wak-switch-track {
    position: relative;
    width: 40px;
    height: 22px;
    border-radius: 999px;
    background: #d1d1d1;
    transition: background 0.25s ease;
}

/* Switch Thumb */

.wak-switch-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

/* Active State */

#wak-contrast-switcher-toggle.active .wak-switch-track {
    background: #007a2c;
}

#wak-contrast-switcher-toggle.active .wak-switch-thumb {
    transform: translateX(18px);
    background: #FFF;
}

/* Focus */

#wak-contrast-switcher-toggle:focus-visible {
    outline: 2px solid #000;
    outline-offset: -2px;
}

/* Mobile */

@media (max-width: 767px) {

    #wak-contrast-switcher-toggle {
        left: 0px;
        bottom: 0;
        gap: 5px;
        padding: 8px 10px;
        font-size: 11px;
        box-shadow: 0 0 8px rgba(0,0,0,0.12);
    }

    .wak-switch-track {
        width: 34px;
        height: 18px;
    }

    .wak-switch-thumb {
        width: 14px;
        height: 14px;
    }

    #wak-contrast-switcher-toggle.active .wak-switch-thumb {
        transform: translateX(16px);
    }

}