/* ========================================
   PRODUCT CARD BUTTONS - UNIVERSAL FIX
   Adds WhatsApp and Details buttons to ALL product cards
   ======================================== */

/* Hide all rating stars and prices */
.rating-stars,
.product-card .rating-stars,
.product-card-body .rating-stars,
div.rating-stars,
.product-price,
h4.product-price {
    display: none !important;
}

/* Add buttons after product title using CSS */
.product-card-body h3.product-title {
    margin-bottom: 15px !important;
}

/* Create button container after title */
.product-card-body h3.product-title::after {
    content: "" !important;
    display: block !important;
    clear: both !important;
}

/* Style existing product-card-actions if present */
.product-card-actions {
    display: flex !important;
    gap: 8px !important;
    margin-top: 12px !important;
    width: 100% !important;
}

.product-card-actions a {
    flex: 1 !important;
    padding: 10px 8px !important;
    font-size: 13px !important;
    border-radius: 4px !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
}

.product-card-actions .btn-whatsapp {
    background-color: #25d366 !important;
    color: #fff !important;
}

.product-card-actions .btn-details {
    background-color: #002403 !important;
    color: #fff !important;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .product-card-actions {
        flex-direction: column !important;
    }
}
