/* Movixit Currency & Language Switcher Styles */
.mvx-switcher {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: inherit;
}

.mvx-switcher-control {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mvx-switcher-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--mvx-sw-dark, #061A40);
}

.mvx-switcher-button {
    background: rgba(0, 51, 102, 0.05);
    border: 1px solid #e5e7eb;
    color: #4b5563;
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mvx-switcher-button:hover {
    background: rgba(0, 51, 102, 0.1);
    border-color: var(--mvx-sw-accent, #0B5CFF);
}

.mvx-switcher-button .mvx-chevron {
    font-size: 10px;
    transition: transform 0.2s;
}

.mvx-switcher-button[aria-expanded="true"] .mvx-chevron {
    transform: rotate(180deg);
}

.mvx-switcher-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 10000;
    margin-top: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.mvx-switcher-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mvx-switcher-dropdown button {
    display: block;
    width: 100%;
    padding: 10px 15px;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: background 0.2s;
}

.mvx-switcher-dropdown button:hover {
    background: #f0f7ff;
}

.mvx-switcher-dropdown button strong {
    margin: 0 8px;
}

/* Header specific overrides */
.movixit-top-right .mvx-switcher-button,
.movixit-header-actions .mvx-switcher-button {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
}

.movixit-header-actions .mvx-switcher-button {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.movixit-header-actions .mvx-switcher-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile styles */
@media (max-width: 768px) {
    .mvx-switcher {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .mvx-switcher-control {
        width: 100%;
    }

    .mvx-switcher-button {
        width: 100%;
        justify-content: space-between;
    }

    .mvx-switcher-dropdown {
        width: 100%;
        position: relative;
        margin-top: 5px;
        box-shadow: none;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
    }
}