/* WCMC Currency Switcher */
.wcmc-switcher {
    display: inline-flex;
    gap: 4px;
    background: #fff;
    padding: 4px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    z-index: 9999;
}

.wcmc-switcher.wcmc-style-fixed {
    position: fixed;
    top: 16px;
    right: 16px;
}

.wcmc-switcher .wcmc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    color: #555;
    font-weight: 500;
    transition: all 0.15s ease;
    font-size: 13px;
    line-height: 1;
}

.wcmc-switcher .wcmc-btn:hover {
    background: #f5f5f5;
    color: #111;
}

.wcmc-switcher .wcmc-btn.is-active {
    background: #111;
    color: #fff;
}

.wcmc-switcher .wcmc-btn.is-active:hover {
    background: #000;
}

.wcmc-switcher .wcmc-btn.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

.wcmc-switcher .wcmc-flag {
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 600px) {
    .wcmc-switcher.wcmc-style-fixed {
        top: auto;
        bottom: 16px;
        right: 16px;
    }
    .wcmc-switcher .wcmc-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
}
