.wa-popup {
    position: fixed;
    bottom: 70px;
    right: 15px;
    z-index: 9999;
}

.wa-button {
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.wa-button:hover {
    transform: scale(1.1);
}

.wa-button img {
    width: 35px;
    height: 35px;
}

.wa-chat-box {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 250px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: fadeInUp 0.3s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wa-header {
    background-color: #25D366;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-header span {
    cursor: pointer;
    font-size: 20px;
}

.wa-body {
    padding: 15px;
    text-align: center;
}

.wa-chat-button {
    background: #25D366;
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.wa-chat-button:hover {
    background: #1ebe5b;
}
