/* CR Ver Carrito v1.0.1
 * Muestra el enlace nativo "Ver carrito" (a.added_to_cart) en todas partes.
 *
 * Conflictos que hay que ganar:
 *  - astra:  .woocommerce a.added_to_cart { display:none }
 *  - cr-view-toggle-woocommerce:
 *      body.cr-wc-view-toggle-enabled ul.products li.product .added_to_cart
 *      { color:#fff; padding:...; min-width:140px }  <- lo pintaba como boton
 */

body a.added_to_cart,
body .woocommerce a.added_to_cart,
body .woocommerce-js a.added_to_cart,
body .woocommerce-page a.added_to_cart,
body ul.products li.product a.added_to_cart,
body .wc-block-grid__product a.added_to_cart,
body.cr-wc-view-toggle-enabled ul.products li.product a.added_to_cart,
body.cr-wc-view-grid ul.products li.product a.added_to_cart,
body.cr-wc-view-list ul.products li.product a.added_to_cart,
body.cr-wc-view-list ul.products li.product .cr-wc-list-actions > a.added_to_cart,
body.cr-wc-view-compact ul.products li.product a.added_to_cart {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	float: none !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	margin: 0.5em 0 0 !important;
	padding: 0.35em 0 0.1em !important;
	background: none !important;
	background-color: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #1f2b6c !important;
	font-size: 0.92em !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-transform: none !important;
	cursor: pointer !important;
	transition: color 0.15s ease;
}

body a.added_to_cart:hover,
body a.added_to_cart:focus,
body ul.products li.product a.added_to_cart:hover,
body.cr-wc-view-toggle-enabled ul.products li.product a.added_to_cart:hover {
	color: #2f3f96 !important;
	background: none !important;
	background-color: transparent !important;
	text-decoration: underline !important;
}

/* Ficha de producto individual */
body.single-product a.added_to_cart,
body.woocommerce-js.single-product a.added_to_cart {
	display: block !important;
	width: 100% !important;
	padding: 0.35em 0 0.1em !important;
	text-align: center !important;
}

/* Vistas compactas del toggle CR: un pelin mas chico */
body.cr-wc-view-list ul.products li.product a.added_to_cart,
body.cr-wc-view-compact ul.products li.product a.added_to_cart {
	font-size: 0.86em !important;
	margin-top: 0.35em !important;
}

/* Estado mientras abre el carrito flotante */
body a.added_to_cart.cr-vc-loading {
	opacity: 0.55 !important;
	pointer-events: none !important;
}
