/* PRG Currency Switcher — All styles */
.prg-cs-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    vertical-align: middle;
}

/* ── Toggle style ── */
.prg-cs-toggle-wrap .prg-cs-label {
    font-size: 13px;
    font-weight: 500;
    color: #888;
    line-height: 1;
    transition: color .2s;
    user-select: none;
}
.prg-cs-toggle-wrap .prg-cs-label.prg-cs-active {
    color: #222;
}
.prg-cs-toggle {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
    background: #d0d0d0;
    border-radius: 11px;
    transition: background .25s;
    text-decoration: none;
    flex-shrink: 0;
}
.prg-cs-toggle.prg-cs-on {
    background: #2271b1;
}
.prg-cs-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: left .25s;
    box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.prg-cs-toggle.prg-cs-on .prg-cs-knob {
    left: 23px;
}

/* ── Buttons style ── */
.prg-cs-buttons {
    gap: 4px;
}
.prg-cs-btn {
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    border: 1.5px solid #ccc;
    transition: all .2s;
}
.prg-cs-btn:hover {
    border-color: #2271b1;
    color: #2271b1;
}
.prg-cs-btn.prg-cs-active {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}
.prg-cs-sep {
    color: #ccc;
    font-size: 12px;
}

/* ── Dropdown style ── */
.prg-cs-dropdown select {
    padding: 4px 10px;
    font-size: 13px;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    color: #333;
    transition: border-color .2s;
}
.prg-cs-dropdown select:focus {
    outline: none;
    border-color: #2271b1;
}

/* ── Dark header compatibility ── */
.prg-cs-toggle-wrap .prg-cs-label,
.prg-cs-btn,
.prg-cs-dropdown select {
    /* Inherit from Elementor header if needed */
}
