/* WhatsApp Custom Popup */
.wacp-wrap {
    position: fixed;
    bottom: 24px;
    z-index: 999999;
    font-family: Arial, sans-serif;
}
.wacp-right { right: 24px; }
.wacp-left { left: 24px; }

/* WhatsApp Button: Green, Oval (Pill Shape), and Wave Animation */
.wacp-toggle {
    width: auto;
    min-width: 62px;
    height: 62px;
    border: 0;
    border-radius: 31px;
    background: #25D366;
    box-shadow: 0 5px 22px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 10px;
    transition: .25s;
    position: relative;
    animation: whatsapp-wave 1.5s infinite ease-in-out;
}

.wacp-toggle:hover {
    transform: scale(1.05);
    animation: none;
}

/* Wave Animation Effect */
@keyframes whatsapp-wave {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wacp-whatsapp-icon {
    width: 34px;
    height: 34px;
    display: flex;
    flex: none;
}

.wacp-whatsapp-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.wacp-x {
    display: none;
    color: #fff;
    font-size: 34px;
    line-height: 1;
}

.wacp-label {
    position: absolute;
    right: 74px;
    bottom: 12px;
    background: #fff;
    padding: 9px 13px;
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,.15);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.wacp-menu {
    position: absolute;
    right: 0;
    bottom: 75px;
    width: 265px;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s;
}

.wacp-wrap.wacp-open .wacp-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wacp-wrap.wacp-open .wacp-whatsapp-icon {
    display: none;
}

.wacp-wrap.wacp-open .wacp-x {
    display: block;
}

.wacp-wrap.wacp-open .wacp-toggle {
    animation: none;
}

.wacp-action {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: #222 !important;
    padding: 10px;
    border-radius: 11px;
    transition: .18s;
}

.wacp-action:hover {
    background: #f4f4f4;
}

.wacp-action-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    flex: none;
}

.wacp-action strong {
    display: block;
    font-size: 14px;
    line-height: 1.2;
}

.wacp-action small {
    display: block;
    font-size: 11px;
    color: #777;
    margin-top: 3px;
}
