/* Pridevana — favoritos, continuar viendo, 404/búsqueda */

.pv-follow-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 10px 0 4px;
	padding: 8px 14px;
	border: 0;
	border-radius: 999px;
	background: #ff2d55;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.02em;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(255, 45, 85, 0.28);
	transition: transform 0.18s ease, background 0.18s ease;
}
.pv-follow-btn:hover {
	background: #e0264b;
	transform: translateY(-1px);
}
.pv-follow-btn.is-on {
	background: #111118;
	box-shadow: none;
}
.pv-follow-btn.is-on:hover {
	background: #2a2a32;
}
.pv-follow-btn__ico::before {
	content: "+";
	font-weight: 900;
	font-size: 16px;
	line-height: 1;
}
.pv-follow-btn.is-on .pv-follow-btn__ico::before {
	content: "✓";
}
.pv-follow-btn--pulse {
	transform: scale(1.04);
}

.pv-home-rail {
	margin: 6px 0 20px;
}
.pv-home-rail__empty {
	margin: 0;
	padding: 12px 4px;
	color: #5a5a68;
	font-size: 13.5px;
	font-weight: 600;
}
.pv-home-rail__row {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 2px 2px 8px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}
.pv-home-rail__row::-webkit-scrollbar {
	height: 6px;
}
.pv-home-rail__row::-webkit-scrollbar-thumb {
	background: rgba(255, 45, 85, 0.35);
	border-radius: 99px;
}
.pv-rail-card {
	flex: 0 0 220px;
	scroll-snap-align: start;
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 10px;
	align-items: center;
	padding: 6px;
	border-radius: 12px;
	background: #faf9fb;
	border: 1px solid rgba(255, 45, 85, 0.16);
	text-decoration: none !important;
	color: inherit;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.pv-rail-card:hover {
	border-color: rgba(255, 45, 85, 0.45);
	box-shadow: 0 0 0 2px rgba(255, 45, 85, 0.1);
}
.pv-rail-card__poster {
	position: relative;
	display: block;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #eee;
}
.pv-rail-card__poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.pv-rail-card__badge {
	position: absolute;
	top: 4px;
	left: 4px;
	padding: 2px 6px;
	border-radius: 999px;
	background: #ff2d55;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	font-style: normal;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.pv-rail-card__data {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.pv-rail-card__data strong {
	font-size: 13px;
	font-weight: 750;
	color: #111118;
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.pv-rail-card__data small {
	font-size: 11.5px;
	color: #5a5a68;
	font-weight: 600;
}
.pv-rail-card.has-new {
	border-color: rgba(255, 45, 85, 0.55);
}

/* 404 / búsqueda vacía */
.pv-empty {
	max-width: 560px;
	margin: 24px auto 40px;
	padding: 28px 22px;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(255, 45, 85, 0.22);
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(255, 45, 85, 0.08);
}
.pv-empty__code {
	display: inline-block;
	margin: 0 0 10px;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(255, 45, 85, 0.12);
	color: #c91845;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.06em;
}
.pv-empty__title {
	margin: 0 0 8px !important;
	font-size: 28px !important;
	font-weight: 800 !important;
	color: #111118 !important;
}
.pv-empty__text {
	margin: 0 0 18px;
	color: #5a5a68;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
}
.pv-empty__search {
	display: flex;
	gap: 8px;
	margin: 0 0 16px;
}
.pv-empty__search input {
	flex: 1;
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid rgba(255, 45, 85, 0.28);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	background: #faf9fb;
}
.pv-empty__search button {
	padding: 12px 18px;
	border: 0;
	border-radius: 999px;
	background: #ff2d55;
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}
.pv-empty__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}
.pv-empty__links a {
	display: inline-flex;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 45, 85, 0.08);
	color: #c91845 !important;
	font-size: 12.5px;
	font-weight: 800;
	text-decoration: none !important;
}
.pv-empty__links a:hover {
	background: #ff2d55;
	color: #fff !important;
}
body.pv-empty-page .module .content header h1 {
	color: #111118 !important;
}
body.pv-home-preview .pv-empty__title {
	color: #111118 !important;
}

@media (max-width: 640px) {
	.pv-rail-card {
		flex: 0 0 190px;
	}
	.pv-empty {
		margin: 12px 0 28px;
		padding: 22px 16px;
	}
	.pv-empty__title {
		font-size: 22px !important;
	}
}
