/* WhatsApp Button Styling */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 15px;
    box-shadow: 0 2px 5px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    background-color: #22c35e;
    color: white;
}

.whatsapp-btn i {
    font-size: 20px;
    margin-right: 8px;
}

.whatsapp-btn-text {
    font-size: 14px;
}

/* Product Card WhatsApp Button */
.tp-product-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    background-color: #25D366;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: auto;
    box-shadow: 0 2px 5px rgba(37, 211, 102, 0.3);
    opacity: 0;
    transform: translateX(20px);
}

.tp-product-item:hover .product-whatsapp-btn {
    opacity: 1;
    transform: translateX(0);
}

.product-whatsapp-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    background-color: #22c35e;
    color: white;
}

.product-whatsapp-btn i {
    font-size: 16px;
    margin-right: 5px;
} 