.wp-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.wp-float-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .wp-float-btn {
        bottom: 15px;
        right: 15px;
    }

    .wp-float-btn img {
        width: 45px;
        height: 45px;
    }
}