.core-catalog-page {
	--core-catalog-gap: 14px;
	--core-catalog-radius: 10px;
	--core-catalog-bg: #f1f1f1;
	--core-catalog-text: #111111;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding: 0 10px 0;
	background: var(--core-catalog-bg);
	color: var(--core-catalog-text);
	font-family: "Inter Tight", Arial, sans-serif;
}

.core-catalog-page *,
.core-catalog-page *::before,
.core-catalog-page *::after {
	box-sizing: inherit;
}

/* Section title — box properties derived only from fp-titlebox */
.core-catalog-hero {
	display: block;
	width: 100%;
	min-height: 0;
	padding: 48px 3.5vw;
	border-radius: var(--core-catalog-radius);
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
}

.core-catalog-hero h1 {
	margin: 0;
	font-family: "Inter Tight", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none !important;
	font-size: 64px;
	line-height: 1.06;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}



@media (max-width: 900px) {
	.core-catalog-hero h1 {
		font-size: 34px;
		line-height: 1.10;
	}
}

/* Filter system */
.core-catalog-controls {
	position: sticky;
	top: calc(var(--fetean-site-header-height, 110px) + 2px);
	z-index: 20;
	margin-top: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	isolation: isolate;
}

.core-catalog-sticky-sentinel {
	display: block;
	width: 1px;
	height: 1px;
	margin: -1px 0 0;
	pointer-events: none;
}

.core-catalog-controls.is-stuck {
	--core-sticky-background-color: rgba(255, 255, 255, 0.70) !important;
}

.core-catalog-controls.is-stuck::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: -10px;
	left: -10px;
	right: -10px;
	z-index: -1;
	width: auto;
	background: var(--core-sticky-background-color);
	transform: none;
	pointer-events: none;
}


.core-catalog-toolbar {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	width: 100%;
	min-height: 76px;
	padding: 18px 20px;
}

.core-catalog-filter-column {
	min-width: 0;
	padding: 0 18px;
}

.core-catalog-filter-column + .core-catalog-filter-column {
	border-left: 1px solid rgba(0,0,0,.10);
}


.core-catalog-genre {
	flex: 0 1 auto;
	max-width: none;
}

.core-catalog-extra {
	flex: 0 1 auto;
}

.core-catalog-duration {
	flex: 1 1 285px;
	min-width: 285px;
}

.core-catalog-language {
	position: relative;
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	width: max-content;
	min-height: 40px;
}

.core-catalog-language-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: auto;
	margin: 0;
	padding: 8px 0 7px;
	border: 0;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	background: transparent;
	color: #777;
	font: inherit;
	font-size: 15px;
	font-weight: 470;
	line-height: 1;
	text-align: left;
	cursor: pointer;
	transition: color 160ms ease, border-color 160ms ease;
}

.core-catalog-language-toggle:hover,
.core-catalog-language-toggle:focus-visible,
.core-catalog-language.is-open .core-catalog-language-toggle {
	color: #111;
	outline: 0;
}

.core-catalog-language.has-selection .core-catalog-language-toggle {
	border-bottom-color: #111;
	color: #111;
	font-weight: 650;
}

.core-catalog-language-toggle svg {
	width: 12px;
	height: 8px;
	flex: 0 0 12px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	transition: transform 180ms ease;
}

.core-catalog-language.is-open .core-catalog-language-toggle svg {
	transform: rotate(180deg);
}

.core-catalog-language-menu {
	position: absolute;
	top: calc(100% + 9px);
	left: 18px;
	z-index: 40;
	display: grid;
	grid-template-columns: max-content;
	gap: 3px;
	width: max-content;
	min-width: 0;
	max-width: none;
	padding: 8px;
	border: 1px solid rgba(0,0,0,.11);
	border-radius: 9px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0,0,0,.14);
}

.core-catalog-language-menu[hidden] {
	display: none !important;
}

.core-catalog-language-all,
.core-catalog-language-option {
	display: block;
	width: 100%;
	min-height: 34px;
	margin: 0;
	padding: 7px 9px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: #555;
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.15;
	text-align: left;
	white-space: nowrap;
	cursor: pointer;
}

.core-catalog-language-all:hover,
.core-catalog-language-all:focus-visible,
.core-catalog-language-option:hover,
.core-catalog-language-option:focus-visible {
	background: #f1f1f1;
	color: #111;
	outline: 0;
}

.core-catalog-language-all.is-active,
.core-catalog-language-option.is-active {
	background: #f1f1f1;
	color: #111;
	font-weight: 650;
}

.core-catalog-genre-options,
.core-catalog-choice-options {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px 14px;
	align-items: center;
	min-height: 40px;
}

.core-catalog-choice-options {
	gap: 4px 16px;
	white-space: nowrap;
}

.core-catalog-genre-options {
	white-space: nowrap;
	overflow: hidden;
}

.core-catalog-genre-options button,
.core-catalog-choice-options button {
	display: inline-grid;
	grid-template-areas: "label";
	margin: 0;
	padding: 8px 0 7px;
	border: 0;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	background: transparent;
	color: #777;
	font: inherit;
	font-size: 15px;
	font-weight: 470;
	line-height: 1;
	cursor: pointer;
	transition:
		color 160ms ease,
		border-color 160ms ease;
}

.core-catalog-genre-options button > span,
.core-catalog-genre-options button::after,
.core-catalog-choice-options button > span,
.core-catalog-choice-options button::after {
	grid-area: label;
}

.core-catalog-genre-options button::after,
.core-catalog-choice-options button::after {
	content: attr(data-label);
	font-weight: 650;
	visibility: hidden;
	pointer-events: none;
}

.core-catalog-genre-options button:hover,
.core-catalog-genre-options button:focus-visible,
.core-catalog-choice-options button:hover,
.core-catalog-choice-options button:focus-visible {
	color: #111;
	outline: 0;
}

.core-catalog-genre-options button.is-active,
.core-catalog-choice-options button.is-active {
	border-bottom-color: #111;
	color: #111;
	font-weight: 650;
}

.core-catalog-duration-inline {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.core-catalog-range {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	height: 40px;
}

.core-catalog-range-track {
	position: absolute;
	top: 50%;
	right: 3px;
	left: 3px;
	height: 4px;
	background: #d9d9d9;
	transform: translateY(-50%);
	overflow: hidden;
}

.core-catalog-range-track span {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #363636;
}

.core-catalog-range input[type="range"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	pointer-events: none;
}

.core-catalog-range input[type="range"]::-webkit-slider-runnable-track {
	height: 4px;
	background: transparent;
}

.core-catalog-range input[type="range"]::-webkit-slider-thumb {
	width: 16px;
	height: 16px;
	margin-top: -6px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: #222;
	box-shadow: 0 1px 5px rgba(0,0,0,.20);
	-webkit-appearance: none;
	appearance: none;
	pointer-events: auto;
	cursor: grab;
}

.core-catalog-range input[type="range"]::-moz-range-track {
	height: 4px;
	background: transparent;
}

.core-catalog-range input[type="range"]::-moz-range-thumb {
	width: 12px;
	height: 12px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: #222;
	box-shadow: 0 1px 5px rgba(0,0,0,.20);
	pointer-events: auto;
	cursor: grab;
}

.core-catalog-range-value {
	flex: 0 0 auto;
	display: block;
	min-width: 62px;
	color: #4f4f4f;
	font-family: "Roboto Mono", monospace;
	font-size: 13px;
	font-weight: 650;
	letter-spacing: -.035em;
	line-height: 1;
	text-align: right;
	white-space: nowrap;
	pointer-events: none;
}

/* Catálogo: galería visual compacta; la ficha completa vive en el detalle. */
.core-catalog-grid {
	margin-top: 10px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--core-catalog-gap);
	align-items: stretch;
}

.core-catalog-card {
	min-width: 0;
}

.core-catalog-card[hidden] {
	display: none !important;
}

.core-catalog-card-link {
	position: relative;
	display: block;
	height: 100%;
	border: 1px solid rgba(0,0,0,.10);
	border-radius: var(--core-catalog-radius);
	color: #111;
	text-decoration: none;
	overflow: hidden;
	isolation: isolate;
	background: rgba(255,255,255,.10);
	transition:
		background-color .22s ease,
		border-color .22s ease;
}

.core-catalog-card-link::before {
	content: "";
	position: absolute;
	inset: -32px;
	z-index: -3;
	background-image: var(--core-card-poster);
	background-position: center;
	background-size: cover;
	filter: blur(46px) saturate(1.04) brightness(1.02);
	transform: scale(1.20);
	opacity: .92;
	transition: opacity 180ms ease;
}

.core-catalog-card-link::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.72)),
		radial-gradient(
			circle at 16% 10%,
			rgba(255,255,255,.76),
			rgba(255,255,255,.14) 42%,
			rgba(255,255,255,.44) 100%
		),
		rgba(255,255,255,.38);
	opacity: 1;
	transition:
		background 180ms ease,
		opacity 180ms ease;
}

.core-catalog-card-link:hover,
.core-catalog-card-link:focus-visible {
	border-color: rgba(0,0,0,.26);
	color: #111;
	outline: 0;
	background: rgba(255,255,255,.06);
}

.core-catalog-card-link:focus-visible {
	box-shadow: 0 0 0 2px rgba(0,0,0,.12);
}

.core-catalog-card-link:hover::before,
.core-catalog-card-link:focus-visible::before {
	opacity: .98;
}

.core-catalog-card-link:hover::after,
.core-catalog-card-link:focus-visible::after {
	opacity: .92;
	background:
		linear-gradient(180deg, rgba(255,255,255,.50), rgba(255,255,255,.66)),
		radial-gradient(
			circle at 16% 10%,
			rgba(255,255,255,.70),
			rgba(255,255,255,.10) 42%,
			rgba(255,255,255,.38) 100%
		),
		rgba(255,255,255,.32);
}

.core-catalog-card-surface {
	display: flex;
	height: 100%;
	min-width: 0;
	flex-direction: column;
}

.core-catalog-card-poster {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1.41421356237;
	overflow: hidden;
	background: rgba(255,255,255,.42);
}

.core-catalog-card-poster::after {
	content: "+";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: block;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 116px;
	font-weight: 200;
	line-height: 1;
	text-shadow: 0 2px 10px rgba(0,0,0,.58);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(.82);
	transition:
		opacity 180ms ease,
		transform 240ms cubic-bezier(.2,.75,.25,1);
}

.core-catalog-card-link:hover .core-catalog-card-poster::after,
.core-catalog-card-link:focus-visible .core-catalog-card-poster::after {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.core-catalog-card-poster img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transform: scale(1);
	transform-origin: center center;
	transition: transform 320ms cubic-bezier(.2,.75,.25,1);
}

.core-catalog-card-link:hover .core-catalog-card-poster img,
.core-catalog-card-link:focus-visible .core-catalog-card-poster img {
	transform: scale(1.035);
}


.core-catalog-card-poster-badges {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	min-height: 30px;
	align-items: stretch;
	background: transparent;
}

.core-catalog-card-poster-badges.is-top {
	top: 0;
	bottom: auto;
}

.core-catalog-card-poster-badges.is-bottom {
	top: auto;
	bottom: 0;
}

.core-catalog-card-poster-badges span {
	display: flex;
	min-width: 0;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	padding: 7px 8px 6px;
	color: #fff;
	font-family: "Roboto Mono", monospace;
	font-size: 12.5px;
	font-weight: 750;
	letter-spacing: .015em;
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
	background: rgba(255,255,255,.86);
}

.core-catalog-card-poster-badges .is-family {
	color: #fff;
	background: rgba(30,30,30,.92);
}


.core-catalog-card-poster-badges .is-premiere {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: #caa43a;
	font-weight: 800;
}

.core-catalog-card-poster-badges .is-premiere::after {
	position: absolute;
	top: -45%;
	bottom: -45%;
	left: -38%;
	width: 24%;
	content: "";
	pointer-events: none;
	background: linear-gradient(
		105deg,
		rgba(255,255,255,0) 0%,
		rgba(255,255,255,.08) 35%,
		rgba(255,255,255,.30) 50%,
		rgba(255,255,255,.08) 65%,
		rgba(255,255,255,0) 100%
	);
	transform: skewX(-16deg);
	animation: core-catalog-premiere-shine 4.8s ease-in-out infinite;
}

@keyframes core-catalog-premiere-shine {
	0%, 58% { left: -38%; opacity: 0; }
	64% { opacity: 1; }
	82% { left: 118%; opacity: 1; }
	88%, 100% { left: 118%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.core-catalog-card-poster-badges .is-premiere::after {
		display: none;
		animation: none;
	}
}

.core-catalog-card-poster-badges span + span {
	border-left: 1px solid rgba(0,0,0,.12);
}

.core-catalog-card-poster-placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	padding: 14px;
	color: #666;
	font-family: "Roboto Mono", monospace;
	font-size: 11px;
	text-align: center;
}

.core-catalog-card-body {
	display: flex;
	min-width: 0;
	min-height: 0;
	flex: 0 0 auto;
	flex-direction: column;
	padding: 12px 14px 13px;
}

.core-catalog-card-heading {
	min-width: 0;
	text-align: center;
}

.core-catalog-card-heading h2 {
	display: block;
	margin: 0;
	overflow: hidden;
	color: #111;
	font-size: 17px;
	font-weight: 650;
	line-height: 1.16;
	letter-spacing: -.028em;
	text-overflow: ellipsis;
	text-transform: none !important;
	white-space: nowrap;
}

.core-catalog-card-heading h2.is-compact {
	font-stretch: condensed;
	letter-spacing: -.060em;
}

.core-catalog-card-heading p {
	margin: 5px 0 0;
	overflow: hidden;
	color: #575757;
	font-size: 14px;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.core-catalog-card-meta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	min-width: 0;
	margin-top: 12px;
	padding-top: 10px;
	border-top: 1px solid rgba(0,0,0,.12);
	color: #3f3f3f;
	font-family: "Roboto Mono", monospace;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.2;
	text-transform: uppercase;
}

.core-catalog-card-meta-item {
	display: inline-flex;
	min-width: 0;
	align-items: center;
	gap: 6px;
}

.core-catalog-card-meta-item svg {
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	fill: currentColor;
}

.core-catalog-card-meta-genres {
	overflow: hidden;
}

.core-catalog-card-meta-genres svg {
	width: 18px;
	height: 18px;
}

.core-catalog-card-meta-genres > span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.core-catalog-card-meta-duration {
	white-space: nowrap;
}

.core-catalog-empty {
	margin-top: var(--core-catalog-gap);
	padding: 60px 30px;
	border-radius: var(--core-catalog-radius);
	background: #fff;
	text-align: center;
}

.core-catalog-empty strong {
	display: block;
	font-size: 1.5rem;
}

.core-catalog-empty p {
	margin: 10px 0 0;
	color: #666;
}

@media (max-width: 1180px) {
	.core-catalog-toolbar {
		flex-wrap: wrap;
		align-items: center;
	}

	.core-catalog-genre {
		flex: 1 1 100%;
		max-width: none;
	}

	.core-catalog-extra {
		flex: 1 1 auto;
	}

	.core-catalog-language {
		flex: 0 0 auto;
		width: max-content;
	}

	.core-catalog-duration {
		flex: 1 1 285px;
	}

}

@media (max-width: 900px) {
	.core-catalog-toolbar {
		display: grid;
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 18px;
	}

	.core-catalog-filter-column {
		min-width: 0;
		max-width: none;
		padding: 12px 0;
	}

	.core-catalog-filter-column + .core-catalog-filter-column {
		border-top: 1px solid rgba(0,0,0,.10);
		border-left: 0;
	}

	.core-catalog-language {
		display: block;
		width: 100%;
		min-height: 0;
		flex: 1 1 auto;
	}

	.core-catalog-language-menu {
		position: static;
		width: 100%;
		max-width: none;
		margin-top: 8px;
		box-shadow: none;
	}

	.core-catalog-genre-options,
	.core-catalog-choice-options {
		flex-wrap: wrap;
		overflow: visible;
	}


	.core-catalog-controls {
		position: static;
	}

	.core-catalog-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	}

	.core-catalog-card-body {
		min-height: 0;
		padding: 10px 11px 11px;
	}

	.core-catalog-card-heading h2 {
		font-size: 16px;
	}

	.core-catalog-card-heading p {
		font-size: 13px;
	}

	.core-catalog-card-meta {
		gap: 7px;
		padding-top: 9px;
		font-size: 11.5px;
	}

	.core-catalog-card-meta-item {
		gap: 5px;
	}

	.core-catalog-card-meta-genres svg {
		width: 17px;
		height: 17px;
	}
}

@media (max-width: 760px) {
	.core-catalog-hero {
		grid-template-columns: 1fr;
		align-items: start;
		padding: 36px 28px;
	}
}

@media (max-width: 520px) {
	.core-catalog-page {
		padding: 0 15px 24px;
	}

	.core-catalog-hero {
		padding: 30px 22px;
	}

	.core-catalog-hero h1 {
		font-size: clamp(2.7rem, 15vw, 4.3rem);
	}

	.core-catalog-toolbar {
		padding: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.core-catalog-card-poster img,
	.core-catalog-card-poster::after {
		transition: none;
	}
}
