.mnl-icons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9999;
}

.mnl-wrap {
    position: relative;
    margin-bottom: 10px;
}

.mnl-icons a,
.mnl-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
}

.mnl-icons i {
    font-size: 20px;
}

/* PHONE DROPDOWN */
.mnl-phone-list {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    display: none;
    min-width: 150px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mnl-phone-list a {
    display: block;
    margin-bottom: 5px;
    color: #000;
    text-decoration: none;
}

/* DESKTOP HOVER */
.mnl-phone:hover .mnl-phone-list {
    display: block;
}

/* MOBILE */
@media (max-width: 768px) {

    .mnl-icons {
        top: auto;
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .mnl-wrap {
        margin-bottom: 0;
    }

    .mnl-phone-list {
        top: auto;
        bottom: 60px;
        right: 50%;
        transform: translateX(50%);
    }

    .mnl-phone.active .mnl-phone-list {
        display: block;
    }
}