/**
 * «Menü» (sticky header + mega menü + offcanvas) stílusok — ingatlan-modul.
 * Forrás: sablon/fooldal fejléce (sticky + 2 mega menü). Minden sablon-inline-stílus
 */

/* ===== Header container ===== */
.im-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999999; /* mindig minden felett (Elementor sticky-k, popupok alatt maradnak) */
}

.im-menu__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px clamp(24px, 5vw, 72px);
	border-bottom: 1px solid transparent;
	transition: background .4s, border-color .4s, padding .4s;
}

/* Görgetett / mindig tömött állapot: sötét üvegsáv */
.im-menu.is-scrolled .im-menu__bar,
.im-menu--solid .im-menu__bar {
	background: rgba(20, 17, 15, 0.88);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	border-bottom-color: rgba(247, 244, 239, 0.12);
	padding-top: 14px;
	padding-bottom: 14px;
}

/* ===== Logó ===== */
.im-menu__logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex: none;
}

/* Logó-méret: magas specificitással védve, hogy az Elementor img-stílusei
   (max-width / height:auto) NE tudják felnagyítani/felülírni. */
.im-menu .im-menu__bar .im-menu__logo .im-menu__logo-img {
	height: 40px;
	width: auto;
	max-height: 40px;
	max-width: none;
	min-width: 0;
	object-fit: contain;
	display: block;
}

/* Alap logó: mindig fehérre invertálódik (a sötét sticky sávon is ott marad). */
.im-menu__logo-img--base {
	filter: brightness(0) invert(1);
	transition: filter .4s;
}

/* Külön sticky logó: ha be van állítva, nincs invertálás — a két kép
   helyettesíti egymást a fejléc állapota szerint. A védő-szelektor
   (fent, 4 osztály) specificitásával írva, különben az felülírná. */
.im-menu .im-menu__bar .im-menu__logo .im-menu__logo-img--sticky {
	display: none;
	filter: none;
}
.im-menu.im-menu--has-sticky-logo .im-menu__bar .im-menu__logo .im-menu__logo-img {
	filter: none; /* nincs invertálás — a megfelelő kép már színpontos */
}
.im-menu.im-menu--has-sticky-logo.is-scrolled .im-menu__bar .im-menu__logo .im-menu__logo-img--base,
.im-menu.im-menu--has-sticky-logo.im-menu--solid .im-menu__bar .im-menu__logo .im-menu__logo-img--base {
	display: none;
}
.im-menu.im-menu--has-sticky-logo.is-scrolled .im-menu__bar .im-menu__logo .im-menu__logo-img--sticky,
.im-menu.im-menu--has-sticky-logo.im-menu--solid .im-menu__bar .im-menu__logo .im-menu__logo-img--sticky {
	display: block;
}

.im-menu__logo-text {
	color: #fff;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.02em;
	transition: color .4s;
}

/* ===== Desktop nav ===== */
/* Jobb oldali közös blokk: navigáció + (nyelv, CTA, burger) egy divben. */
.im-menu__right {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: none;
}

.im-menu__nav {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.7vw, 26px);
}

.im-menu__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 0;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: color .4s;
}

.im-menu__link:hover {
	color: #fff;
}

.im-menu__item {
	position: relative;
}

.im-menu__caret {
	transition: transform .3s;
}

.im-menu__item.is-open .im-menu__caret {
	transform: rotate(180deg);
}

/* ===== Mega panel ===== */
.im-menu__panel {
	position: fixed;
	top: 74px;                       /* fallback; a JS felülírja openingkor */
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .3s, transform .3s;
	width: min(940px, 94vw);
	z-index: 9999;
}

.im-menu__item.is-open .im-menu__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.im-menu__panel-card {
	background: #1d1917;
	color: #f7f4ef;
	border-radius: 18px;
	box-shadow: 0 50px 110px -40px rgba(0, 0, 0, 0.55);
	overflow: hidden;
}

.im-menu__panel-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
}

.im-menu__panel-grid--single {
	grid-template-columns: 1fr;
}

/* Kiemelt kártya (bal oszlop) */
.im-menu__featured {
	padding: 30px 32px;
	border-right: 1px solid rgba(247, 244, 239, 0.08);
}

.im-menu__featured-media {
	position: relative;
	aspect-ratio: 16 / 10;
	border-radius: 12px;
	overflow: hidden;
}

.im-menu__featured-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.im-menu__featured-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 12px;
	background: rgba(12, 10, 9, 0.82);
	border-radius: 100px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f7f4ef;
}

.im-menu__featured-title {
	margin-top: 18px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: #f7f4ef;
}

.im-menu__featured-text {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(247, 244, 239, 0.72);
}

.im-menu__featured-cta {
	display: inline-flex;
	align-items: center;
	margin-top: 18px;
	padding: 11px 20px;
	background: #af7366;
	color: #fff;
	border-radius: 100px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: background .3s, color .3s;
}

.im-menu__featured-cta:hover {
	background: #c98c7d;
	color: #fff;
}

/* Linkek (jobb oszlop) */
.im-menu__links {
	padding: 22px 32px;
	display: flex;
	flex-direction: column;
}

.im-menu__mlink {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 14px 0;
	border-bottom: 1px solid rgba(247, 244, 239, 0.08);
	text-decoration: none;
	transition: opacity .3s;
}

.im-menu__links .im-menu__mlink:last-child {
	border-bottom: none;
}

.im-menu__mlink:hover {
	opacity: 0.6;
}

.im-menu__mlink-ikon {
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: 9px;
	background: #af7366;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.im-menu__mlink-ikon svg,
.im-menu__mlink-ikon i {
	width: 17px;
	height: 17px;
}

.im-menu__mlink-cim {
	display: block;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #f7f4ef;
}

.im-menu__mlink-leiras {
	display: block;
	margin-top: 3px;
	font-size: 12.5px;
	line-height: 1.5;
	color: rgba(247, 244, 239, 0.52);
}

/* Alsó CTA sáv */
.im-menu__panel-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 32px;
}

.im-menu__panel-cta--sotet {
	background: #14110f;
}

.im-menu__panel-cta--bezs {
	background: #1d1917;
}

.im-menu__panel-cta-cim {
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 15px;
	font-weight: 600;
}

.im-menu__panel-cta--sotet .im-menu__panel-cta-cim {
	color: #fff;
}

.im-menu__panel-cta--bezs .im-menu__panel-cta-cim {
	color: #f7f4ef;
}

.im-menu__panel-cta-gomb {
	flex: none;
	display: inline-flex;
	align-items: center;
	padding: 12px 22px;
	border-radius: 100px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.im-menu__panel-cta--sotet .im-menu__panel-cta-gomb {
	background: #af7366;
	color: #fff;
}

.im-menu__panel-cta--bezs .im-menu__panel-cta-gomb {
	color: #c98c7d;
	text-transform: uppercase;
	letter-spacing: 0.72px;
}

/* ==========================================================================
   WP menüs mega panelek — v2 sablon design (mh-panel-* osztályok).
   Trigger: a WP menüben a menüpontra tett «ingatlan» / «szolgaltatas» CSS-osztály.
   A pozicionálás/nyitás a fenti .im-menu__panel + js/menu.js logika marad;
   itt a panel BELSEJE kap v2 stílust (mh-panel-card, mh-cat, mh-panel-media…).
   Forrás: Newsablon „Million Homes v2” assets/million-homes-v2.css (fejléc-panel rész),
   px-re konvertálva ([[css-px-only-no-clamp]]).
   ========================================================================== */

/* Panel-szélesség módosítók (a .im-menu__panel alap 940px-e helyett). */
.im-menu__panel--ingatlan {
	width: min(980px, 94vw);
}

.im-menu__panel--szolgaltatas {
	width: min(940px, 94vw);
}

/* ===== Kártya + rács ===== */
.mh-panel-card {
	background: #1d1917;
	color: #f7f4ef;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 50px 110px -40px rgba(0, 0, 0, 0.55);
}

.mh-panel-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
}

.mh-panel-grid--svc {
	grid-template-columns: 1fr 1.02fr;
}

.mh-panel-left {
	padding: 30px 32px;
	border-right: 1px solid rgba(247, 244, 239, 0.08);
}

.mh-panel-right {
	padding: 30px 32px;
	display: flex;
	flex-direction: column;
}

.mh-panel-kicker {
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.98px;
	text-transform: uppercase;
	color: rgba(247, 244, 239, 0.4);
	margin-bottom: 4px;
}

.mh-panel-kicker--gold {
	color: #c98c7d;
	margin-bottom: 16px;
}

/* ===== Bal oszlop: kiemelt média (Ingatlan panel) ===== */
.mh-panel-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
}

.mh-panel-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #2e2724;
	display: block;
}

.mh-panel-media__shade {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(to top, rgba(20, 17, 15, 0.82), transparent 55%);
}

.mh-panel-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 12px;
	background: rgba(12, 10, 9, 0.82);
	border-radius: 100px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #f7f4ef;
}

.mh-panel-media__cap {
	position: absolute;
	left: 14px;
	bottom: 12px;
}

.mh-panel-media__title {
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0px;
}

.mh-panel-media__sub {
	font-size: 12px;
	margin-bottom: 0px;
	color: rgba(255, 255, 255, 0.82);
}

.mh-panel-h {
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.17px;
	margin-top: 18px;
	    margin-bottom: 0px;
}

.mh-panel-p {
	margin-top: 5px;
	font-size: 13px;
		    margin-bottom: 0px;
	line-height: 1.55;
	color: rgba(247, 244, 239, 0.72);
}

.mh-panel-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

/* ===== Kategória/poszt lista sorok (mh-cat) ===== */
.mh-cat {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 16px 0;
	border-bottom: 1px solid rgba(247, 244, 239, 0.08);
	text-decoration: none;
	transition: opacity .3s;
}

.mh-cat:hover {
	opacity: 0.6;
	color: #f7f4ef;
}

.mh-cat--last {
	padding: 16px 0 4px;
	border-bottom: none;
}

.mh-cat__icon {
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: 9px;
	background: #af7366;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.mh-cat__icon svg,
.mh-cat__icon i {
	width: 17px;
	height: 17px;
}

.mh-cat__title {
	display: block;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #f7f4ef;
}

.mh-cat__desc {
	display: block;
	margin-top: 3px;
	font-size: 12.5px;
	line-height: 1.5;
	color: rgba(247, 244, 239, 0.52);
}

/* ===== Alsó sötét CTA sáv (Ingatlan panel) ===== */
.mh-panel-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: #14110f;
	padding: 20px 32px;
	text-decoration: none;
	transition: background .3s;
}

.mh-panel-cta:hover {
	background: #2e2724;
}

.mh-panel-cta__title {
	display: block;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}

.mh-panel-cta__sub {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 2px;
}

.mh-panel-cta__btn {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	background: #af7366;
	color: #ffffff;
	border-radius: 100px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.24px;
}

/* ===== Jobb kép-oszlop (Szolgáltatás panel) ===== */
.mh-panel-media-col {
	position: relative;
	overflow: hidden;
}

.mh-panel-media-col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #2e2724;
	display: block;
}

.mh-panel-media-col__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 17, 15, 0.92) 0%, rgba(20, 17, 15, 0.35) 55%, rgba(20, 17, 15, 0.1) 100%);
}

.mh-panel-media-col__cap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px 32px;
}

.mh-panel-media-col__kicker {
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.98px;
	text-transform: uppercase;
	color: #f7f4ef;
	margin-bottom: 10px;
}

.mh-panel-media-col__title {
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.2px;
	color: #fff;
	margin-bottom: 0px;
	line-height: 1.15;
}

/* ===== Alsó bézs sáv (Szolgáltatás panel) ===== */
.mh-panel-note {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: #1d1917;
	padding: 18px 32px;
}

.mh-panel-note__text {
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #f7f4ef;
}

.mh-panel-note__link {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.72px;
	text-transform: uppercase;
	color: #c98c7d;
	text-decoration: none;
}

/* ===== Pill gombok (panel-elsea) ===== */
.mh-btn-pill-dark {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 20px;
	background: #af7366;
	color: #fff;
	border-radius: 100px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.24px;
	text-decoration: none;
	transition: background .3s, color .3s;
}

.mh-btn-pill-dark:hover {
	background: #c98c7d;
	color: #ffffff;
}

.mh-btn-pill-plain {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.24px;
	color: #f7f4ef;
	text-decoration: none;
}

.mh-btn-pill-gold {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	background: #af7366;
	color: #ffffff;
	border-radius: 100px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.24px;
	text-decoration: none;
}

.mh-panel-media-col__cap .mh-btn-pill-gold {
	margin-top: 18px;
}

/* ===== Jobboldali actions ===== */
.im-menu__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: none;
}

/* CTA gomb */
.im-menu__cta {
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	border: 1px solid rgb(255 255 255 / 60%);
	border-radius: 100px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #ffffff;
	text-decoration: none;
	white-space: nowrap;
	transition: background .3s, color .3s, border-color .3s;
}

.im-menu__cta:hover {
	background: #c9a558;
	color: #141210;
	border-color: #c9a558;
}

/* Görgetett (sötét) fejlécben a CTA kitöltött bezs gomb. */
.im-menu.is-scrolled .im-menu__cta,
.im-menu--solid .im-menu__cta {
	border-color: #af7366;
	background-color: #af7366;
	color: #fff;
}

.im-menu.is-scrolled .im-menu__cta:hover,
.im-menu--solid .im-menu__cta:hover {
	border-color: #c98c7d;
	background-color: #c98c7d;
	color: #fff;
}

/* Polylang nyelvválasztó (desktop hover) */
.im-menu__lang {
	position: relative;
}

.im-menu__lang-current {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.85);
	transition: color .4s;
}

.im-menu__lang-list {
	/* padding-top (NEM margin) hidalja át a vizuális rést a gomb és a panel
	   között — így az egér a gombtól a panelig húzva egy pillanatra sem hagyja
	   el a hoverolt elemet, a lista nem záródik be idő előtt. */
	position: absolute;
	top: 100%;
	right: 0;
	padding-top: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .3s, transform .3s;
	z-index: 120;
}

.im-menu__lang:hover .im-menu__lang-list,
.im-menu__lang:focus-within .im-menu__lang-list {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.im-menu__lang-list-inner {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 132px;
	padding: 8px;
	background: #1d1917;
	border-radius: 12px;
	box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.4);
}

.im-menu__lang-opt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 14px;
	border-radius: 8px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #f7f4ef;
	text-decoration: none;
	transition: background .3s;
}

.im-menu__lang-opt:hover {
	background: #2e2724;
}

.im-menu__lang-opt[aria-current="true"] {
	background: #2e2724;
}

.im-menu__lang-code {
	color: #c98c7d;
}

/* ===== Burger (mobil) ===== */
.im-menu__burger {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	color: #fff;
}

.im-menu__burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform .3s, opacity .3s;
}

/* ===== Offcanvas fiók + overlay ===== */
.im-menu__overlay {
	position: fixed;
	inset: 0;
	background: rgba(8, 7, 6, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
	z-index: 200;
}

.im-menu.is-drawer-open .im-menu__overlay {
	opacity: 1;
	visibility: visible;
}

.im-menu__offcanvas {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(380px, 86vw);
	background: #fff;
	z-index: 210;
	display: flex;
	flex-direction: column;
	padding: 24px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.im-menu.is-drawer-open .im-menu__offcanvas {
	transform: translateX(0);
}

.im-menu__offcanvas-close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	color: #141210;
}

/* Mobil nav (akordeon) */
.im-menu__mnav {
	display: flex;
	flex-direction: column;
	margin-top: 18px;
}

.im-menu__msimple,
.im-menu__mtrigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 0;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #141210;
	background: none;
	border: none;
	border-bottom: 1px solid rgba(20, 18, 16, 0.08);
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.im-menu__mcaret {
	transition: transform .3s;
}

.im-menu__mitem.is-open .im-menu__mcaret {
	transform: rotate(180deg);
}

.im-menu__msub {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease;
}

.im-menu__mitem.is-open .im-menu__msub {
	max-height: 700px;
}

.im-menu__msub-fo {
	display: block;
	padding: 12px 0;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #AF7366;
	text-decoration: none;
}

.im-menu__msub-list {
	display: flex;
	flex-direction: column;
	padding-bottom: 6px;
}

.im-menu__msub-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #141210;
	text-decoration: none;
}

.im-menu__msub-link svg,
.im-menu__msub-link i {
	width: 18px;
	height: 18px;
	color: #AF7366;
}

.im-menu__offcanvas-foot {
	margin-top: auto;
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.im-menu__mlang {
	display: flex;
	gap: 8px;
}

.im-menu__mlang-opt {
	padding: 8px 14px;
	border-radius: 100px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: rgba(20, 18, 16, 0.5);
	border: 1px solid rgba(20, 18, 16, 0.15);
	text-decoration: none;
}

.im-menu__mlang-opt.is-active {
	background: #141210;
	color: #fff;
	border-color: #141210;
}

.im-menu__cta--block {
	justify-content: center;
	width: 100%;
}

/* Body scroll-lock, ha a fiók nyitva */
body.im-menu-locked {
	overflow: hidden;
}

/* ==========================================================================
   Mobil: teljes képernyős drawer (Newsablon „Menü 1e" minta).
   Képes fejsáv (beállítható kép + feliratok), nagy akkordion sorok
   (almenő kis leírás NÉLKÜL), lábléc CTA + nyelv + elérhetőség.
   Csak ≤1024px-en jelenik meg; a régi .im-menu__offcanvas a legacy
   rendererhez marad meg.
   ========================================================================== */
.im-menu__drawer {
	position: fixed;
	inset: 0;
	z-index: 999999; /* a mobil menő a legerősebb — minden felett */
	background: #0b0a09;
	color: #fff;
	display: none;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: opacity .45s ease, visibility .45s ease;
}

.im-menu.is-drawer-open .im-menu__drawer {
	opacity: 1;
	visibility: visible;
}

/* --- Fejléc-képes sáv --- */
.im-menu__drawer-band {
	position: relative;
	flex: none;
	height: 200px;
	overflow: hidden;
	background: #141210;
}
/* A sáv HÁTTÉRKÉPE: csak a band közvetlen gyerek img-je (a logó a
   .im-menu__drawer-head-ben ül — azt ez NEM szabad, hogy eltalálja!). */
.im-menu__drawer-band > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.im-menu__drawer-grad {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11,10,9,0.3) 0%, rgba(11,10,9,0.55) 55%, rgba(11,10,9,0.96) 100%);
}
.im-menu__drawer-head {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 24px; /* a bezárás gombbal egy vonalban, fix oldaltérközzel */
}
.im-menu__drawer-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex: none;
}
/* A drawer-logó mérete is védve az Elementor img-felülírások ellen. */
.im-menu .im-menu__drawer .im-menu__drawer-logo img {
	position: static;   /* biztos, ami biztos: semmiképp sem abszolút kitöltés */
	inset: auto;
	height: 36px;
	width: auto;
	max-height: 36px;
	max-width: none;
	object-fit: contain;
	display: block;
}
.im-menu__drawer-logo span {
	font-family: 'Schibsted Grotesk', sans-serif;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 2.1px;
	color: #fff;
}
.im-menu__drawer-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	padding: 0px;
	height: 44px;
	flex: none;
	background: rgba(255, 255, 255, 0.12);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 13px;
	cursor: pointer;
	transition: background .3s;
}
.im-menu__drawer-close:hover {
	background: rgba(255, 255, 255, 0.2);
}
.im-menu__drawer-cap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0 24px 18px;
}
.im-menu__drawer-tag {
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #af7366;
}
.im-menu__drawer-title {
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.2px;
	color: #fff;
	margin-top: 5px;
	margin-bottom: 0;
}

/* --- Görgethető navigáció --- */
.im-menu__drawer-scroll {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.im-menu__drawer-nav {
	max-width: 560px;
	width: 100%;
	margin: 0 auto;
	padding: 4px 24px 24px;
}
.im-mrow {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.im-mrow--link {
	text-decoration: none;
	display: block;
}
.im-mrow-head {
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	color: #fff;
}
.im-mrow-title {
	font-family: 'Schibsted Grotesk', sans-serif;
	font-weight: 600;
	font-size: 26px;
	line-height: 1;
	letter-spacing: -0.5px;
	transition: color .3s;
}
.im-mrow-head:hover .im-mrow-title {
	color: #af7366;
}
.im-mrow-chev,
.im-mrow-ico {
	width: 22px;
	height: 22px;
	flex: none;
	color: #af7366;
}
.im-mrow-chev {
	transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.im-mrow.exp .im-mrow-chev {
	transform: rotate(180deg);
}
.im-mrow-sub {
	max-height: 0;
	overflow: hidden;
	transition: max-height .45s cubic-bezier(.16,1,.3,1);
}
.im-mrow.exp .im-mrow-sub {
	max-height: 520px;
}
.im-mrow-sub-inner {
	display: flex;
	flex-direction: column;
	padding: 2px 0 18px;
}
.im-mrow-sub-inner a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 13px 0 13px 22px;
	border-left: 1px solid rgba(175, 115, 102, 0.4);
	margin-left: 2px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.66);
	text-decoration: none;
	transition: color .25s, padding-left .3s;
}
.im-mrow-sub-inner a:hover {
	color: #fff;
	padding-left: 28px;
}

/* --- Lábléc --- */
.im-menu__drawer-foot {
	flex: none;
	max-width: 560px;
	width: 100%;
	margin: 0 auto;
	padding: 18px 24px 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.im-menu__drawer-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 100px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding: 16px;
	background: #af7366;
	color: #fff;
	text-decoration: none;
	transition: background .3s, transform .3s;
}
.im-menu__drawer-cta:hover {
	background: #c98c7d;
	transform: translateY(-2px);
}
.im-menu__drawer-rowfoot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
.im-menu__drawer-lang {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.8px;
}
.im-menu__drawer-lang a {
	padding: 6px 10px;
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: background .25s, color .25s;
}
.im-menu__drawer-lang a:hover,
.im-menu__drawer-lang a.is-on {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}
.im-menu__drawer-contact {
	font-family: 'Schibsted Grotesk', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #af7366;
}

/* ===== Reszponzív: ≤1024px → burger + drawer ===== */
@media ( max-width: 1024px ) {
	.im-menu__nav,
	.im-menu__lang {
		display: none;
	}

	/* Mobilon a sáv: logó | CTA gomb | hamburger. */
	.im-menu__cta {
		display: inline-flex;
	}

	.im-menu__burger {
		display: flex;
	}

	/* A teljes képernyős drawer csak ≤1024px-en él. */
	.im-menu__drawer {
		display: flex;
	}
}
