/*
 * Product card action area spacing for Vida Aromatica Child.
 *
 * Root cause of the price/button overlap is fixed at the source in
 * inc/product-card.php (forces Kadence's native "action-visible" archive
 * style, so .product-action-wrap stays in normal document flow instead of
 * being absolutely positioned and hover-triggered). No position/opacity
 * overrides are needed here.
 *
 * This stylesheet only groups "Anadir al carrito" and the "Ver carrito" link
 * WooCommerce appends after adding to cart into a clean vertical stack
 * inside their existing normal-flow box, so the second line reads as
 * separated rather than crowded against the button.
 *
 * Scope: shop archive, product category archives and the related products
 * loop on the single product page - the three places this same
 * WooCommerce/Kadence product card markup renders.
 */

.woocommerce ul.products li.product .product-action-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5em;
}

.woocommerce ul.products li.product .product-action-wrap .added_to_cart.wc-forward {
	margin: 0;
}
