.wc-whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

    z-index: 99999;

    transition: all 0.3s ease;
}

/* Icon Size */
.wc-whatsapp-button svg {
    width: 30px;
    height: 30px;
}

/* Hover Effect */
.wc-whatsapp-button:hover {
    transform: scale(1.1);
}

/* Tablet Devices */
@media screen and (max-width: 768px) {

    .wc-whatsapp-button {
        width: 55px;
        height: 55px;

        right: 15px;
        bottom: 15px;
    }

    .wc-whatsapp-button svg {
        width: 26px;
        height: 26px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 480px) {

    .wc-whatsapp-button {
        width: 50px;
        height: 50px;

        right: 12px;
        bottom: 12px;
    }

    .wc-whatsapp-button svg {
        width: 24px;
        height: 24px;
    }
}