.vat-switcher-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.vat-switcher-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    user-select: none;
}

.vat-switcher-label.active {
    opacity: 1;
}

.vat-switcher-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin: 0;
    cursor: pointer;
}

.vat-switcher-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.vat-switcher-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    border-radius: 26px;
    transition: background-color 0.3s ease;
}

.vat-switcher-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #ffb91f;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.vat-switcher-toggle input:checked + .vat-switcher-slider:before {
    transform: translateX(24px);
}

/* Optional: Add focus state for accessibility */
.vat-switcher-toggle input:focus + .vat-switcher-slider {
    box-shadow: 0 0 0 2px rgba(255, 185, 31, 0.3);
}
