/**
 * Ecommerce360_DisableCart - Hide all cart-related elements
 */

/* Primary Add to Cart buttons */
.tocart,
.action.tocart,
#product-addtocart-button,
.box-tocart,
button[title*="Add to Cart"],
button[title*="Añadir al carrito"] {
    display: none !important;
}

/* Quantity controls */
.qty-controls-wrap,
.field.qty,
.qty-minus,
.qty-plus,
.input-text.qty {
    display: none !important;
}

/* Minicart and cart links */
.minicart-wrapper,
.action.showcart,
.counter.qty,
.cart-link,
.checkout-cart-link {
    display: none !important;
}

/* Product listing cart buttons */
.product-item .actions-primary,
.product-item .action.tocart,
.actions .action.primary {
    display: none !important;
}

/* Olegnax specific elements */
.ajax-add-to-cart,
.athlete2-addtocart,
.ox-addtocart {
    display: none !important;
}

/* Bundle/Grouped product cart elements */
.bundle-options-container .tocart,
.grouped .tocart,
.configurable .tocart {
    display: none !important;
}

/* Quickview cart elements */
.quickview .box-tocart,
.quickview .tocart {
    display: none !important;
}

/* Product slider cart buttons */
.product-slider .tocart,
.carousel .tocart,
.grid .tocart {
    display: none !important;
}

/* Cart form elements */
#product_addtocart_form .actions,
.product-add-form .actions {
    display: none !important;
}

/* Specific cart-related elements only */
.action.primary.tocart,
.btn-cart,
.add-to-cart,
.shopping-cart-table,
.cart-summary {
    display: none !important;
}

/* Exception: Keep price table and comparison elements visible */
.e360-price-table,
.e360-price-history,
[class*="price-table"],
[class*="compare"]:not([class*="cart"]) {
    display: block !important;
}