/* Wrapper for button + label */
.whatsapp-wrapper {
    position: fixed;
    left: 20px;
    bottom: 100px;
    display: flex;
    align-items: center;
    z-index: 9999;
}

/* Label beside button */
.whatsapp-label {
    background: #25D366;
    color: #fff;
    padding: 10px 14px;
    border-radius: 30px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Left Button */
.whatsapp-float-left {
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
}

/* Bottom Button (no label) */
.whatsapp-float-bottom {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {

    .whatsapp-wrapper {
        left: 10px;
        bottom: 80px;
    }

    .whatsapp-label {
        font-size: 12px;
        padding: 8px 12px;
    }

    .whatsapp-float-left {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-float-bottom {
        right: 10px;
        bottom: 10px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}
