#wmn-fx {
    position: fixed !important;
    bottom: 40px !important;
    left: 20px !important;
    right: auto !important;
    z-index: 99999 !important;
}

/* Button Style */
.wmn-wrap .wmn-widget {
    width: 62px;
    height: 62px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Hover Effect */
.wmn-wrap .wmn-widget:hover {
    transform: scale(1.08);
}

/* Notification Badge */
.wmn-wrap .wmn-widget span.notification {
    right: -2px;
    top: -2px;
    width: 20px;
    height: 20px;
    font-size: 12px;
}

/* ===== Tablet Devices ===== */
@media (max-width: 1024px) {
    #wmn-fx {
        bottom: 18px !important;
        left: 18px !important;
    }

    .wmn-wrap .wmn-widget {
        width: 58px;
        height: 58px;
        padding: 13px;
    }
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    #wmn-fx {
        bottom: 80px !important; /* 60px menu + 20px spacing */
        left: 15px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    #wmn-fx {
        bottom: 75px !important;
        left: 12px !important;
    }
