/* Frontend WhatsApp Button */
.wwc-wa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    margin: 10px 0;
    background: #25D366;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
    width: 100%;
    max-width: 300px;
}

.wwc-wa-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    color: #fff !important;
    opacity: 0.95;
}

.wwc-wa-button:active {
    transform: translateY(0);
}

.wwc-wa-button svg {
    flex-shrink: 0;
}

/* Shop Loop Button */
.woocommerce ul.products li.product .wwc-wa-button {
    width: 100%;
    max-width: 100%;
}

/* Single Product Button */
.single-product .wwc-wa-button {
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .wwc-wa-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Animation */
@keyframes wwc-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.wwc-wa-button:hover svg {
    animation: wwc-pulse 0.5s ease-in-out;
}
