.wa-container {
    position: fixed;
    /* ✅ IMPORTANT */
    bottom: 20px;
    right: 20px;
    z-index: 999999;
}

/* Button */
.wa-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: bounce 1.5s infinite;
}

.wa-button img {
    width: 30px;
}

/* Popup */
.wa-popup {
    position: absolute;
    /* container ke andar */
    bottom: 75px;
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: 0.3s ease;
}

/* Active */
.wa-popup.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Header */
.wa-header {
    background: #25D366;
    color: white;
    padding: 10px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-header img {
    width: 25px;
}

/* Text */
.wa-popup p {
    padding: 10px;
    font-size: 14px;
    margin: 0;
}

/* Button inside popup */
.wa-popup a {
    display: block;
    margin: 10px;
    background: #25D366;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
}

/* Animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}