/* ── Single Guía (/mejores/single) ────────────────────────────────────────── */

/* ═══ HERO (editorial light) ════════════════════════════════════════════════ */
.rl-guia-hero {
	position: relative;
	background: oklch(99.5% 0.005 80);
	color: var(--rl-ink, #191c1d);
	overflow: hidden;
	padding-block: clamp(3.5rem, 9vw, 5.5rem);
}

/* Big decorative product-count — category color at low opacity */
.rl-guia-hero__deco {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: clamp(12rem, 38vw, 22rem);
	font-weight: 900;
	line-height: 0.8;
	color: var(--cat-current, oklch(60% 0.14 35));
	opacity: 0.07;
	letter-spacing: -0.04em;
	font-variant-numeric: tabular-nums;
	pointer-events: none;
	user-select: none;
	z-index: 0;
}

.rl-guia-hero__inner {
	position: relative;
	z-index: 1;
}

.rl-guia-hero__eyebrow {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	margin-bottom: 1rem;
	font-weight: 600;
}

.rl-guia-hero__title {
	font-size: clamp(1.875rem, 5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.022em;
	color: var(--rl-ink, #191c1d);
	margin: 0 0 1rem;
	max-width: 20ch;
}

.rl-guia-hero__excerpt {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: oklch(30% 0.01 250);
	max-width: 56ch;
	margin: 0 0 1.5rem;
}

.rl-guia-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	font-size: 0.875rem;
	color: oklch(45% 0.01 250);
}

.rl-guia-hero__meta-count {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	font-weight: 600;
}

/* ═══ MARQUEE (sin gap tras hero) ═══════════════════════════════════════════ */
.rl-guia-hero + .rl-prod-marquee {
	margin-top: 0;
}

/* ═══ ANCHOR BAR ════════════════════════════════════════════════════════════ */
.rl-guia-anchor-bar {
	position: sticky;
	top: var(--rl-header-height, 76px);
	z-index: 90;
	background: oklch(99% 0.003 80);
	border-bottom: 1px solid var(--rl-border, #e2e5ed);
	box-shadow: 0 1px 8px oklch(20% 0.01 250 / 0.06);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-inline: clamp(0.75rem, 3vw, 1.5rem);
	overflow-x: auto;
	scrollbar-width: none;
}

.rl-guia-anchor-bar::-webkit-scrollbar {
	display: none;
}

.rl-guia-anchor-bar__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
	flex-shrink: 0;
}

.rl-guia-anchor-bar__list a {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--rl-text-secondary, #5a6478);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	white-space: nowrap;
	transition: color 0.15s, border-color 0.15s;
}

.rl-guia-anchor-bar__list a:hover {
	color: var(--rl-ink, #191c1d);
}

.rl-guia-anchor-bar__list a.is-active {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	border-bottom-color: var(--cat-current, var(--rl-coral, #ff6b35));
}

.rl-guia-anchor-bar__ml {
	margin-left: auto;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	gap: 0.4rem;
	padding: 0.45rem 1rem;
	background: var(--rl-ml-yellow, #ffe600);
	color: var(--rl-ink, #191c1d);
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.15s, transform 0.15s;
	white-space: nowrap;
}

.rl-guia-anchor-bar__ml:hover {
	background: var(--rl-ml-yellow-hover, #ffd000);
	transform: translateY(-1px);
}

/* ═══ FULL RANKING ══════════════════════════════════════════════════════════ */
.rl-guia-ranking {
	background: var(--rl-cloud, #f9f7f2);
	padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.rl-guia-ranking__heading {
	font-size: clamp(1.375rem, 3vw, 1.875rem);
	font-weight: 800;
	color: var(--rl-ink, #191c1d);
	letter-spacing: -0.015em;
	margin: 0 0 1.75rem;
}

.rl-guia-ranking__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

/* ── Base item ── */
.rl-guia-ranking__item {
	display: grid;
	grid-template-columns: 2.25rem 80px 1fr auto;
	grid-template-areas:
		"rank thumb head  score"
		"rank thumb body  score";
	column-gap: 1rem;
	row-gap: 0.35rem;
	align-items: start;
	background: oklch(100% 0 0);
	border-radius: 16px;
	padding: 1.125rem;
	border: 1.5px solid var(--rl-border-light, #eff1f6);
	position: relative;
	transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

@media (max-width: 640px) {

	.rl-guia-ranking__item {
		grid-template-rows: auto auto;
	}
}

.rl-guia-ranking__item:hover {
	border-color: var(--rl-border, #e2e5ed);
	box-shadow: 0 4px 18px oklch(20% 0.01 250 / 0.07);
}

/* ── First item (winner) ── */
.rl-guia-ranking__item--first {
	padding: 1.5rem;
	border-color: var(--cat-current, oklch(70% 0.14 35));
	border-width: 2px;
	grid-template-columns: 2.25rem 120px 1fr auto;
}

.rl-guia-ranking__item--first::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--cat-current, oklch(60% 0.14 35));
	border-radius: 14px 14px 0 0;
}

/* ── Rank number ── */
.rl-guia-ranking__rank {
	grid-area: rank;
	font-size: 1.625rem;
	font-weight: 800;
	color: oklch(20% 0.01 250 / 0.32);
	line-height: 1;
	padding-top: 0.2rem;
	align-self: center;
	text-align: center;
	font-variant-numeric: tabular-nums;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--rl-cream);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.rl-guia-ranking__item--first .rl-guia-ranking__rank {
	font-size: 2.25rem;
	color: var(--cat-current, oklch(60% 0.14 35));
	opacity: 1;
}

/* ── Thumbnail ── */
.rl-guia-ranking__thumb {
	grid-area: thumb;
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--rl-cloud, #f9f7f2);
	align-self: center;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
}

.rl-guia-ranking__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6px;
}

.rl-guia-ranking__item--first .rl-guia-ranking__thumb {
	width: 120px;
	height: 120px;
}

/* ── Score ring ── */
.rl-guia-ranking__score-wrap {
	grid-area: score;
	align-self: center;
	flex-shrink: 0;
}

/* ── Body ── */
.rl-guia-ranking__body {
	grid-area: body;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	min-width: 0;
}

.rl-guia-ranking__head {
	grid-area: head;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.rl-guia-ranking__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.rl-guia-ranking__title-heading {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
}

.rl-guia-ranking__title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--rl-ink, #191c1d);
	text-decoration: none;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.rl-guia-ranking__cta {
	flex-shrink: 0;
	white-space: nowrap;
}

@media (max-width: 640px) {

	.rl-guia-ranking__cta {
		grid-column: 1 / -1;
		text-align: center;
		display: block;
	}
}

.rl-guia-ranking__title:hover {
	color: var(--rl-coral, #ff6b35);
}

.rl-guia-ranking__item--first .rl-guia-ranking__title {
	font-size: 1.125rem;
}

.rl-guia-ranking__verdict {
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--rl-text-secondary, #5a6478);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.rl-guia-ranking__item--first .rl-guia-ranking__verdict,
.rl-guia-ranking__details .rl-guia-ranking__verdict {
	-webkit-line-clamp: unset;
	overflow: visible;
}

/* ── Pros / Cons (accordion for non-first) ── */
.rl-guia-ranking__details {
	margin-top: 0.2rem;
}

.rl-guia-ranking__summary {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--rl-coral, #ff6b35);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.4rem;
	user-select: none;
	padding: 0.35rem 0;
	min-height: 44px;
	border-top: 1px solid oklch(92% 0.004 250);
	margin-top: 0.25rem;
}

.rl-guia-ranking__summary::-webkit-details-marker {
	display: none;
}

.rl-guia-ranking__summary::marker {
	display: none;
}

.rl-guia-ranking__summary svg {
	flex-shrink: 0;
	transition: transform 0.2s ease-out;
}

.rl-guia-ranking__details[open] > .rl-guia-ranking__summary svg {
	transform: rotate(180deg);
}

/* Desktop: always show analysis, hide toggle */
@media (min-width: 768px) {

	.rl-guia-ranking__summary {
		display: none;
	}
}

.rl-guia-ranking__pros-cons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.625rem;
	margin-top: 0.625rem;
}

.rl-guia-ranking__pros,
.rl-guia-ranking__cons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.rl-guia-ranking__pros li,
.rl-guia-ranking__cons li {
	font-size: 0.8125rem;
	line-height: 1.55;
	padding-left: 1.1rem;
	position: relative;
	color: var(--rl-text-secondary, #5a6478);
}

.rl-guia-ranking__pros li::before {
	content: "+";
	position: absolute;
	left: 0;
	color: oklch(48% 0.14 160);
	font-weight: 700;
}

.rl-guia-ranking__cons li::before {
	content: "\2212";
	position: absolute;
	left: 0;
	color: oklch(45% 0.18 25);
	font-weight: 700;
}

/* ── Foot / CTAs ── */
.rl-guia-ranking__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem 0.625rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--rl-border-light, #eff1f6);
	margin-top: 0.4rem;
}

.rl-guia-ranking__ctas {
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.rl-guia-ranking__link {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--rl-text-secondary, #5a6478);
	text-decoration: none;
	padding: 0.35rem 0.625rem;
	border-radius: 6px;
	transition: color 0.15s, background 0.15s;
	white-space: nowrap;
}

.rl-guia-ranking__link:hover {
	color: var(--rl-ink, #191c1d);
	background: var(--rl-cloud, #f9f7f2);
}

/* Botones guía (independientes del CSS de producto) */
.rl-guia-btn-ml {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.5rem;
	background: var(--rl-ml-yellow, #ffe600);
	color: var(--rl-ink, #191c1d);
	border-radius: 10px;
	font-weight: 700;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: background 0.15s, transform 0.15s;
	white-space: nowrap;
}

.rl-guia-btn-ml:hover {
	background: var(--rl-ml-yellow-hover, #ffd000);
	transform: translateY(-1px);
}

.rl-guia-btn-ml--sm {
	padding: 0.5rem 1rem;
	font-size: 0.84375rem;
	border-radius: 8px;
	min-height: 44px;
}

.rl-guia-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.8rem 1.4rem;
	border: 1.5px solid var(--rl-border, #e2e5ed);
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--rl-text-primary, #1a2332);
	text-decoration: none;
	transition: border-color 0.15s, color 0.15s;
	white-space: nowrap;
	background: transparent;
}

.rl-guia-btn-ghost:hover {
	border-color: var(--rl-coral, #ff6b35);
	color: var(--rl-coral, #ff6b35);
}

.rl-guia-related .rl-guia-btn-ghost {
	border-color: color-mix(in srgb, var(--cat-current, var(--rl-coral, #ff6b35)) 35%, transparent);
	color: var(--cat-current, var(--rl-text-primary, #1a2332));
}

.rl-guia-related .rl-guia-btn-ghost:hover {
	border-color: var(--cat-current, var(--rl-coral, #ff6b35));
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	background: color-mix(in srgb, var(--cat-current, var(--rl-coral, #ff6b35)) 8%, transparent);
}

/* ── Tablet: ranking 4-col → 3-col ── */
@media (max-width: 767.98px) {

	/* Ranking: drop rank column width slightly, keep 4-col but tighter */
	.rl-guia-ranking__item {
		grid-template-columns: 1.75rem 72px 1fr auto;
		gap: 0.5rem 0.75rem;
		padding: 1rem;
	}

	.rl-guia-ranking__item--first {
		grid-template-columns: 1.75rem 96px 1fr auto;
		padding: 1.25rem;
	}

	.rl-guia-ranking__item--first .rl-guia-ranking__thumb {
		width: 96px;
		height: 96px;
	}

	.rl-guia-ranking__item--first .rl-guia-ranking__rank {
		font-size: 1.875rem;
	}

	/* Atajos: ensure single-column on portrait tablet */
	.rl-guia-atajos__grid {
		grid-template-columns: 1fr;
	}

	/* Related grid: 2-col max on tablet */
	.rl-guia-related__grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}

	/* Related comps: single column */
	.rl-guia-related-comps__grid {
		grid-template-columns: 1fr;
	}
}

/* ── Mobile overrides ── */
@media (max-width: 599px) {

	/* Hero: tighter vertical rhythm */
	.rl-guia-hero {
		padding-block: clamp(2rem, 6vw, 3rem);
	}

	.rl-guia-hero__eyebrow {
		margin-bottom: 0.5rem;
	}

	.rl-guia-hero__title {
		font-size: clamp(1.5rem, 5vw, 2rem);
		margin: 0 0 0.75rem;
		max-width: 100%;
	}

	.rl-guia-hero__excerpt {
		font-size: 0.9375rem;
		line-height: 1.6;
		max-width: 100%;
		margin-bottom: 1rem;
	}

	.rl-guia-hero__summary {
		max-width: 100%;
		margin-bottom: 1rem;
	}

	.rl-guia-hero__meta {
		gap: 0.35rem 1rem;
		font-size: 0.8125rem;
	}

	/* Ranking: winner reflows to full-width head + body below a compact strip */
	.rl-guia-ranking__item--first {
		grid-template-columns: 2.25rem 80px 1fr auto;
		grid-template-areas:
			"rank thumb .    score"
			"head head  head head"
			"body body  body body";
		row-gap: 0.5rem;
	}

	.rl-guia-ranking__item--first .rl-guia-ranking__thumb {
		width: 80px;
		height: 80px;
	}

	/* Pros/cons: single column on mobile */
	.rl-guia-ranking__pros-cons {
		grid-template-columns: 1fr;
	}

	/* Ranking CTAs: full-width stack */
	.rl-guia-ranking__item .rl-guia-ranking__ctas {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.rl-guia-ranking__item .rl-guia-ranking__link {
		text-align: center;
	}

	/* Fit box: single column */
	.rl-guia-fit {
		grid-template-columns: 1fr;
	}

	/* Recap: full-width CTA + stacked info */
	.rl-guia-recap__item {
		flex-direction: column;
		align-items: stretch;
	}

	.rl-guia-recap__item .rl-guia-btn-ml {
		width: 100%;
		justify-content: center;
	}

	.rl-guia-recap__info {
		flex-direction: column;
		align-items: flex-start;
	}

	/* Related products: single column forced */
	.rl-guia-related__grid {
		grid-template-columns: 1fr;
	}

	/* Related CTAs: full-width stacked */
	.rl-guia-related__ctas {
		flex-direction: column;
		align-items: stretch;
	}

	.rl-guia-related__ctas .rl-guia-btn-ml--sm,
	.rl-guia-related__ctas .rl-guia-btn-ghost {
		width: 100%;
		justify-content: center;
		min-height: 44px;
	}

	/* FAQ: remove max-width constraint inside cards */
	.rl-guia-faq__a {
		max-width: 100%;
	}

	/* Content: remove max-width on paragraphs (already constrained by container) */
	.rl-guia-content p,
	.rl-guia-content ul,
	.rl-guia-content ol {
		max-width: 100%;
	}

	/* Content headings: tighter top margin */
	.rl-guia-content h2 {
		margin-top: 1.75rem;
	}

	.rl-guia-content h3 {
		margin-top: 1.25rem;
	}

	/* Related comps: single column */
	.rl-guia-related-comps__grid {
		grid-template-columns: 1fr;
	}

	/* Atajos jump link: ensure 44px touch target */
	.rl-guia-atajo__jump {
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* ── Non-first ranking items: riel de foto + título, cuerpo debajo ── */
	.rl-guia-ranking__item:not(.rl-guia-ranking__item--first) {
		grid-template-columns: 56px 1fr auto;
		grid-template-areas:
			"thumb head  score"
			"rank  body  body";
		column-gap: 0.75rem;
		row-gap: 0.4rem;
		padding: 0.875rem 1rem;
		align-items: start;
	}

	.rl-guia-ranking__item:not(.rl-guia-ranking__item--first) .rl-guia-ranking__thumb {
		width: 56px;
		height: 56px;
		display: block;
		align-self: start;
	}

	.rl-guia-ranking__item:not(.rl-guia-ranking__item--first) .rl-guia-ranking__rank {
		align-self: start;
		text-align: center;
		font-size: 1rem;
		padding-top: 0.35rem;
	}

	.rl-guia-ranking__item:not(.rl-guia-ranking__item--first) .rl-guia-ranking__head {
		align-self: center;
		min-width: 0;
	}

	.rl-guia-ranking__item:not(.rl-guia-ranking__item--first) .rl-guia-ranking__score-wrap {
		align-self: start;
	}

	.rl-guia-ranking__item:not(.rl-guia-ranking__item--first) .rl-guia-ranking__award {
		display: none;
	}

	/* Ghost "Análisis" oculto en móvil — accesible vía toggle Ver análisis */
	.rl-guia-ranking__item:not(.rl-guia-ranking__item--first) .rl-guia-btn-ghost--sm {
		display: none;
	}

	/* Ver análisis: botón pill para comunicar que es clickeable */
	.rl-guia-ranking__summary {
		border: 1.5px solid var(--cat-current, var(--rl-coral, #ff6b35));
		border-radius: 9999px;
		padding: 0.5rem 1.125rem;
		justify-content: center;
		gap: 0.5rem;
		margin-top: 0.625rem;
		font-size: 0.875rem;
		background: oklch(100% 0 0);
	}

	.rl-guia-ranking__details[open] > .rl-guia-ranking__summary {
		background: color-mix(in srgb, var(--cat-current, var(--rl-coral, #ff6b35)) 8%, oklch(100% 0 0));
	}

	/* ── Anchor bar: 2 filas en móvil — links arriba, CTA abajo ── */
	.rl-guia-anchor-bar {
		flex-wrap: wrap;
		overflow-x: visible;
		padding-inline: 0;
		gap: 0;
	}

	.rl-guia-anchor-bar__list {
		width: 100%;
		overflow-x: visible;
		flex-shrink: 0;
		padding-inline: 0;
		border-bottom: 1px solid oklch(93% 0.004 250);
	}

	.rl-guia-anchor-bar__list li {
		flex: 1;
	}

	.rl-guia-anchor-bar__list a {
		justify-content: center;
		padding-inline: 0.5rem;
	}

	.rl-guia-anchor-bar__ml {
		width: 100%;
		margin-left: 0;
		border-radius: 0;
		justify-content: center;
		font-size: 0.875rem;
		padding: 0.625rem 1rem;
		min-height: 44px;
	}
}

/* ═══ POST CONTENT ══════════════════════════════════════════════════════════ */
.rl-guia-content {
	background: oklch(100% 0 0);
	padding-block: clamp(3rem, 8vw, 5.5rem);
	overflow-x: clip;
}

@media (max-width: 767px) {

	.rl-guia-content {
		padding-inline: var(--wp--custom--spacing--md, 1.25rem);
	}
}

.rl-guia-content h2 {
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 800;
	color: var(--rl-ink, #191c1d);
	letter-spacing: -0.015em;
	line-height: 1.2;
	margin: 2.5rem 0 0.875rem;
	padding-bottom: 0.625rem;
	border-bottom: 2px solid var(--cat-current, var(--rl-coral, #ff6b35));
}

.rl-guia-content h3 {
	font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
	font-weight: 700;
	color: var(--rl-ink, #191c1d);
	letter-spacing: -0.01em;
	margin: 1.75rem 0 0.5rem;
}

.rl-guia-content p {
	font-size: 1rem;
	line-height: 1.72;
	color: oklch(28% 0.008 250);
	max-width: 68ch;
	margin: 0 0 1.125rem;
}

.rl-guia-content ul,
.rl-guia-content ol {
	max-width: 68ch;
	padding-left: 0;
	list-style: none;
	margin: 0 0 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.rl-guia-content li {
	font-size: 1rem;
	line-height: 1.65;
	color: oklch(28% 0.008 250);
	padding-left: 1.25rem;
	position: relative;
}

.rl-guia-content ul > li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--cat-current, var(--rl-coral, #ff6b35));
}

.rl-guia-content strong {
	font-weight: 700;
	color: var(--rl-ink, #191c1d);
}

.rl-guia-content a:not([class]) {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 1px;
}

/* ═══ REDUCED MOTION ════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

	.rl-guia-btn-ml,
	.rl-guia-btn-ghost,
	.rl-guia-anchor-bar__ml {
		transition: none;
		transform: none !important;
	}

	.rl-guia-ranking__summary::after {
		transition: none;
	}
}

/* ═══ SCORE RING DENOM (/10) — visible solo en contexto de guía ═════════════ */
.rl-guia-ranking .rl-score-ring__denom {
	font-size: 0.45em;
	font-weight: 600;
	opacity: 0.55;
	letter-spacing: 0;
	vertical-align: baseline;
}

/* ═══ HERO SUMMARY (bottom line box) ════════════════════════════════════════ */
.rl-guia-hero__summary {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	background: oklch(97.5% 0.004 80);
	border: 1px solid var(--rl-border-light, #eff1f6);
	border-radius: 10px;
	padding: 0.875rem 1rem;
	margin-bottom: 1.5rem;
	max-width: 56ch;
}

.rl-guia-hero__summary svg {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.rl-guia-hero__summary p {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--rl-ink, #191c1d);
	font-weight: 500;
	margin: 0;
}

/* ═══ RANKING METHODOLOGY TRUST SIGNAL ══════════════════════════════════════ */
.rl-guia-ranking__methodology {
	font-size: 0.8125rem;
	color: oklch(50% 0.01 250);
	margin: -0.75rem 0 1.5rem;
}

.rl-guia-ranking__methodology a {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	text-decoration: none;
	font-weight: 600;
}

.rl-guia-ranking__methodology a:hover {
	text-decoration: underline;
}

/* ═══ EXECUTIVE SUMMARY BOX (sobre el ranking) ══════════════════════════════ */
.rl-guia-executive-summary {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	background: oklch(98.5% 0.008 80);
	border: 1px solid var(--rl-border-light, #eff1f6);
	border-radius: 12px;
	padding: 1rem 1.125rem;
	margin-bottom: 1.75rem;
}

.rl-guia-executive-summary svg {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	flex-shrink: 0;
	margin-top: 0.2rem;
}

.rl-guia-executive-summary p {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--rl-ink, #191c1d);
	font-weight: 500;
	font-style: italic;
	margin: 0;
}

/* ═══ COMPARATIVAS RELACIONADAS ═════════════════════════════════════════════ */
.rl-guia-related-comps {
	background: oklch(100% 0 0);
	padding: clamp(1.5rem, 4vw, 2.5rem) 0;
	border-top: 1px solid var(--rl-border-light, #eff1f6);
}

.rl-guia-related-comps__heading {
	font-size: clamp(1rem, 2.5vw, 1.1875rem);
	font-weight: 700;
	color: var(--rl-ink, #191c1d);
	margin: 0 0 0.875rem;
}

.rl-guia-related-comps__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.625rem;
}

.rl-guia-related-comps__card {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.875rem 1rem;
	background: var(--rl-cloud, #f9f7f2);
	border-radius: 10px;
	text-decoration: none;
	transition: background 0.15s;
	min-height: 44px;
}

.rl-guia-related-comps__card:hover {
	background: oklch(94% 0.005 80);
}

.rl-guia-related-comps__chip {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	flex-shrink: 0;
	white-space: nowrap;
}

.rl-guia-related-comps__title {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--rl-ink, #191c1d);
	flex: 1;
	line-height: 1.35;
}

.rl-guia-related-comps__card svg {
	color: oklch(55% 0.01 250);
	flex-shrink: 0;
	margin-left: auto;
}

/* ═══ FAQ SECTION ════════════════════════════════════════════════════════════ */
.rl-guia-faq {
	background: var(--rl-cloud, #f9f7f2);
	padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.rl-guia-faq__heading {
	font-size: clamp(1.25rem, 3vw, 1.625rem);
	font-weight: 800;
	color: var(--rl-ink, #191c1d);
	letter-spacing: -0.015em;
	margin: 0 0 1.5rem;
}

.rl-guia-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	counter-reset: faq;
}

.rl-guia-faq__item {
	counter-increment: faq;
	background: oklch(100% 0 0);
	border-radius: 12px;
	padding: 1.25rem 1.375rem;
	border: 1.5px solid var(--rl-border-light, #eff1f6);
	transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.rl-guia-faq__item:hover {
	border-color: var(--cat-current, var(--rl-coral, #ff6b35));
	box-shadow: 0 4px 14px oklch(20% 0.01 250 / 0.06);
}

.rl-guia-faq__q {
	font-size: 1rem;
	font-weight: 700;
	color: var(--rl-ink, #191c1d);
	margin-bottom: 0;
	line-height: 1.4;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	list-style: none;
	cursor: pointer;
}

.rl-guia-faq__q::-webkit-details-marker {
	display: none;
}

details[open] > .rl-guia-faq__q {
	margin-bottom: 0.625rem;
}

.rl-guia-faq__q::before {
	content: counter(faq, decimal-leading-zero);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	flex-shrink: 0;
	opacity: 0.7;
}

.rl-guia-faq__q::after {
	content: "";
	flex-shrink: 0;
	margin-left: auto;
	width: 0.75rem;
	height: 0.75rem;
	border-right: 2px solid currentcolor;
	border-bottom: 2px solid currentcolor;
	transform: rotate(45deg) translateY(-2px);
	opacity: 0.4;
	transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

details[open] > .rl-guia-faq__q::after {
	transform: rotate(-135deg) translateY(-2px);
	opacity: 0.65;
}

.rl-guia-faq__a {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: oklch(35% 0.01 250);
	margin: 0;
	max-width: 68ch;
}

/* ═══ MOBILE STICKY CTA (sigue al TV en viewport) ═══════════════════════════ */
.rl-guia-sticky {
	display: none;
}

@media (max-width: 767px) {

	.rl-guia-sticky:not([hidden]) {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		position: fixed;
		left: 0.75rem;
		right: 0.75rem;
		bottom: 0.75rem;
		max-width: calc(100vw - 1.5rem); /* defensive: ICB overflow no expande el bar */
		overflow: hidden;
		z-index: 200;
		background: var(--rl-white, #fff);
		border: 1px solid var(--rl-border, #e2e5ed);
		border-radius: 14px;
		padding: 0.6rem 0.6rem 0.6rem 1rem;
		box-shadow: 0 8px 28px oklch(20% 0.02 250 / 0.18);
		transform: translateY(120%);
		transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
	}

	.rl-guia-sticky.is-visible {
		transform: translateY(0);
	}

	.rl-guia-sticky__info {
		display: flex;
		flex-direction: column;
		gap: 0.05rem;
		min-width: 0;
		flex: 1;
	}

	.rl-guia-sticky__name {
		font-size: 0.78rem;
		font-weight: 700;
		color: var(--rl-ink, #191c1d);
		line-height: 1.2;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.rl-guia-sticky__price {
		font-family: "JetBrains Mono", "JBM Fallback", "SF Mono", monospace;
		font-size: 0.875rem;
		font-weight: 800;
		color: var(--rl-ink, #191c1d);
		font-variant-numeric: tabular-nums;
	}

	.rl-guia-sticky__price:empty {
		display: none;
	}

	.rl-guia-sticky__btn {
		flex-shrink: 0;
	}

	/* Sticky CTA: ensure 44px touch target */
	.rl-guia-sticky .rl-guia-btn-ml--sm {
		min-height: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {

	.rl-guia-sticky:not([hidden]) {
		transition: none;
	}
}

/* ═══ COPY BAND (dark separator entre ranking y guía editorial) ═════════════ */
.rl-guia-copy-band {
	background: var(--rl-ink, #191c1d);
	padding: clamp(2.5rem, 7vw, 5rem) 0;
}

.rl-guia-copy-band .rl-container {
	max-width: 800px;
}

.rl-guia-copy-band__eyebrow {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	margin: 0 0 1rem;
	opacity: 0.85;
}

.rl-guia-copy-band__stat {
	font-size: clamp(5rem, 18vw, 10rem);
	font-weight: 800;
	line-height: 0.85;
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	letter-spacing: -0.05em;
	margin: 0 0 0.25rem;
	font-variant-numeric: tabular-nums;
}

.rl-guia-copy-band__headline {
	font-size: clamp(1.375rem, 4vw, 2.25rem);
	font-weight: 700;
	color: rgba(249, 247, 242, 0.92);
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0 0 1rem;
}

.rl-guia-copy-band__body {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(249, 247, 242, 0.55);
	max-width: 52ch;
	margin: 0;
}

/* ═══ RELATED PRODUCTS ══════════════════════════════════════════════════════ */
.rl-guia-related {
	padding: var(--section-pad-y, clamp(3rem, 8vw, 6rem)) 0;
	background: var(--rl-cream, #f9f7f2);
}

.rl-guia-related__heading {
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 700;
	color: var(--rl-ink, #191c1d);
	margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
	letter-spacing: -0.02em;
	padding-bottom: 0.6rem;
	border-bottom: 2px solid var(--cat-current, var(--rl-coral, #ff6b35));
}

.rl-guia-related__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: var(--card-gap, 1.5rem);
}

.rl-guia-related__card {
	background: var(--rl-white, #fff);
	border-radius: var(--card-radius, 12px);
	box-shadow: var(--card-shadow, 0 2px 12px rgba(0, 0, 0, 0.06));
	overflow: hidden;
	transition: box-shadow 0.2s, transform 0.2s;
	border-top: 3px solid var(--cat-current, var(--rl-coral, #ff6b35));
}

.rl-guia-related__card:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.rl-guia-related__thumb img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	display: block;
	background: var(--rl-cream, #f9f7f2);
	padding: 1rem;
}

.rl-guia-related__body {
	padding: 1rem 1.25rem 1.25rem;
}

.rl-guia-related__title {
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 0.5rem;
}

.rl-guia-related__title a {
	color: var(--rl-ink, #191c1d);
	text-decoration: none;
}

.rl-guia-related__title a:hover {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
}

.rl-guia-related__excerpt {
	font-size: 0.8125rem;
	color: var(--rl-text, #4a4a4a);
	line-height: 1.55;
	margin: 0;
}

/* Related CTAs container */
.rl-guia-related__ctas {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	margin-top: 0.75rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   CONVERSIÓN — atajos, precio, tabla, awards, recap, sticky
   ════════════════════════════════════════════════════════════════════════════ */

/* Tokens locales de conversión (no son colores de score: rojo de oferta + verde ahorro) */
.rl-guia-atajos,
.rl-guia-tabla,
.rl-guia-ranking,
.rl-guia-recap {
	--rl-deal: oklch(55% 0.2 25);
	--rl-save: oklch(46% 0.11 162);
}

/* ─── Utilidad ─────────────────────────────────────────────────────────────── */
.rl-u-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* ─── Bloque de precio (mono + tachado + chip de descuento) ─────────────────── */
.rl-guia-price {
	display: inline-flex;
	align-items: baseline;
	gap: 0.5rem;
	flex-wrap: wrap;
	font-family: "JetBrains Mono", "JBM Fallback", "SF Mono", "Fira Code", monospace;
}

.rl-guia-price__current {
	font-size: 1.0625rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--rl-ink, #191c1d);
	font-variant-numeric: tabular-nums;
}

.rl-guia-price__old {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--rl-text-muted, #5a6478);
	text-decoration: line-through;
}

.rl-guia-price__off {
	font-family: "Plus Jakarta Sans", sans-serif;
	display: inline-flex;
	align-items: center;
	background: var(--rl-deal, oklch(55% 0.2 25));
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 6px;
	letter-spacing: 0.01em;
	font-variant-numeric: tabular-nums;
}

.rl-guia-price--lg .rl-guia-price__current {
	font-size: 1.625rem;
}

.rl-guia-price--lg .rl-guia-price__old {
	font-size: 1rem;
}

.rl-guia-price--sm .rl-guia-price__current {
	font-size: 0.9375rem;
}

.rl-guia-price--sm .rl-guia-price__old {
	font-size: 0.75rem;
}

.rl-guia-save {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--rl-save, oklch(46% 0.11 162));
}

/* ─── Botón ML a ancho completo ─────────────────────────────────────────────── */
.rl-guia-btn-ml--block {
	width: 100%;
	justify-content: center;
}

/* ─── TRUST / DISCLOSURE BAND ───────────────────────────────────────────────── */
.rl-guia-trust {
	background: var(--rl-white, #fff);
	border-bottom: 1px solid var(--rl-border-light, #eff1f6);
	padding-block: 0.875rem;
}

.rl-guia-trust__inner {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
}

.rl-guia-trust__icon {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.rl-guia-trust p {
	font-size: 0.8125rem;
	line-height: 1.55;
	color: var(--rl-text-secondary, #5a6478);
	margin: 0;
	max-width: 80ch;
}

.rl-guia-trust a {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	font-weight: 600;
	text-decoration: none;
}

.rl-guia-trust a:hover {
	text-decoration: underline;
}

/* ─── ATAJOS / QUICK PICKS ──────────────────────────────────────────────────── */
.rl-guia-atajos {
	background: var(--rl-cream, #f9f7f2);
	padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
}

.rl-guia-atajos__head {
	margin-bottom: 1.5rem;
}

.rl-guia-atajos__eyebrow {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	margin-bottom: 0.4rem;
}

.rl-guia-atajos__heading {
	font-size: clamp(1.375rem, 3.2vw, 2rem);
	font-weight: 800;
	color: var(--rl-ink, #191c1d);
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0;
	max-width: 22ch;
}

.rl-guia-atajos__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr));
	gap: clamp(0.75rem, 2vw, 1.125rem);
}

.rl-guia-atajo {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	background: var(--rl-white, #fff);
	border: 1.5px solid var(--rl-border-light, #eff1f6);
	border-radius: 16px;
	padding: 1.25rem;
	position: relative;
	box-shadow: 0 1px 2px oklch(22% 0.02 250 / 0.05), 0 8px 22px oklch(22% 0.02 250 / 0.05);
	transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.rl-guia-atajo:hover {
	border-color: var(--rl-border, #e2e5ed);
	box-shadow: 0 4px 22px oklch(22% 0.02 250 / 0.1);
}

.rl-guia-atajo:first-child {
	border-color: var(--cat-current, oklch(70% 0.14 35));
	border-width: 2px;
}

.rl-guia-atajo:first-child::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: var(--cat-current, oklch(60% 0.14 35));
	border-radius: 14px 14px 0 0;
}

.rl-guia-atajo__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
}

.rl-guia-atajo__tag {
	display: inline-flex;
	align-items: center;
	background: var(--rl-ink, #191c1d);
	color: var(--rl-cream, #f9f7f2);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
}

.rl-guia-atajo:first-child .rl-guia-atajo__tag {
	background: var(--cat-current, var(--rl-coral, #ff6b35));
	color: #fff;
}

.rl-guia-atajo__ring {
	flex-shrink: 0;
}

.rl-guia-atajo__title {
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
	letter-spacing: -0.01em;
}

.rl-guia-atajo__title a {
	color: var(--rl-ink, #191c1d);
	text-decoration: none;
}

.rl-guia-atajo__title a:hover {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
}

.rl-guia-atajo__ideal {
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--rl-text-secondary, #5a6478);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.rl-guia-atajo .rl-guia-price {
	margin-top: auto;
}

.rl-guia-atajo__ctas {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-top: 0.25rem;
}

.rl-guia-atajo__jump {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--rl-text-secondary, #5a6478);
	text-decoration: none;
	text-align: center;
	padding: 0.35rem;
	min-height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rl-guia-atajo__jump:hover {
	color: var(--rl-ink, #191c1d);
}

/* ─── TABLA COMPARATIVA ─────────────────────────────────────────────────────── */
.rl-guia-tabla {
	background: var(--rl-white, #fff);
	padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}

.rl-guia-tabla__heading {
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 800;
	color: var(--rl-ink, #191c1d);
	letter-spacing: -0.015em;
	margin: 0 0 0.3rem;
}

.rl-guia-tabla__hint {
	font-size: 0.8125rem;
	color: var(--rl-text-muted, #5a6478);
	margin: 0 0 1.25rem;
}

.rl-guia-tabla__hint strong {
	color: var(--rl-ink, #191c1d);
	font-weight: 700;
}

.rl-guia-tabla__scroll {
	position: relative; /* containing block for abs-positioned descendants (rl-u-visually-hidden) */
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--rl-border-light, #eff1f6);
	border-radius: 14px;
}

.rl-guia-tabla__table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.rl-guia-tabla__table thead th {
	text-align: left;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--rl-text-muted, #5a6478);
	background: var(--rl-cream, #f9f7f2);
	padding: 0.75rem 0.875rem;
	white-space: nowrap;
	border-bottom: 1px solid var(--rl-border-light, #eff1f6);
}

.rl-guia-tabla__th--num {
	text-align: right;
}

.rl-guia-tabla__sort {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	font: inherit;
	color: inherit;
	text-transform: inherit;
	letter-spacing: inherit;
}

.rl-guia-tabla__sort:hover {
	color: var(--rl-ink, #191c1d);
}

.rl-guia-tabla__caret {
	font-size: 0.85em;
	opacity: 0.55;
}

.rl-guia-tabla__table th[aria-sort="descending"] .rl-guia-tabla__caret,
.rl-guia-tabla__table th[aria-sort="ascending"] .rl-guia-tabla__caret {
	opacity: 1;
	color: var(--cat-current, var(--rl-coral, #ff6b35));
}

.rl-guia-tabla__table tbody td {
	padding: 0.75rem 0.875rem;
	border-bottom: 1px solid var(--rl-border-light, #eff1f6);
	vertical-align: middle;
}

.rl-guia-tabla__table tbody tr:last-child td {
	border-bottom: 0;
}

.rl-guia-tabla__table tbody tr:hover {
	background: var(--rl-cream, #f9f7f2);
}

.rl-guia-tabla__rank {
	font-weight: 800;
	color: var(--rl-text-muted, #5a6478);
	font-variant-numeric: tabular-nums;
	width: 2rem;
}

.rl-guia-tabla__rank.is-winner {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
}

.rl-guia-tabla__model a {
	font-weight: 700;
	color: var(--rl-ink, #191c1d);
	text-decoration: none;
	line-height: 1.3;
}

.rl-guia-tabla__model a:hover {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
}

.rl-guia-tabla__award {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--rl-text-secondary, #5a6478);
	white-space: nowrap;
}

.rl-guia-tabla__num {
	text-align: right;
	font-family: "JetBrains Mono", "JBM Fallback", "SF Mono", monospace;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.rl-guia-tabla__num strong {
	font-weight: 800;
	color: var(--rl-ink, #191c1d);
}

.rl-guia-tabla__denom {
	font-size: 0.75em;
	opacity: 0.5;
}

.rl-guia-tabla__num .rl-guia-price__off {
	font-family: "Plus Jakarta Sans", sans-serif;
}

.rl-guia-tabla__dash {
	color: var(--rl-text-muted, #5a6478);
}

.rl-guia-tabla__price {
	font-family: "JetBrains Mono", "JBM Fallback", "SF Mono", monospace;
	font-weight: 800;
	color: var(--rl-ink, #191c1d);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.rl-guia-tabla__buy {
	text-align: right;
	white-space: nowrap;
}

/* ─── RANKING: award pill, fit box, cross-sell, reassure ────────────────────── */
.rl-guia-ranking__award {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	align-self: flex-start;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--rl-text-secondary, #5a6478);
	background: oklch(20% 0.01 250 / 0.05);
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
}

.rl-guia-ranking__award--first {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	background: color-mix(in oklch, var(--cat-current, #ff6b35) 12%, transparent);
}

.rl-guia-fit {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.625rem;
	margin: 0.35rem 0 0.2rem;
}

.rl-guia-fit__col {
	border-radius: 10px;
	padding: 0.7rem 0.85rem;
	background: var(--rl-cream, #f9f7f2);
}

.rl-guia-fit__col--yes {
	background: color-mix(in oklch, var(--rl-save, oklch(46% 0.11 162)) 9%, var(--rl-white, #fff));
}

.rl-guia-fit__col--no {
	background: oklch(20% 0.01 250 / 0.04);
}

.rl-guia-fit__label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0.2rem;
}

.rl-guia-fit__col--yes .rl-guia-fit__label {
	color: var(--rl-save, oklch(46% 0.11 162));
}

.rl-guia-fit__col--no .rl-guia-fit__label {
	color: var(--rl-text-muted, #5a6478);
}

.rl-guia-fit__col p {
	font-size: 0.84375rem;
	line-height: 1.45;
	color: var(--rl-ink, #191c1d);
	margin: 0;
}

.rl-guia-ranking__crosssell {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.8125rem;
	line-height: 1.4;
	color: var(--rl-text-secondary, #5a6478);
	margin: 0.1rem 0 0;
}

.rl-guia-ranking__crosssell svg {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	flex-shrink: 0;
}

.rl-guia-ranking__crosssell a {
	color: var(--rl-ink, #191c1d);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rl-guia-ranking__crosssell a:hover {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
}

.rl-guia-ranking__reassure {
	flex-basis: 100%;
	width: 100%;
	font-size: 0.75rem;
	color: var(--rl-text-muted, #5a6478);
	margin: 0.4rem 0 0;
}

/* El precio dentro del foot ocupa su propia línea a la izquierda */
.rl-guia-ranking__foot .rl-guia-price {
	margin-right: auto;
}

.rl-guia-ranking__item--first .rl-guia-ranking__ctas {
	flex-wrap: wrap;
}

.rl-guia-ranking__item--first .rl-guia-ranking__foot {
	row-gap: 0.6rem;
}

/* ─── RECAP de ganadores (segunda rampa de salida) ──────────────────────────── */
.rl-guia-recap {
	background: var(--rl-cream, #f9f7f2);
	padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}

.rl-guia-recap__heading {
	font-size: clamp(1.25rem, 3vw, 1.625rem);
	font-weight: 800;
	color: var(--rl-ink, #191c1d);
	letter-spacing: -0.015em;
	margin: 0 0 1.25rem;
}

.rl-guia-recap__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.rl-guia-recap__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--rl-white, #fff);
	border: 1px solid var(--rl-border-light, #eff1f6);
	border-radius: 12px;
	padding: 0.875rem 1.125rem;
}

.rl-guia-recap__info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem 0.875rem;
	flex: 1;
	min-width: 0;
}

.rl-guia-recap__tag {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--cat-current, var(--rl-coral, #ff6b35));
	flex-shrink: 0;
}

.rl-guia-recap__model {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--rl-ink, #191c1d);
	text-decoration: none;
	line-height: 1.3;
}

.rl-guia-recap__model:hover {
	color: var(--cat-current, var(--rl-coral, #ff6b35));
}

.rl-guia-recap__item .rl-guia-btn-ml {
	flex-shrink: 0;
}

/* ─── Móvil: atajos CTA, fit box, foot ──────────────────────────────────────── */
@media (max-width: 599px) {

	.rl-guia-fit {
		grid-template-columns: 1fr;
	}

	.rl-guia-ranking__item .rl-guia-ranking__ctas {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.rl-guia-ranking__item .rl-guia-ranking__link {
		text-align: center;
	}

	.rl-guia-recap__item {
		flex-direction: column;
		align-items: stretch;
	}

	.rl-guia-recap__item .rl-guia-btn-ml {
		width: 100%;
		justify-content: center;
	}

	.rl-guia-recap__info {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ─── Reduced motion ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

	.rl-guia-atajo,
	.rl-guia-btn-ml--block {
		transition: none;
	}
}

/* ─── Offset de anclas bajo header + anchor bar sticky ──────────────────────── */
#atajos,
#tabla,
#ranking,
#guia,
.rl-guia-ranking__item[id] {
	scroll-margin-top: calc(var(--rl-header-height, 76px) + 58px);
}

/* ═══ CONVERSIÓN v2.1 (2026-06-09) ══════════════════════════════════════════
   Atajos con imagen de producto, badge de frescura de precio,
   tabla móvil con columna Televisor sticky (Premio se oculta <600px). */

/* ── Atajos: imagen de producto ── */
.rl-guia-atajo__media {
	display: block;
	height: 124px;
	margin: 0.9rem 0 0.15rem;
	border-radius: 10px;
	background: var(--rl-cloud, #f9f7f2);
	overflow: hidden;
}

.rl-guia-atajo__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.2s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}

.rl-guia-atajo:hover .rl-guia-atajo__media img {
	transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {

	.rl-guia-atajo__media img,
	.rl-guia-atajo:hover .rl-guia-atajo__media img {
		transition: none;
		transform: none;
	}
}

/* ── Badge de frescura de precio ── */
.rl-guia-fresh {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.15rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--rl-save, oklch(46% 0.11 162));
}

.rl-guia-fresh svg {
	flex-shrink: 0;
}

.rl-guia-atajo .rl-guia-fresh {
	display: flex;
}

/* ── Tabla móvil: CTA visible sin perder contexto ── */
@media (max-width: 599px) {

	/* Premio ya se ve en las cards del ranking; fuera de la tabla angosta */
	.rl-guia-tabla__table th:nth-child(3),
	.rl-guia-tabla__table td:nth-child(3) {
		display: none;
	}

	/* Columnas # y Televisor fijas durante el scroll-x */
	.rl-guia-tabla__table th:first-child,
	.rl-guia-tabla__table td:first-child {
		position: sticky;
		left: 0;
		z-index: 2;
		width: 2rem;
		min-width: 2rem;
		background: var(--rl-white, #fff);
	}

	.rl-guia-tabla__table th:nth-child(2),
	.rl-guia-tabla__table td:nth-child(2) {
		position: sticky;
		left: 2rem;
		z-index: 2;
		min-width: 8.5rem;
		max-width: 10.5rem;
		background: var(--rl-white, #fff);
		box-shadow: 6px 0 8px -6px rgba(22, 38, 59, 0.18);
	}

	.rl-guia-tabla__table thead th:first-child,
	.rl-guia-tabla__table thead th:nth-child(2) {
		background: var(--rl-cloud, #f9f7f2);
		z-index: 3;
	}

	/* Table buy button: 44px touch target */
	.rl-guia-tabla__buy .rl-guia-btn-ml--sm {
		min-height: 44px;
		display: inline-flex;
		align-items: center;
	}

	/* Atajos: single column, reduced image height */
	.rl-guia-atajos__grid {
		grid-template-columns: 1fr;
	}

	.rl-guia-atajo__media {
		height: 100px;
	}
}

/* ── Tabla premium: card flotando sobre el Nube ── */
.rl-guia-tabla {
	background: transparent;
}

.rl-guia-tabla__scroll {
	background: var(--rl-white, #fff);
	border: 1px solid var(--rl-border-light, #eff1f6);
	border-radius: var(--card-radius, 20px);
	box-shadow: 0 1px 2px rgba(22, 38, 59, 0.06), 0 8px 24px rgba(22, 38, 59, 0.06);
}

.rl-guia-tabla__table tbody tr {
	transition: background 0.15s;
}

@media (hover: hover) {

	.rl-guia-tabla__table tbody tr:hover {
		background: var(--rl-cloud, #f9f7f2);
	}
}

.rl-guia-tabla__table tbody tr:has(.rl-guia-tabla__rank.is-winner) {
	background: color-mix(in srgb, var(--cat-current, #ff6b35) 5%, var(--rl-white, #fff));
}

.rl-guia-tabla__num strong.is-high {
	color: var(--rl-score-green, #047a55);
}

.rl-guia-tabla__num strong.is-mid {
	color: var(--rl-score-orange, #c2600a);
}

.rl-guia-tabla__num strong.is-low {
	color: var(--rl-score-red, #c92020);
}

/* ── Related premium: score + precio = info de decisión ── */
.rl-guia-related__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	margin-top: 0.7rem;
}

.rl-guia-related__score {
	display: inline-flex;
	align-items: baseline;
	gap: 0.1rem;
	padding: 0.18rem 0.6rem;
	border-radius: 999px;
	font-size: 0.84rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.rl-guia-related__score span {
	font-size: 0.7em;
	font-weight: 600;
	opacity: 0.6;
}

.rl-guia-related__score.is-high {
	color: #047a55;
	background: #eafaf4;
}

.rl-guia-related__score.is-mid {
	color: #c2600a;
	background: #fff4e6;
}

.rl-guia-related__score.is-low {
	color: #c92020;
	background: #fef1f1;
}

.rl-guia-related__price {
	font-family: "JetBrains Mono", ui-monospace, monospace;
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--rl-ink, #191c1d);
}

/* Author card suprimida en guia — se agregará a todas las páginas en una fase posterior */
.rl-guia-content .rl-author {
	display: none;
}

/* ═══ VERY SMALL PHONES (≤480px) ════════════════════════════════════════════
   Extra adjustments for screens below 480px to prevent overflow and
   maintain readability. */
@media (max-width: 480px) {

	/* Ranking: tighter item padding, smaller thumb on non-first */
	.rl-guia-ranking__item {
		grid-template-columns: 1.75rem 60px 1fr auto;
		gap: 0.4rem 0.5rem;
		padding: 0.875rem;
	}

	.rl-guia-ranking__thumb {
		width: 60px;
		height: 60px;
	}

	.rl-guia-ranking__item:not(.rl-guia-ranking__item--first) {
		grid-template-columns: 52px 1fr auto;
		column-gap: 0.625rem;
	}

	.rl-guia-ranking__item:not(.rl-guia-ranking__item--first) .rl-guia-ranking__thumb {
		width: 52px;
		height: 52px;
	}

	/* First item: still manageable at narrow screens */
	.rl-guia-ranking__item--first {
		grid-template-columns: 1.75rem 72px 1fr auto;
		padding: 1rem;
	}

	.rl-guia-ranking__item--first .rl-guia-ranking__thumb {
		width: 72px;
		height: 72px;
	}

	.rl-guia-ranking__item--first .rl-guia-ranking__rank {
		font-size: 1.5rem;
	}

	/* Rank number: smaller on very small screens */
	.rl-guia-ranking__rank {
		font-size: 1.25rem;
	}

	/* FAQ: tighter padding */
	.rl-guia-faq__item {
		padding: 1rem 1rem;
	}

	/* Atajos heading: tighter line */
	.rl-guia-atajos__heading {
		max-width: 100%;
	}

	/* Copy band stat: prevent clipping */
	.rl-guia-copy-band__stat {
		font-size: clamp(4rem, 18vw, 7rem);
	}

	/* Executive summary: tighter padding */
	.rl-guia-executive-summary {
		padding: 0.75rem 0.875rem;
	}

	.rl-guia-executive-summary p {
		font-size: 0.875rem;
	}

	/* Anchor bar: smaller text to fit more links */
	.rl-guia-anchor-bar__list a {
		font-size: 0.8125rem;
		padding: 0.5rem 0.75rem;
	}

	.rl-guia-anchor-bar__ml {
		font-size: 0.75rem;
		padding: 0.45rem 0.75rem;
	}
}
