/* Ajuste para dropdown de moneda */
#currency-change .dropdown-menu {
    max-width: 100vw;
    overflow-x: hidden;
    z-index: 1050;
}

/* Mobile view */
@media (max-width: 768px) {
    #currency-change .dropdown-menu {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        border-radius: 0;
        margin-top: 10px;
    }

    #currency-change .dropdown-menu li {
        padding: 12px 16px;
        font-size: 16px;
        background-color: #111;
        color: #fff;
    }

    #currency-change .dropdown-menu li:hover {
        background-color: #2a2a2a;
    }

    #currency-change .dropdown-menu .active {
        background-color: #ff4500;
    }
}


