/* CONTENEUR */
.floating-menu-fab {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
}

/* BOUTON PRINCIPAL */
.fm-toggle {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.fm-toggle:hover {
    transform: rotate(90deg) scale(1.1);
}

/* ITEMS */
.fm-items {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* MENU ACTIF */
.floating-menu-fab.active .fm-items {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ITEM */
.fm-item {
    display: flex;
    align-items: center;
    margin: 6px 0;
    text-decoration: none;
}

/* ICONE */
.fm-item i {
    width: 45px;
    height: 45px;
    background: #1f2937;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXTE */
.fm-item span {
    margin-right: 10px;
    background: #1f2937;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
}

/* COULEURS */
.fm-item:nth-child(1) i { background: #16a34a; }
.fm-item:nth-child(2) i { background: #dc2626; }
.fm-item:nth-child(3) i { background: #7c3aed; }
.fm-item:nth-child(4) i { background: #2563eb; }