.float-menu {
    position: fixed;
    top: 200px;
    left: 0px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-menu .item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    height: 48px;
    width: 48px;
    /* الحجم الافتراضي */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: width 0.25s ease-in-out;
    border: 0px solid #13541C;
}

.float-menu .item:hover {
    width: 200px;
    /* التمدد مثل الفيديو */
}

.float-menu .item .icon {
    background: #13541C;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.float-menu .item img {
    width: 22px;
    height: 22px;
}

.float-menu .item span {
    font-size: 15px;
    font-weight: bold;
    margin-left: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.15s ease;
    color: #333;
}

.float-menu .item:hover span {
    opacity: 1;
}


.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    /* Distance from bottom */
    right: 20px;
    /* Distance from right */
    z-index: 1000;
    /* Ensures it stays on top */
}

.whatsapp-icon img {
    width: 60px;
    /* Icon size */
    height: 60px;
    border-radius: 50%;
    /* Makes the icon circular */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* Optional shadow for better visibility */
    transition: transform 0.3s ease;
    /* Hover effect */
}

.whatsapp-icon img:hover {
    transform: scale(1.1);
    /* Slight zoom on hover */
}