/**
 * CruelCRM Product Page Fix
 * Hide the standard WooCommerce add to cart button ONLY when configurations are present
 * This CSS is loaded on product pages that have configurations
 */

/* We'll use JavaScript to handle hiding the add to cart button */
/* This file is kept for backward compatibility but the hiding is done via JS */

/* Ensure configurations are visible */
.cruelcrm-product-page-configuration {
    display: block !important;
    margin-top: 20px;
}

/* Make sure our configuration add to cart button is visible */
.cruelcrm-add-configuration-to-cart {
    display: inline-block !important;
}

/* Ensure configuration quantity inputs are visible */
.cruelcrm-configuration-quantity {
    display: block !important;
}