/* Tecactiva - Bivi | Product Loop Icons */

/* Kitify no tiene una opción propia para desactivar el ícono de vista
   rápida (zoom) en el widget de Elementor, así que se oculta desde acá. */
.nova_product_quick_view_btn {
	display: none !important;
}

/* Fila completa: bloque de texto (título + precio) a la izquierda,
   ícono a la derecha. !important porque a este ancho el tema pone
   .info-left/.info-right en columna centrada por defecto. */
.product-item__description--info {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 8px;
	text-align: left !important;
}

.product-item__description--info .info-left {
	flex: 1 1 auto;
	min-width: 0;
	text-align: left !important;
}

.product-item__description--info .info-right {
	text-align: left !important;
	margin-top: 4px;
}

/* El botón movido pasa de "botón con texto" a ícono compacto — se le
   quita el fondo/relleno original y se oculta el texto "Seleccionar
   opciones", dejando solo el ícono del carrito. */
.tca-bivi-loop-add-to-cart.button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	min-width: 28px;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	flex-shrink: 0;
	/* El SVG usa stroke="currentColor": sin esto hereda el blanco del
	   botón original (pensado para fondo de color). */
	color: #000 !important;
}

.tca-bivi-loop-add-to-cart.button .text {
	display: none;
}

.tca-bivi-loop-add-to-cart.button svg,
.tca-bivi-loop-add-to-cart.button .lumilux-addtocart {
	width: 20px;
	height: 20px;
	color: inherit;
}