/* ==========================================================================
   CUSTOM PRODUCT OVERWRITE
   Overwrite de custom-product.css para el bloque reutilizable custom-product-info.
   Aplica UNICAMENTE cuando el wrapper lleva la clase .customProductInfo,
   es decir, cuando el bloque se usa fuera de la pagina landing "product".
   Proposito exclusivo: anular el estilo botoneado de los <a> que provienen
   del HTML libre del CMS (campo moreinfo de cada elemento hijo), dejandolos
   como enlaces normales con subrayado. Los CTA reales (.bookBtn, .button)
   conservan su estilo de boton intacto.
   ========================================================================== */

/* ----------------------------------------------------------------------------
   Reset de enlaces en leftCol .btnBox
   Anula: padding, borde, fondo, text-transform y flecha ::after del original.
   Excepcion: .bookBtn y .button conservan su apariencia de boton.
   ---------------------------------------------------------------------------- */

#productsIntroSec.customProductInfo .productsInfoBox .leftCol .btnBox a:not(.bookBtn):not(.button) {
	display: inline;
	align-items: unset;
	gap: unset;
	padding: 0;
	font-size: inherit;
	font-weight: 400;
	text-transform: none;
	text-decoration: underline;
	border: none;
	color: #00181a;
	transition: color 0.3s ease;
}

/* Eliminar la flecha arrow-right.svg del pseudoelemento */
#productsIntroSec.customProductInfo .productsInfoBox .leftCol .btnBox a:not(.bookBtn):not(.button)::after {
	content: none;
}

/* Hover sutil: solo oscurecer el color, sin fondo ni inversion */
#productsIntroSec.customProductInfo .productsInfoBox .leftCol .btnBox a:not(.bookBtn):not(.button):hover {
	border: none;
	background-color: transparent;
	color: #555555;
}

#productsIntroSec.customProductInfo .productsInfoBox .leftCol .btnBox a:not(.bookBtn):not(.button):hover::after {
	filter: none;
}

/* Imagenes inline dentro del enlace: visibles como elemento inline normal */
#productsIntroSec.customProductInfo .productsInfoBox .leftCol .btnBox a:not(.bookBtn):not(.button) img.arrow {
	display: inline;
}

/* ----------------------------------------------------------------------------
   Reset de enlaces en rightCol .list .btnBox y .list > a
   Anula: padding, borde, fondo, border-radius, text-transform y flecha ::after.
   Excepcion: .button y .bookBtn conservan su apariencia de boton.
   ---------------------------------------------------------------------------- */

#productsIntroSec.customProductInfo .productsInfoBox .rightCol .list .btnBox a:not(.button):not(.bookBtn),
#productsIntroSec.customProductInfo .productsInfoBox .rightCol .list > a:not(.button):not(.bookBtn) {
	display: inline;
	justify-content: unset;
	align-items: unset;
	gap: unset;
	margin: 0;
	padding: 0;
	border: none;
	background-color: transparent;
	border-radius: 0;
	font-size: inherit;
	font-weight: 400;
	line-height: inherit;
	text-transform: none;
	text-decoration: underline;
	color: #00181a;
	transition: color 0.3s ease;
}

/* Eliminar la flecha arrow-right.svg del pseudoelemento */
#productsIntroSec.customProductInfo .productsInfoBox .rightCol .list .btnBox a:not(.button):not(.bookBtn)::after,
#productsIntroSec.customProductInfo .productsInfoBox .rightCol .list > a:not(.button):not(.bookBtn)::after {
	content: none;
}

/* Hover sutil: solo oscurecer el color, sin fondo ni inversion */
#productsIntroSec.customProductInfo .productsInfoBox .rightCol .list .btnBox a:not(.button):not(.bookBtn):hover,
#productsIntroSec.customProductInfo .productsInfoBox .rightCol .list > a:not(.button):not(.bookBtn):hover {
	border: none;
	background-color: transparent;
	color: #555555;
}

#productsIntroSec.customProductInfo .productsInfoBox .rightCol .list .btnBox a:not(.button):not(.bookBtn):hover::after,
#productsIntroSec.customProductInfo .productsInfoBox .rightCol .list > a:not(.button):not(.bookBtn):hover::after {
	filter: none;
}
