/* Force wrapper for inline price and button - applies everywhere */
body .elementor-widget-woocommerce .products .product .angie-price-cart-wrapper-c571df58,
body ul.products li.product .angie-price-cart-wrapper-c571df58 {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    margin-top: 15px;
    width: 100%;
}

/* Prices styling */
body .elementor-widget-woocommerce .products .product .angie-price-cart-wrapper-c571df58 .price,
body ul.products li.product .angie-price-cart-wrapper-c571df58 .price {
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-weight: normal !important; /* Non-bold title */
    color: #000 !important;
    font-size: 16px !important; 
}

/* Add to cart custom icon button - Match reference image exactly */
body .elementor-widget-woocommerce .products .product a.button.angie-icon-btn,
body ul.products li.product a.button.angie-icon-btn,
body.elementor-editor-active .elementor-widget-woocommerce .products .product a.button.angie-icon-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #ffffff !important; /* White background requested by user */
    color: #000000 !important; 
    border: 1px solid #1f2937 !important; /* Match border color */
    border-radius: 14px !important; /* Pill shape like image */
    width: 43px !important; /* Exact width from image inspector (43px) */
    height: 28px !important; /* Exact height from image inspector (28px) */
    padding: 0 !important; 
    min-height: unset !important;
    margin: 0 !important;
    transition: all 0.2s ease;
    visibility: visible !important;
    opacity: 1 !important;
}

body .elementor-widget-woocommerce .products .product a.button.angie-icon-btn svg,
body ul.products li.product a.button.angie-icon-btn svg {
    stroke: #000000 !important; 
    display: block !important;
    margin: auto !important;
    width: 16px !important;
    height: 16px !important;
}

/* Hover state */
body .elementor-widget-woocommerce .products .product a.button.angie-icon-btn:hover,
body ul.products li.product a.button.angie-icon-btn:hover {
    background-color: #f5f5f5 !important; /* Slightly darker on hover */
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    body .elementor-widget-woocommerce .products .product a.button.angie-icon-btn,
    body ul.products li.product a.button.angie-icon-btn {
        width: 38px !important; 
        height: 24px !important;
    }
}

/* HIDE all other buttons injected by Elementor or other plugins */
body .elementor-widget-woocommerce .products .product > .button:not(.angie-icon-btn),
body .elementor-widget-woocommerce .products .product > .add_to_cart_button:not(.angie-icon-btn),
body.elementor-editor-active .elementor-widget-woocommerce .products .product > .button:not(.angie-icon-btn) {
    display: none !important;
    visibility: hidden !important;
}

/* Hide duplicate prices outside our wrapper */
body .elementor-widget-woocommerce .products .product > .price:not(.angie-price-cart-wrapper-c571df58 .price),
body.elementor-editor-active .elementor-widget-woocommerce .products .product > .price:not(.angie-price-cart-wrapper-c571df58 .price) {
    display: none !important;
}
