/* Cart Button Icon Styles */
.single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Space between icon and text */
}

.gio-cart-icon {
    width: 15px;
    height: 15px;
    fill: currentColor;
    /* Use the button's text color */
    overflow: visible;
    /* Prevent clipping at the edges */
    margin-bottom: 2px;
    /* Slight lift to account for path baseline */
}

/* Ensure the icon color matches the button text if not automatically inherited */
.single_add_to_cart_button .gio-cart-icon path {
    fill: currentColor;
}

/* Remove "View Cart" button injected by WooCommerce */
.added_to_cart.wc-forward {
    display: none !important;
}