﻿/* ================= DESKTOP ================= */
.sticky-container {
    position: fixed;
    right: 0;
    bottom: 120px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fab-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0084ff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    margin-bottom: 10px;
}

.fab-icon {
    font-size: 28px;
    color: white;
}

.fab-menu {
    display: block;
    margin: 0;
    padding: 0;
}

.fab-menu li {
    list-style-type: none;
    height: 43px;
    margin: 1px 0;
}

.fab-menu li img {
    width: 25px;
    height: 25px;
    margin: 9px;
    float: left;
}

.fab-menu li.whatsapp {
    background-color: #1bd741;
}

.fab-menu li.fb-messager {
    background-color: #0084ff;
}

.fab-menu li.live-chat {
    background-color: #F071A8;
}

/* ================= MOBILE ================= */
@media only screen and (max-width: 768px) {
    .sticky-container {
        bottom: 90px;
    }

    .fab-toggle {
        display: flex;
    }

    .fab-menu {
        display: none;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
        margin-bottom: 10px;
    }

    .fab-menu.active {
        display: flex;
    }

    .fab-menu li {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: inherit;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        padding: 0;
        overflow: hidden;
        margin: 0;
    }

    .fab-menu li img {
        width: 28px;
        height: 28px;
        margin: 0;
        float: none;
    }

    .fab-menu li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
}
