/* Toggle UI (unchanged) */
#vat-toggle-wrapper { display:flex; flex-direction: column; align-items:center; gap:4px; }
.vat-switch { position:relative; display:inline-block; width:60px; height:28px; }
.vat-switch input { opacity:0; width:0; height:0; }
.vat-slider { position:absolute; cursor:pointer; inset:0; background:#ccc; transition:.3s; border-radius:34px; }
.vat-slider:before { content:""; position:absolute; height:20px; width:20px; left:4px; bottom:4px; background:#fff; transition:.3s; border-radius:50%; }
.vat-switch input:checked + .vat-slider { background:#062795; }
.vat-switch input:checked + .vat-slider:before { transform:translateX(24px); }
.vat-label { font-size:13px; margin-left:6px; }
.vat-label .inc-label { display:inline; }
.vat-label .ex-label { display:none; }
.vat-switch input:not(:checked) ~ .vat-label .inc-label { display:none; }
.vat-switch input:not(:checked) ~ .vat-label .ex-label { display:inline; }

/* ===== Price visibility logic (class on <html>) ===== */


/* EX mode: show suffix, hide the current amount (sale or non-sale) */
html.vat-ex .price .vat-current-amount { display:none !important; }



/* === New layout styles === */
#vat-toggle-wrapper {
    text-align: center;
    color: #fff; /* adjust to match your header */
    font-family: inherit;
    font-size: 14px;
}

.vat-toggle-title {
    font-weight: 600;
    font-size: 16px;
	color:rgb(36 36 36);
}

.vat-toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vat-side-label {
    font-size: 14px;
    line-height: 1;
    color:rgb(36 36 36);
}

.vat-switch {
    position: relative;
    width: 46px;
    height: 22px;
}

.vat-slider {
    background-color: #111;
}

.vat-slider:before {
    height: 16px;
    width: 16px;
    bottom: 3px;
    left: 3px;
}

input:checked + .vat-slider {
    background-color: #222;
}

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