:root {
	--site-bg: #0f0b0d;
	--site-bg-soft: #1a1216;
	--site-card: #1c1418;
	--site-card-2: #24191f;
	--site-border: rgba(255,255,255,0.08);
	--site-text: #f3e9ed;
	--site-muted: #b9a8af;
	--site-accent: #8f1538;
	--site-accent-2: #c42a58;
	--site-highlight: #f2d6df;
	--site-success: #3cb371;
	--site-danger: #dc3545;
	--site-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

/* :root {
	--site-bg: #0f0b0d;
	--site-bg-soft: #1a1216;
	--site-card: #24181e;
	--site-card-2: #2e2028;
	--site-border: rgba(255,255,255,0.14);
	--site-text: #f3e9ed;
	--site-muted: #b9a8af;
	--site-accent: #8f1538;
	--site-accent-2: #c42a58;
	--site-highlight: #f2d6df;
	--site-success: #3cb371;
	--site-danger: #dc3545;
	--site-shadow: 0 14px 42px rgba(0,0,0,0.42);
} */

html,
body {
	min-height: 100%;
}

body.site-body {
	background:
		radial-gradient(circle at top, rgba(143,21,56,0.18), transparent 30%),
		linear-gradient(180deg, #120d10 0%, #0d090b 100%);
	color: var(--site-text);
	font-family: Arial, sans-serif;
}

a {
	text-decoration: none;
}

.site-navbar {
	background: rgba(12, 8, 10, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--site-border);
}

.site-logo {
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.site-logo-main {
	color: #ffffff;
}

.site-logo-accent {
	color: var(--site-accent-2);
}

.navbar .nav-link {
	color: rgba(255,255,255,0.82);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
	color: #ffffff;
}

.btn-cart {
	background: linear-gradient(135deg, var(--site-accent), var(--site-accent-2));
	color: #fff;
	border: 0;
	padding: 0.7rem 1rem;
	border-radius: 999px;
	box-shadow: var(--site-shadow);
}

.btn-cart:hover,
.btn-cart:focus {
	color: #fff;
	opacity: 0.95;
}

.cart-badge {
	margin-left: 0.45rem;
}

.hero-section {
	padding: 2.5rem 0 1.5rem;
}

.hero-box {
	background:
		linear-gradient(135deg, rgba(196,42,88,0.14), rgba(255,255,255,0.02)),
		var(--site-card);
	border: 1px solid var(--site-border);
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow: var(--site-shadow);
}

.hero-kicker {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.8rem;
	color: var(--site-highlight);
	margin-bottom: 0.65rem;
}

.hero-title {
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 700;
	margin-bottom: 0.8rem;
}

.hero-text {
	max-width: 720px;
	color: var(--site-muted);
	font-size: 1.05rem;
	margin-bottom: 0;
}

.section-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1.2rem;
}

.catalog-summary {
	color: var(--site-muted);
}

.film-card {
	height: 100%;
	background: linear-gradient(180deg, var(--site-card), var(--site-card-2));
	border: 1px solid var(--site-border);
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: var(--site-shadow);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.film-card:hover {
	transform: translateY(-4px);
	border-color: rgba(196,42,88,0.4);
}

.film-body {
	padding: 1.2rem;
}

.film-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.45rem;
}

.film-meta {
	color: var(--site-muted);
	font-size: 0.95rem;
	margin-bottom: 1rem;
	word-break: break-all;
}

.price-tag {
	display: inline-block;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	color: var(--site-highlight);
	font-weight: 700;
	margin-bottom: 1rem;
}

.film-actions {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	flex-wrap: wrap;
}

.btn-main {
	background: linear-gradient(135deg, var(--site-accent), var(--site-accent-2));
	color: #fff;
	border: 0;
	border-radius: 0.9rem;
	padding: 0.75rem 1rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
}

.btn-main:hover,
.btn-main:focus {
	color: #fff;
	opacity: 0.95;
}

.btn-added,
.btn-in-cart {
	background: linear-gradient(135deg, rgba(60,179,113,0.95), rgba(69,199,129,0.95));
	color: #fff;
	border: 0;
	border-radius: 0.9rem;
	padding: 0.75rem 1rem;
	font-weight: 700;
	box-shadow: var(--site-shadow);
}

.btn-added:hover,
.btn-added:focus,
.btn-in-cart:hover,
.btn-in-cart:focus {
	color: #fff;
}

.btn-remove-link {
	background: transparent;
	border: 0;
	padding: 0;
	color: var(--site-highlight);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.2rem;
}

.btn-remove-link:hover,
.btn-remove-link:focus {
	color: #fff;
}

.btn-outline-light-soft {
	border: 1px solid rgba(255,255,255,0.18);
	color: #fff;
	border-radius: 0.9rem;
	padding: 0.75rem 1rem;
	font-weight: 700;
	background: transparent;
}

.btn-outline-light-soft:hover,
.btn-outline-light-soft:focus {
	color: #fff;
	background: rgba(255,255,255,0.06);
}

.btn-load-more {
	min-width: 240px;
}

.panel-box {
	background: linear-gradient(180deg, var(--site-card), var(--site-card-2));
	border: 1px solid var(--site-border);
	border-radius: 1.25rem;
	padding: 1.25rem;
	box-shadow: var(--site-shadow);
}

.table-dark-custom {
	--bs-table-bg: transparent;
	--bs-table-color: var(--site-text);
	--bs-table-border-color: rgba(255,255,255,0.08);
	margin-bottom: 0;
}

.table-dark-custom td,
.table-dark-custom th {
	vertical-align: middle;
}

.status-pill {
	display: inline-block;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
}

.status-active {
	background: rgba(60,179,113,0.18);
	color: #8ae6b0;
}

.status-downloaded {
	background: rgba(255,255,255,0.1);
	color: #fff;
}

.status-expired,
.status-error {
	background: rgba(220,53,69,0.18);
	color: #ff9cab;
}

.form-control,
.form-control:focus,
.site-select,
.site-select:focus {
	background: rgba(255,255,255,0.04);
	border-color: rgba(255,255,255,0.12);
	color: #fff;
	box-shadow: none;
}

.form-control::placeholder {
	color: rgba(255,255,255,0.45);
}

.site-select option {
	background: #1b1418;
	color: #fff;
}

.site-toast-container {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 1080;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	pointer-events: none;
}

.site-toast {
	min-width: 220px;
	max-width: 320px;
	padding: 0.9rem 1rem;
	border-radius: 1rem;
	color: #fff;
	box-shadow: var(--site-shadow);
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.site-toast-success {
	background: linear-gradient(135deg, rgba(60,179,113,0.98), rgba(42,133,84,0.98));
}

.site-toast-error {
	background: linear-gradient(135deg, rgba(220,53,69,0.98), rgba(140,25,44,0.98));
}

.site-footer {
	border-top: 1px solid var(--site-border);
	background: rgba(10, 7, 8, 0.85);
	padding: 1rem 0;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	color: var(--site-muted);
}

.footer-muted {
	color: rgba(255,255,255,0.45);
}

.empty-box {
	text-align: center;
	padding: 2rem;
	color: var(--site-muted);
}

@media (max-width: 767.98px) {
	.hero-box {
		padding: 1.35rem;
	}

	.hero-title {
		font-size: 1.8rem;
	}

	.btn-cart {
		width: 100%;
		justify-content: center;
	}

	.site-toast-container {
		left: 1rem;
		right: 1rem;
	}

	.site-toast {
		max-width: none;
	}
}

.downloads-hero-panel {
	position: relative;
	overflow: hidden;
}

.downloads-hero-panel::after {
	content: '';
	position: absolute;
	inset: auto -80px -80px auto;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(196,42,88,0.25), transparent 68%);
	pointer-events: none;
}

.download-order-token {
	padding: 1rem 1.1rem;
	border-radius: 1rem;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
}

.download-order-token-label,
.download-meta-label,
.download-stat-label,
.download-info-label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--site-muted);
	margin-bottom: 0.35rem;
}

.download-order-token-value,
.download-meta-value,
.download-info-value {
	color: var(--site-text);
	word-break: break-word;
}

.download-stat-card {
	padding: 1rem 1.1rem;
}

.download-stat-value {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--site-text);
}

.download-stat-value-sm {
	font-size: 1rem;
	line-height: 1.45;
}

.download-stat-active {
	color: #8ae6b0;
}

.download-meta-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.download-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
}

.download-card .film-thumb {
	flex: 0 0 auto;
}

.download-card .film-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	height: auto;
	min-height: 0;
}

.download-thumb {
	background:
		linear-gradient(135deg, rgba(60,179,113,0.18), rgba(255,255,255,0.04)),
		linear-gradient(180deg, #2a1b22, #140f12);
}

.download-info-list {
	display: grid;
	gap: 0.85rem;
}

.download-info-item {
	padding: 0.8rem 0.9rem;
	border-radius: 0.95rem;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 767.98px) {
	.download-meta-grid {
		grid-template-columns: 1fr;
	}
}

.error-panel {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(220,53,69,0.16), rgba(255,255,255,0.03)),
		linear-gradient(180deg, var(--site-card), var(--site-card-2));
	border: 1px solid rgba(220,53,69,0.22);
	border-radius: 1.4rem;
	padding: 2rem;
	box-shadow: var(--site-shadow);
}

.error-panel::before {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(220,53,69,0.22), transparent 70%);
	pointer-events: none;
}

.error-icon-wrap {
	margin-bottom: 1rem;
}

.error-icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #b3263d, #dc3545);
	box-shadow: 0 10px 24px rgba(220,53,69,0.28);
}

.error-text {
	color: var(--site-muted);
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 640px;
}

@media (max-width: 767.98px) {
	.error-panel {
		padding: 1.4rem;
	}

	.error-icon {
		width: 52px;
		height: 52px;
		font-size: 1.5rem;
	}
}

.error-subtext {
	font-size: 0.98rem;
	opacity: 0.9;
}

.film-thumb-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.film-card:hover .film-thumb-img {
	transform: scale(1.04);
}

.film-thumb-overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 1rem 1rem 0.85rem;
	background: linear-gradient(180deg, rgba(7,5,6,0), rgba(7,5,6,0.82));
	pointer-events: none;
}

.film-code-badge {
	display: inline-block;
	padding: 0.28rem 0.6rem;
	border-radius: 999px;
	background: rgba(12, 8, 10, 0.78);
	border: 1px solid rgba(255,255,255,0.14);
	color: #fff;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.film-body {
	padding: 1.1rem 1.15rem 1.2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.film-title {
	font-size: 1.18rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 0.55rem;
}

.film-description {
	color: var(--site-muted);
	font-size: 0.94rem;
	line-height: 1.55;
	margin-bottom: 0.9rem;
	min-height: 2.9em;
}

.film-meta-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.85rem;
}

.film-meta-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	color: var(--site-highlight);
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1;
}

.film-cast {
	color: var(--site-muted);
	font-size: 0.93rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.film-cast strong {
	color: var(--site-text);
	font-weight: 700;
}

.film-spacer {
	flex: 1 1 auto;
}

.film-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	flex-wrap: wrap;
	margin-top: auto;
}

.price-tag {
	margin-bottom: 0;
	white-space: nowrap;
}

@media (max-width: 767.98px) {
	.film-description {
		min-height: 0;
	}

	.film-actions {
		align-items: stretch;
	}

	.film-actions .btn-main,
	.film-actions .btn-added,
	.film-actions .btn-in-cart {
		flex: 1 1 100%;
	}
}

.film-card {
	display: flex;
	flex-direction: column;
}

.film-body {
	flex: 1 1 auto;
	height: auto;
	min-height: 0;
}

.film-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	background:
		linear-gradient(180deg, rgba(42, 28, 35, 0.96), rgba(33, 22, 28, 0.98));
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow:
		0 14px 42px rgba(0,0,0,0.42),
		0 0 0 1px rgba(255,255,255,0.03) inset;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.film-card:hover {
	transform: translateY(-4px);
	border-color: rgba(196,42,88,0.42);
	box-shadow:
		0 18px 48px rgba(0,0,0,0.48),
		0 0 0 1px rgba(255,255,255,0.05) inset;
}

#filmGrid {
	position: relative;
	z-index: 1;
}

.film-card {
	backdrop-filter: blur(1px);
}

.film-body {
	padding: 1.1rem 1.15rem 1.2rem;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;

	background: linear-gradient(
		180deg,
		rgba(55, 34, 42, 0.92),
		rgba(42, 26, 33, 0.96)
	);
}

.film-body {
	border-top: 1px solid rgba(255,255,255,0.08);
}

.film-thumb.has-gallery {
	cursor: default;
}

.film-thumb-img {
	opacity: 1;
	transition: transform 0.35s ease, opacity 0.18s ease;
}

.film-thumb-img.is-switching {
	opacity: 0.68;
}


.film-preview-trigger:hover,
.film-preview-trigger:focus {
	background: rgba(196,42,88,0.98);
	color: #fff;
}

@media (hover: none), (pointer: coarse) {
	.film-preview-trigger {
		display: inline-flex;
	}
}

@media (max-width: 767.98px) {
	.film-preview-trigger {
		right: 0.55rem;
		bottom: 0.55rem;
		padding: 0.34rem 0.62rem;
		font-size: 0.72rem;
	}
}

/* =========================
   HERO BACKGROUND UPGRADE
========================= */

.hero-box {
	position: relative;
	overflow: hidden;

	background: url('/images/hero/hero-head-2.jpg') center right / cover no-repeat;

	border: 1px solid var(--site-border);
	border-radius: 1.5rem;

	padding: 2.4rem 2rem;
	box-shadow: var(--site-shadow);

	min-height: 420px;

	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* DARK OVERLAY (olvashatóság miatt) */
.hero-box::before {
	content: "";
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			90deg,
			rgba(5,3,4,0.92) 0%,
			rgba(16,8,11,0.78) 32%,
			rgba(35,8,18,0.46) 60%,
			rgba(35,8,18,0.18) 100%
		);

	z-index: 0;
}

/* CONTENT mindig overlay fölött */
.hero-box > * {
	position: relative;
	z-index: 1;
}

/* =========================
   HERO TEXT FINETUNE
========================= */

.hero-title {
	font-size: clamp(2.2rem, 4vw, 3.8rem);
	font-weight: 700;
	margin-bottom: 0.8rem;
	max-width: 700px;
	line-height: 1.05;

	text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.hero-text {
	max-width: 620px;
	color: #ead6dd;
	font-size: 1.08rem;
	margin-bottom: 0;

	text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.hero-kicker {
	text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 767.98px) {
	.hero-box {
		padding: 1.35rem;
		min-height: 320px;

		/* jobbra toljuk a képet, hogy a sziluett látszódjon */
		background-position: 68% center;
	}

	.hero-title {
		font-size: 1.95rem;
		line-height: 1.08;
	}

	.hero-text {
		font-size: 0.98rem;
		max-width: 100%;
	}
}

/* New section */

/* =========================
   HERO BACKGROUND UPGRADE
========================= */

.hero-box {
	position: relative;
	overflow: hidden;
	background: url('/images/hero/hero-head-2.jpg') center right / cover no-repeat;
	border: 1px solid var(--site-border);
	border-radius: 1.5rem;
	padding: 2.4rem 2rem;
	box-shadow: var(--site-shadow);
	min-height: 420px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(5,3,4,0.92) 0%,
			rgba(16,8,11,0.78) 32%,
			rgba(35,8,18,0.46) 60%,
			rgba(35,8,18,0.18) 100%
		);
	z-index: 0;
}

.hero-box::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 70% 40%, rgba(196,42,88,0.22), transparent 60%);
	z-index: 0;
	pointer-events: none;
}

.hero-box > * {
	position: relative;
	z-index: 1;
}

.hero-title {
	font-size: clamp(2.2rem, 4vw, 3.8rem);
	font-weight: 700;
	margin-bottom: 0.8rem;
	max-width: 700px;
	line-height: 1.05;
	text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.hero-text {
	max-width: 620px;
	color: #ead6dd;
	font-size: 1.08rem;
	margin-bottom: 0;
	text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.hero-kicker {
	text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* =========================
   FILM CARD CINEMATIC UPGRADE
========================= */

.film-card {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;

	background:
		linear-gradient(180deg, rgba(42,28,35,0.96), rgba(29,19,24,0.98));
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 1.25rem;

	box-shadow:
		0 14px 42px rgba(0,0,0,0.42),
		0 0 0 1px rgba(255,255,255,0.03) inset;

	backdrop-filter: blur(1px);
	transition:
		transform 0.28s ease,
		border-color 0.28s ease,
		box-shadow 0.28s ease,
		background 0.28s ease;
}

.film-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			rgba(196,42,88,0.08) 0%,
			rgba(196,42,88,0.00) 36%,
			rgba(255,255,255,0.00) 100%
		);
	opacity: 0.9;
	pointer-events: none;
	z-index: 0;
	transition: opacity 0.28s ease;
}

.film-card::after {
	content: "";
	position: absolute;
	inset: -20% -10%;
	background:
		radial-gradient(circle at 50% 0%, rgba(196,42,88,0.16), transparent 42%);
	opacity: 0;
	pointer-events: none;
	z-index: 0;
	transition: opacity 0.28s ease;
}

.film-card:hover {
	transform: translateY(-6px);
	border-color: rgba(196,42,88,0.48);
	box-shadow:
		0 20px 54px rgba(0,0,0,0.52),
		0 0 0 1px rgba(255,255,255,0.05) inset,
		0 0 32px rgba(196,42,88,0.12);
}

.film-card:hover::before {
	opacity: 1;
}

.film-card:hover::after {
	opacity: 1;
}

.film-thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	background:
		linear-gradient(135deg, rgba(196,42,88,0.25), rgba(255,255,255,0.04)),
		linear-gradient(180deg, #2a1b22, #140f12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.08em;
}

.film-thumb-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	opacity: 1;
	transform: scale(1);
	transition:
		transform 0.45s ease,
		opacity 0.18s ease,
		filter 0.35s ease;
}

.film-card:hover .film-thumb-img {
	transform: scale(1.06);
	filter: saturate(1.08) contrast(1.04);
}

.film-thumb-img.is-switching {
	opacity: 0.68;
}

.film-thumb-overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 1rem 1rem 0.85rem;
	background: linear-gradient(180deg, rgba(7,5,6,0), rgba(7,5,6,0.82));
	pointer-events: none;
	z-index: 2;
}

.film-code-badge {
	display: inline-block;
	padding: 0.28rem 0.6rem;
	border-radius: 999px;
	background: rgba(12,8,10,0.78);
	border: 1px solid rgba(255,255,255,0.14);
	color: #fff;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 6px 16px rgba(0,0,0,0.24);
}

.film-body {
	position: relative;
	z-index: 1;
	padding: 1.1rem 1.15rem 1.2rem;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	height: auto;
	min-height: 0;
	border-top: 1px solid rgba(255,255,255,0.08);

	background:
		linear-gradient(
			180deg,
			rgba(55,34,42,0.92),
			rgba(42,26,33,0.96)
		);
}

.film-title {
	font-size: 1.18rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 0.55rem;
	color: #fff;
	transition: color 0.25s ease, text-shadow 0.25s ease;
}

.film-card:hover .film-title {
	color: #fff7fa;
	text-shadow: 0 0 14px rgba(196,42,88,0.18);
}

.film-description {
	color: var(--site-muted);
	font-size: 0.94rem;
	line-height: 1.55;
	margin-bottom: 0.9rem;
	min-height: 2.9em;
}

.film-meta-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.85rem;
}

.film-meta-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	color: var(--site-highlight);
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1;
	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

.film-card:hover .film-meta-pill {
	background: rgba(196,42,88,0.12);
	border-color: rgba(196,42,88,0.22);
	transform: translateY(-1px);
}

.film-cast {
	color: var(--site-muted);
	font-size: 0.93rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.film-cast strong {
	color: var(--site-text);
	font-weight: 700;
}

.film-spacer {
	flex: 1 1 auto;
}

.film-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	flex-wrap: wrap;
	margin-top: auto;
}

.price-tag {
	margin-bottom: 0;
	white-space: nowrap;
	display: inline-block;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	color: var(--site-highlight);
	font-weight: 700;
	transition:
		background 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.film-card:hover .price-tag {
	background: rgba(196,42,88,0.14);
	box-shadow: 0 0 18px rgba(196,42,88,0.10);
	transform: translateY(-1px);
}

/* .film-preview-trigger {
	position: absolute;
	right: 0.7rem;
	bottom: 0.7rem;
	z-index: 3;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0.38rem 0.7rem;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.28);
	background: rgba(196,42,88,0.88);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 8px 18px rgba(0,0,0,0.28);
} */

.film-preview-trigger {
	position: absolute;
	right: 0.7rem;
	bottom: 0.7rem;
	z-index: 3;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0.38rem 0.7rem;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.28);
	background: rgba(196,42,88,0.88);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 8px 18px rgba(0,0,0,0.28);
	transition:
		background 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.film-preview-trigger:hover,
.film-preview-trigger:focus {
	background: rgba(196,42,88,0.98);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.32);
}

.film-thumb.has-gallery {
	cursor: default;
}

#filmGrid {
	position: relative;
	z-index: 1;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (hover: none), (pointer: coarse) {
	.film-preview-trigger {
		display: inline-flex;
	}
}

@media (max-width: 767.98px) {
	.hero-box {
		padding: 1.35rem;
		min-height: 320px;
		background-position: 68% center;
	}

	.hero-title {
		font-size: 1.95rem;
		line-height: 1.08;
	}

	.hero-text {
		font-size: 0.98rem;
		max-width: 100%;
	}

	.film-description {
		min-height: 0;
	}

	.film-actions {
		align-items: stretch;
	}

	.film-actions .btn-main,
	.film-actions .btn-added,
	.film-actions .btn-in-cart {
		flex: 1 1 100%;
	}

	.film-preview-trigger {
		right: 0.55rem;
		bottom: 0.55rem;
		padding: 0.34rem 0.62rem;
		font-size: 0.72rem;
	}
}

/* =========================
   ULTRA PREMIUM FORM + BUTTON UPGRADE
========================= */

.form-control,
.site-select {
	background:
		linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
	border: 1px solid rgba(255,255,255,0.14);
	color: #fff;
	border-radius: 0.95rem;
	min-height: 48px;
	padding: 0.78rem 1rem;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.03),
		0 8px 24px rgba(0,0,0,0.18);
	transition:
		border-color 0.22s ease,
		box-shadow 0.22s ease,
		background 0.22s ease,
		transform 0.22s ease;
}

.form-control:hover,
.site-select:hover {
	border-color: rgba(196,42,88,0.26);
	background:
		linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
}

.form-control:focus,
.site-select:focus,
.form-control:active,
.site-select:active {
	background:
		linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
	border-color: rgba(196,42,88,0.52);
	color: #fff;
	outline: none;
	box-shadow:
		0 0 0 0.2rem rgba(196,42,88,0.14),
		0 10px 28px rgba(0,0,0,0.24),
		0 0 22px rgba(196,42,88,0.10);
	transform: translateY(-1px);
}

.form-control::placeholder {
	color: rgba(255,255,255,0.44);
}

.site-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 2.8rem;
	background-image:
		linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='rgba(255,255,255,0.78)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat, no-repeat;
	background-position: 0 0, right 0.95rem center;
	background-size: auto, 16px;
}

.site-select option {
	background: #1b1418;
	color: #fff;
}

/* FILTER / PANEL BLOKKOK SZEBB HÁTTERE */
.panel-box {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(41,27,34,0.94), rgba(32,21,27,0.98));
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 1.3rem;
	box-shadow:
		0 14px 42px rgba(0,0,0,0.34),
		0 0 0 1px rgba(255,255,255,0.03) inset;
}

.panel-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(196,42,88,0.08), rgba(255,255,255,0.01) 45%, rgba(255,255,255,0) 100%);
	pointer-events: none;
}

/* ALAP GOMB FINOMÍTÁS */
.btn-main,
.btn-cart,
.btn-added,
.btn-in-cart,
.btn-outline-light-soft {
	position: relative;
	overflow: hidden;
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		opacity 0.22s ease,
		background 0.22s ease,
		border-color 0.22s ease;
}

/* FŐ PRÉMIUM GOMB */
.btn-main,
.btn-cart {
	background:
		linear-gradient(135deg, #8f1538 0%, #c42a58 55%, #d93467 100%);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow:
		0 12px 28px rgba(0,0,0,0.30),
		0 6px 18px rgba(196,42,88,0.22),
		inset 0 1px 0 rgba(255,255,255,0.10);
}

.btn-main::before,
.btn-cart::before,
.btn-outline-light-soft::before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 70%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
	transform: skewX(-20deg);
	transition: left 0.55s ease;
	pointer-events: none;
}

.btn-main:hover,
.btn-main:focus,
.btn-cart:hover,
.btn-cart:focus {
	color: #fff;
	transform: translateY(-2px);
	box-shadow:
		0 16px 34px rgba(0,0,0,0.36),
		0 10px 24px rgba(196,42,88,0.28),
		0 0 24px rgba(196,42,88,0.12),
		inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-main:hover::before,
.btn-main:focus::before,
.btn-cart:hover::before,
.btn-cart:focus::before,
.btn-outline-light-soft:hover::before,
.btn-outline-light-soft:focus::before {
	left: 140%;
}

/* OUTLINE GOMB PRÉMIUMOSÍTÁS */
.btn-outline-light-soft {
	background:
		linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
	border: 1px solid rgba(255,255,255,0.18);
	color: #fff;
	box-shadow:
		0 10px 24px rgba(0,0,0,0.18),
		inset 0 1px 0 rgba(255,255,255,0.04);
}

.btn-outline-light-soft:hover,
.btn-outline-light-soft:focus {
	color: #fff;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
	border-color: rgba(196,42,88,0.26);
	transform: translateY(-2px);
	box-shadow:
		0 14px 28px rgba(0,0,0,0.24),
		0 0 18px rgba(196,42,88,0.08);
}

/* ZÖLD ÁLLAPOT GOMBOK */
.btn-added,
.btn-in-cart {
	background:
		linear-gradient(135deg, rgba(60,179,113,0.96), rgba(69,199,129,0.96));
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow:
		0 12px 28px rgba(0,0,0,0.28),
		0 6px 18px rgba(60,179,113,0.18),
		inset 0 1px 0 rgba(255,255,255,0.08);
}

.btn-added:hover,
.btn-added:focus,
.btn-in-cart:hover,
.btn-in-cart:focus {
	color: #fff;
	transform: translateY(-2px);
	box-shadow:
		0 16px 34px rgba(0,0,0,0.34),
		0 8px 22px rgba(60,179,113,0.24),
		0 0 20px rgba(60,179,113,0.10);
}

/* KISEBB GOMBOK / PREVIEW */
.film-preview-trigger {
	border: 1px solid rgba(255,255,255,0.20);
	background:
		linear-gradient(135deg, rgba(196,42,88,0.94), rgba(217,52,103,0.94));
	box-shadow:
		0 8px 18px rgba(0,0,0,0.28),
		0 4px 14px rgba(196,42,88,0.22);
}

.film-preview-trigger:hover,
.film-preview-trigger:focus {
	background:
		linear-gradient(135deg, rgba(196,42,88,1), rgba(217,52,103,1));
	color: #fff;
	transform: translateY(-2px);
	box-shadow:
		0 12px 24px rgba(0,0,0,0.32),
		0 6px 18px rgba(196,42,88,0.28);
}

/* REMOVE LINK FINOMÍTÁS */
.btn-remove-link {
	color: #f0cad7;
	text-decoration: none;
	position: relative;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.btn-remove-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.12rem;
	height: 1px;
	background: rgba(240,202,215,0.72);
	transition: background 0.2s ease, transform 0.2s ease;
	transform-origin: left center;
}

.btn-remove-link:hover,
.btn-remove-link:focus {
	color: #fff;
}

.btn-remove-link:hover::after,
.btn-remove-link:focus::after {
	background: rgba(255,255,255,0.96);
	transform: scaleX(1.02);
}

/* DISABLED ÁLLAPOT SZEBB */
.btn-main:disabled,
.btn-cart:disabled,
.btn-added:disabled,
.btn-in-cart:disabled,
.btn-outline-light-soft:disabled,
.form-control:disabled,
.site-select:disabled {
	opacity: 0.62;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

/* SEARCH / FILTER RÉSZ KIS PLUSZ */
.catalog-summary,
.section-title,
label,
.form-label {
	position: relative;
	z-index: 1;
}

/* MOBIL FINOMÍTÁS */
@media (max-width: 767.98px) {
	.form-control,
	.site-select {
		min-height: 46px;
		padding: 0.72rem 0.9rem;
		border-radius: 0.85rem;
	}

	.btn-main,
	.btn-cart,
	.btn-added,
	.btn-in-cart,
	.btn-outline-light-soft {
		min-height: 46px;
		border-radius: 0.85rem;
	}
}