/* WhatsApp Button Base Style */
.pwb-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.pwb-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pwb-whatsapp-button svg {
    margin-right: 10px;
    /* CurrentColor se icon ka color button ke text color jaisa ho jayega */
    color: currentColor; 
}

/* Responsive icon size */
@media (max-width: 1024px) {
    .pwb-whatsapp-button svg {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 768px) {
    .pwb-whatsapp-button svg {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
}