/* Floating WhatsApp Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 2px 2px 3px #999;
}

.whatsapp-chat:hover {
    background-color: #128c7e;
    color: #fff;
}

/* WeChat Floating Button */
.wechat-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    background-color: #07c160;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 2px 2px 3px #999;
    cursor: pointer;
}

.wechat-chat:hover {
    background-color: #06ad56;
}

/* WeChat Popup */
#wechat-popup {
    display: none;
    position: fixed;
    bottom: 170px;
    right: 30px;
    z-index: 1000;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

#wechat-popup img {
    max-width: 200px;
}

#wechat-popup h6 {
    margin-bottom: 10px;
    color: #333;
}
