/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: auto;
    min-width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 18px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s, box-shadow 0.3s;
    text-decoration: none;
    gap: 8px;
}
@media (max-width: 600px) {
    .whatsapp-float {
        min-width: 44px;
        height: 44px;
        bottom: 12px;
        right: 12px;
        font-size: 13px;
        padding: 0 10px;
    }
    .whatsapp-label {
        font-size: 14px;
    }
    .whatsapp-float img {
        width: 24px;
        height: 24px;
    }
}
.whatsapp-float:hover {
    background-color: #128c7e;
}
.whatsapp-label {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.whatsapp-float img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.12));
}
