.whatsapp-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    display: none;
    z-index: 9999;
    padding: 15px;
}

.whatsapp-widget .subtext {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    text-align: center;
}

.whatsapp-widget .contact {
    background: #f9f9f9;
    border: 1px solid #25d366;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.whatsapp-widget .contact:hover {
    background: #e0ffe5;
}

.whatsapp-widget .contact img {
    width: 32px;
    height: 32px;
}

.whatsapp-float-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 10000;
}

.whatsapp-float-button img {
    width: 180px;
    height: auto;
}