/* ============================================================
   CP VAT Toggle
   ============================================================ */

/* ── Price visibility ── */
.cp-price-ex {
    display: none;
}
body.cp-show-ex .cp-price-inc {
    display: none;
}
body.cp-show-ex .cp-price-ex {
    display: inline;
}

/* ── Toggle wrapper ── */
.cp-vat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
    border: 2px solid #0D3560;
    border-radius: 6px;
    overflow: hidden;
    font-family: inherit;
}

/* ── Toggle buttons ── */
.cp-vat-btn {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: #fff;
    color: #0D3560;
    transition: background 0.18s, color 0.18s;
    line-height: 1;
}

.cp-vat-btn:focus-visible {
    outline: 2px solid #0D3560;
    outline-offset: -2px;
}

.cp-vat-btn.active {
    background: #0D3560;
    color: #fff;
}

.cp-vat-btn:not(.active):hover {
    background: #e8edf4;
}
