/* =========================================================
   VGM Currency Switcher
   ========================================================= */

.vgm-currency-switcher,
.vgm-currency-switcher * {
    box-sizing: border-box;
}

.vgm-currency-switcher__control,
.vgm-currency-switcher__label {
    display: inline-flex;
    align-items: center;
}

.vgm-currency-switcher__label {
    gap: 7px;
    margin: 0;
    font: inherit;
    color: inherit;
}

.vgm-currency-select {
    min-width: 76px;
    width: auto;
    max-width: 100%;
    margin: 0;
    padding: 5px 27px 5px 9px;
    border: 1px solid rgba(11, 31, 58, 0.28);
    border-radius: 4px;
    background-color: #ffffff;
    color: #0B1F3A;
    font: inherit;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
}

.vgm-currency-select:focus {
    outline: 2px solid #0B7F75;
    outline-offset: 2px;
}

/* Top-bar format: Currency: USD */
.vgm-currency-switcher--topbar {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
}

.vgm-currency-switcher--topbar .vgm-currency-select {
    min-width: 72px;
    padding-top: 4px;
    padding-bottom: 4px;
}

/* Prominent format for pricing pages and service price cards */
.vgm-currency-switcher--full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px 22px;
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(11, 127, 117, 0.22);
    border-radius: 7px;
    background: rgba(11, 127, 117, 0.055);
}

.vgm-currency-switcher--full .vgm-currency-switcher__label {
    font-weight: 600;
    color: #0B1F3A;
}

.vgm-currency-switcher__note {
    font-size: 13px;
    line-height: 1.4;
    color: #5F6873;
}

/* Compact format: USD only */
.vgm-currency-switcher--compact {
    display: inline-flex;
    align-items: center;
}

.vgm-currency-switcher--compact .vgm-currency-select {
    min-width: 72px;
}

@media (max-width: 767px) {
    .vgm-currency-switcher--full {
        align-items: flex-start;
        flex-direction: column;
    }
}
