.bs-vat-toggle {
    display: flex;
    gap: .4em;
    align-items: center;
}

.bs-vat-btn {
    padding: .25em .6em;
    border-radius: .4em;
    border: 1px solid rgba(0,0,0,.15);
    background: transparent;
    cursor: pointer;
    font-size: 0.9em;
}

.bs-vat-btn.active {
    background: var(--bs-primary, #000);
    color: #fff;
}

.bs-vat-notice {
    font-size: 0.85em;
    opacity: .75;
    margin-top: 0.15em;
}

.product-mobile-actions .bs-vat-notice {
    display: none;
}

.bs-vat-toggle-pill {
    display: flex;
    align-items: center;
    gap: .75em;
    background: #F4EEE8;
    border-radius: 2em;
    padding: .45em 1em;
    cursor: pointer;
    user-select: none;
    transition: background .25s ease, border-color .25s ease;
    border: 1px solid rgba(0,0,0,.06);
    width: fit-content;
}

.bs-vat-toggle-pill:hover {
    background: #EEE8E0;
}

/* Text */
.bs-vat-label {
    font-size: .85em;
    font-weight: 500;
    color: #3B3B3B;
    white-space: nowrap;
}

/* Toggle switch */
.bs-vat-switch {
    width: 34px;
    height: 20px;
    background: #DAD5CF;
    border-radius: 999px;
    position: relative;
    transition: background .25s ease;
}

/* White knob */
.bs-vat-knob {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 2px;
    left: 2px;
    background: #fff;
    border-radius: 50%;
    transition: transform .25s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
}

/* Active state */
.bs-vat-toggle-pill[data-current="excl"] .bs-vat-switch {
    background: var(--theme-palette-color-1, #5C95FF);
}

.bs-vat-toggle-pill[data-current="excl"] .bs-vat-knob {
    transform: translateX(14px);
}

.bs-vat-inline {
    font-size: 0.85em;
    opacity: .75;
    margin-left: .35em;
}

body.bs-vat-loading {
    opacity: 0.6;
    transition: opacity .25s ease;
    pointer-events: none;
}
