/**
 * Eonbux template — index.php only
 * Scoped via #header / .eonbux-* classes; load after Porto theme CSS.
 */

/* Landing main nav bar gradient (header-container) */
#header .header-container {
	position: relative;
	isolation: isolate;
	background: #540449;
	background: linear-gradient(
		25deg,
		rgba(84, 4, 73, 1) 0%,
		rgba(5, 16, 37, 1) 29%,
		rgba(6, 35, 77, 1) 61%,
		rgba(79, 19, 111, 1) 94%,
		rgba(95, 13, 117, 1) 100%
	);
}

#header .header-container::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	background: inherit;
	z-index: -1;
}

@media (min-width: 992px) {
	#header .header-container .header-nav-main nav > ul > li > a,
	#header .header-container .header-nav-main nav > ul > li > a.active,
	#header .header-container .header-nav-main nav > ul > li.active > a,
	#header .header-container .header-nav-main nav > ul > li:hover > a,
	#header .header-container .header-nav-main nav > ul > li:focus > a,
	#header .header-container .header-nav-main nav > ul > li:focus-within > a,
	#header .header-container .header-nav-main nav > ul > li.open > a {
		color: #fff !important;
	}

	#header .header-container .header-nav-main nav > ul > li > a.active:before,
	#header .header-container .header-nav-main nav > ul > li.active > a:before,
	#header .header-container .header-nav-main nav > ul > li:hover > a:before,
	#header .header-container .header-nav-main nav > ul > li:focus > a:before {
		background-color: rgba(255, 255, 255, 0.85) !important;
	}
}

#header .header-container .eonbux-nav-profile-toggle,
#header .header-container .eonbux-nav-profile-toggle i,
#header .header-container .header-btn-collapse-nav {
	color: #fff !important;
}

/* ==========================================================================
   Premium Login / Join Us auth buttons (landing header nav)
   ========================================================================== */
#header .header-nav-features .eonbux-auth-btns {
	gap: 12px;
	margin-left: 0;
	flex-shrink: 0;
}

#header .eonbux-auth-btns .eonbux-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 42px;
	padding: 0 22px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease,
		color 0.3s ease;
}

#header .eonbux-auth-btns .eonbux-btn:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.7);
	outline-offset: 2px;
}

/* Login — glass / ghost */
#header .eonbux-auth-btns .eonbux-btn-login {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.35);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

#header .eonbux-auth-btns .eonbux-btn-login:hover,
#header .eonbux-auth-btns .eonbux-btn-login:focus {
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.7);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

/* Start for Free — premium blue → purple gradient with glow + shine sweep */
#header .eonbux-auth-btns .eonbux-btn-join {
	color: #fff;
	background: linear-gradient(135deg, #2563eb 0%, #4338ca 48%, #7c3aed 100%);
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 8px 22px rgba(37, 99, 235, 0.42),
		0 0 0 1px rgba(124, 58, 237, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

#header .eonbux-auth-btns .eonbux-btn-join::before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(255, 255, 255, 0.55) 50%,
		transparent 100%
	);
	transform: skewX(-20deg);
	transition: left 0.6s ease;
	pointer-events: none;
}

#header .eonbux-auth-btns .eonbux-btn-join:hover,
#header .eonbux-auth-btns .eonbux-btn-join:focus {
	color: #fff;
	background: linear-gradient(135deg, #3b82f6 0%, #4f46e5 48%, #8b5cf6 100%);
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(67, 56, 202, 0.55),
		0 0 0 1px rgba(139, 92, 246, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

#header .eonbux-auth-btns .eonbux-btn-join:hover::before,
#header .eonbux-auth-btns .eonbux-btn-join:focus::before {
	left: 130%;
}

#header .eonbux-auth-btns .eonbux-btn-join i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

#header .eonbux-auth-btns .eonbux-btn-join:hover i {
	transform: translateX(3px);
}

#header .eonbux-auth-btns .eonbux-btn-join__short {
	display: none;
}

/* Keep Login + Join CTAs fully visible beside the logo on phones */
@media (max-width: 991.98px) {
	#header .header-container.container {
		padding-left: 12px;
		padding-right: 12px;
	}

	#header .header-row {
		min-width: 0;
		column-gap: 8px;
	}

	#header .header-column.justify-content-end {
		min-width: 0;
		flex: 1 1 auto;
	}

	#header .header-nav-features {
		margin-inline-end: 0 !important;
		padding-inline-end: 0;
		max-width: 100%;
		min-width: 0;
	}

	#header .header-nav-features .eonbux-auth-btns {
		gap: 8px;
		max-width: 100%;
	}

	#header .eonbux-auth-btns .eonbux-btn {
		height: 36px;
		padding: 0 14px;
		font-size: 12px;
		letter-spacing: 0.2px;
		flex-shrink: 0;
	}

	#header .eonbux-auth-btns .eonbux-btn-join i {
		display: none;
	}
}

@media (max-width: 575.98px) {
	#header .header-nav-features .eonbux-auth-btns {
		gap: 6px;
	}

	#header .eonbux-auth-btns .eonbux-btn {
		height: 34px;
		padding: 0 11px;
		font-size: 11px;
		gap: 0;
	}

	#header .eonbux-auth-btns .eonbux-btn-login {
		padding: 0 12px;
	}

	#header .eonbux-auth-btns .eonbux-btn-join__full {
		display: none;
	}

	#header .eonbux-auth-btns .eonbux-btn-join__short {
		display: inline;
	}
}

@media (max-width: 374.98px) {
	#header .eonbux-auth-btns .eonbux-btn {
		padding: 0 10px;
		font-size: 10.5px;
	}
}

/*
 * Main nav row: taller at rest, compacts when scrolled (Porto shrink + stickyHeaderContainerHeight in index.php).
 * custom.css sets #header.header-effect-shrink .header-container { min-height: 0 !important }; we override at rest with higher specificity.
 */
#header .header-top {
	transition: height 0.35s ease, min-height 0.35s ease;
}

#header.header-effect-shrink .header-container {
	transition: height 0.35s ease, min-height 0.35s ease;
}

html:not(.sticky-header-active) #header.header-effect-shrink .header-container {
	min-height: 100px !important;
}

html.sticky-header-active #header.header-effect-shrink .header-container {
	min-height: 0 !important;
}

@media (min-width: 992px) {
	#header .header-nav.header-nav-stripe .header-nav-main nav {
		align-items: stretch;
	}

	html:not(.sticky-header-active) #header .header-nav.header-nav-stripe .header-nav-main {
		min-height: 100px;
	}

	/*
	 * Sticky bar: keep flex cross-axis stretch so nav > ul > li > a { height: 100% } (Porto stripe)
	 * fills the bar — align-items:center was shrinking the nav and shortening hover backgrounds.
	 */
	html.sticky-header-active #header .header-nav.header-nav-stripe .header-nav-main {
		min-height: 0;
		align-items: stretch;
		align-self: stretch;
		height: 100%;
	}

	html.sticky-header-active #header .header-nav.header-nav-stripe .header-nav-main nav {
		align-items: stretch;
		height: 100%;
	}

	html.sticky-header-active #header .header-nav.header-nav-stripe .header-nav-main nav > ul.nav {
		height: 100%;
		align-items: stretch;
	}

	#header .header-nav-features {
		align-self: center;
	}
}

/* Account dropdown (.profile-dropdown): move panel up vs custom.css (top 98px / 77px sticky) */
#header .header-nav-features .dropdown.dropdown-full-color.dropdown-primary .dropdown-menu {
	top: 70px !important;
	margin-top: 14px !important;
}

html.sticky-header-active #header .header-nav-features .dropdown.dropdown-full-color.dropdown-primary .dropdown-menu {
	top: 46px !important;
}

/* Decorative arrow above panel — match raised menu (custom.css also sets .dropdown-shape at 102px / 108px in max-width:1199px) */
#header .header-nav-features .submenu.profile-dropdown img.dropdown-shape,
#header .header-nav-features .submenu.profile-dropdown .dropdown-shape {
	top: 56px !important;
	right: -30px;
}

html.sticky-header-active #header .header-nav-features .submenu.profile-dropdown img.dropdown-shape,
html.sticky-header-active #header .header-nav-features .submenu.profile-dropdown .dropdown-shape {
	top: 32px !important;
}

@media (max-width: 1199px) {
	#header .header-nav-features .dropdown.dropdown-full-color.dropdown-primary .dropdown-menu {
		top: 68px !important;
		left: -101px !important;
	}

	html.sticky-header-active #header .header-nav-features .dropdown.dropdown-full-color.dropdown-primary .dropdown-menu {
		top: 44px !important;
	}

	#header .header-nav-features .submenu.profile-dropdown img.dropdown-shape,
	#header .header-nav-features .submenu.profile-dropdown .dropdown-shape {
		top: 62px !important;
		right: -26px;
	}

	html.sticky-header-active #header .header-nav-features .submenu.profile-dropdown img.dropdown-shape,
	html.sticky-header-active #header .header-nav-features .submenu.profile-dropdown .dropdown-shape {
		top: 38px !important;
	}
}

.img-circle {
	width: 27px;
	height: 27px;
	display: inline;
	border-radius: 50%;
}

.swal2-container {
	z-index: 999999999 !important;
}

@media only screen and (max-width: 768px) {
	.eapp-slider-slider-slider {
		height: 260px !important;
		min-height: 260px;
	}
}

/* Who We Are — mega menu hover: blue text + looping arrow (only while hovered) */
#header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav > li > a.eonbux-who-we-are-link {
	transition: color 0.25s ease;
}

#header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav > li > a.eonbux-who-we-are-link:hover {
	color: #0d6efd !important;
}

#header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav > li > a.eonbux-who-we-are-link .eonbux-who-we-are-title-row {
	gap: 0.75rem;
}

#header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav > li > a.eonbux-who-we-are-link .eonbux-who-we-are-arrow {
	display: inline-flex;
	align-items: center;
	opacity: 0;
	max-width: 0;
	overflow: hidden;
	vertical-align: middle;
	transition: opacity 0.2s ease, max-width 0.28s ease;
}

#header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav > li > a.eonbux-who-we-are-link:hover .eonbux-who-we-are-arrow {
	opacity: 1;
	max-width: 3.25rem;
}

#header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav > li > a.eonbux-who-we-are-link:hover .eonbux-who-we-are-arrow i {
	color: #0d6efd;
	animation: eonbux-who-we-are-arrow-cycle calc(2s / 3) ease-in-out 3 forwards;
}

@keyframes eonbux-who-we-are-arrow-cycle {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(16px); }
}

@media (prefers-reduced-motion: reduce) {
	#header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav > li > a.eonbux-who-we-are-link:hover .eonbux-who-we-are-arrow i {
		animation: none;
	}
}

/* Mega menu contact/info grid (.sysdevt-mega-info-grid): address row flush with icon (no extra left inset) */
#header .dropdown-mega-content .sysdevt-mega-info-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 0.5rem;
	row-gap: 0.2rem;
	align-items: center;
}

#header .dropdown-mega-content .sysdevt-mega-info-grid .eonbux-mega-email-address,
#header .dropdown-mega-content .sysdevt-mega-info-grid .eonbux-mega-contact-value {
	grid-column: 1 / -1;
	margin: 0 !important;
	padding: 0 !important;
}

/* Phone row: Smart + Globe side by side */
#header .dropdown-mega-content .sysdevt-mega-info-grid .sysdevt-mega-phone-dual {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: clamp(0.75rem, 4vw, 1.75rem);
}

#header .dropdown-mega-content .sysdevt-mega-info-grid .sysdevt-mega-phone-dual .sysdevt-mega-phone-network {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	row-gap: 0.2rem;
}

/* Icon + Smart / Globe label on one horizontal row */
#header .dropdown-mega-content .sysdevt-mega-info-grid .sysdevt-mega-phone-dual .sysdevt-mega-phone-network-head {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	column-gap: 0.5rem;
}

#header .dropdown-mega-content .sysdevt-mega-info-grid .eonbux-mega-contact-address {
	grid-column: 1 / -1;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--default);
}

/* Porto: .dropdown-menu li a { padding: 6px 18px; } applies to any link under the mega <li> — reset mailto/tel only */
#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li .sysdevt-mega-info-grid a.eonbux-mega-email-link,
#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li .sysdevt-mega-info-grid a.eonbux-mega-contact-link {
	padding: 0 !important;
	margin: 0 !important;
	border: 0 none !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	letter-spacing: inherit !important;
}

#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li .sysdevt-mega-info-grid a.eonbux-mega-email-link strong,
#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li .sysdevt-mega-info-grid a.eonbux-mega-contact-link strong {
	font-weight: 700;
}

/* Mega menu project thumb only: no dark panel behind title (Porto default .thumb-info-title background) */
#header .thumb-info.eonbux-mega-thumb-title-plain .thumb-info-title {
	background: transparent !important;
	box-shadow: none !important;
	top: auto !important;
	bottom: 32% !important;
	transform: none !important;
}

#header .thumb-info.eonbux-mega-thumb-title-plain:hover .thumb-info-title {
	background: transparent !important;
	box-shadow: none !important;
	top: auto !important;
	bottom: 32% !important;
	transform: none !important;
}

#header .thumb-info.eonbux-mega-thumb-title-plain .thumb-info-type,
#header .thumb-info.eonbux-mega-thumb-title-plain:hover .thumb-info-type {
	background: transparent !important;
	background-color: transparent !important;
	border-radius: 0;
	padding: 0;
	margin: 0.35rem 0 0 0;
	float: none;
	display: block;
	line-height: 1.35;
}

/* Same mega thumb only: dark overlay on image (thumb-info-hide-wrapper-bg removes Porto :after) */
#header .thumb-info.eonbux-mega-thumb-title-plain .thumb-info-wrapper::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	border-radius: inherit;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.78) 0%,
		rgba(0, 0, 0, 0.45) 42%,
		rgba(0, 0, 0, 0.22) 100%
	);
}

#header .thumb-info.eonbux-mega-thumb-title-plain .thumb-info-wrapper img {
	position: relative;
	z-index: 0;
}

/*
 * Thumb caption social icons live under the same mega-menu <li> as nav links, so Porto’s
 * #header … .dropdown-menu li a (padding, border-bottom, etc.) applies and breaks the
 * intended 30×30 circular buttons — restore theme thumb-info-social-icons behavior here.
 */
#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li .thumb-info.eonbux-mega-thumb-title-plain .thumb-info-social-icons a {
	display: inline-block !important;
	box-sizing: border-box !important;
	width: 30px !important;
	height: 30px !important;
	min-width: 30px !important;
	max-width: 30px !important;
	line-height: 30px !important;
	padding: 0 !important;
	margin: 0 6px 0 0 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	font-weight: 400 !important;
	border: 0 none !important;
	border-bottom: 0 none !important;
	border-radius: 50% !important;
	vertical-align: middle !important;
	position: relative !important;
	background-color: var(--primary) !important;
}

#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li .thumb-info.eonbux-mega-thumb-title-plain .thumb-info-social-icons a:last-child {
	margin-right: 0 !important;
}

#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li .thumb-info.eonbux-mega-thumb-title-plain .thumb-info-social-icons a:hover,
#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li .thumb-info.eonbux-mega-thumb-title-plain .thumb-info-social-icons a:focus,
#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li .thumb-info.eonbux-mega-thumb-title-plain .thumb-info-social-icons a:active {
	background-color: var(--primary) !important;
}

#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li .thumb-info.eonbux-mega-thumb-title-plain .thumb-info-social-icons a i {
	color: var(--light) !important;
	font-size: 0.9em !important;
	font-weight: normal !important;
	line-height: 1 !important;
}

#header .thumb-info.eonbux-mega-thumb-title-plain .thumb-info-wrapper .eonbux-mega-partner-logos {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	z-index: 2;
	margin: 0;
	padding: 8px 12px 10px;
	border-top: 0 none;
	pointer-events: auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: clamp(0.5rem, 3vw, 1rem);
	row-gap: 0.5rem;
	align-items: center;
	justify-items: center;
}

#header .thumb-info.eonbux-mega-thumb-title-plain .eonbux-mega-partner-logos a.eonbux-mega-partner-logo-link {
	padding: 2px 4px !important;
	margin: 0 !important;
	border: 0 none !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	letter-spacing: inherit !important;
	line-height: 1 !important;
	display: flex !important;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	min-height: 36px;
}

#header .thumb-info.eonbux-mega-thumb-title-plain .eonbux-mega-partner-logos .eonbux-mega-partner-logo-aws {
	font-size: clamp(1.25rem, 4.5vw, 1.75rem);
	line-height: 1;
	color: #ff9900;
}

/* Oracle Cloud PNG: same sizing as other partner marks (asset colors) */
#header .thumb-info.eonbux-mega-thumb-title-plain .eonbux-mega-partner-logos .eonbux-mega-partner-logo-oracle-img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 42px;
}

/* OVHcloud PNG → white on dark overlay */
#header .thumb-info.eonbux-mega-thumb-title-plain .eonbux-mega-partner-logos .eonbux-mega-partner-logo-ovhcloud-img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 42px;
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

/* Cursor AI PNG: original file colors (no filter) */
#header .thumb-info.eonbux-mega-thumb-title-plain .eonbux-mega-partner-logos .eonbux-mega-partner-logo-cursor-img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 42px;
}

/* Zapier AI PNG: original file colors (no filter) */
#header .thumb-info.eonbux-mega-thumb-title-plain .eonbux-mega-partner-logos .eonbux-mega-partner-logo-zapier-img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 42px;
}

/* Vercel AI PNG → white on dark overlay */
#header .thumb-info.eonbux-mega-thumb-title-plain .eonbux-mega-partner-logos .eonbux-mega-partner-logo-vercel-img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 42px;
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

/* Services mega menu: swap center column copy on left-nav hover */
#header .eonbux-services-mega .eonbux-services-mega-panels {
	position: relative;
	min-height: 19rem;
}

/* Push “Key features” + grid below intro copy (overrides Bootstrap mt-3 on block) */
#header .eonbux-services-mega .eonbux-services-mega-features {
	margin-top: 2.5rem !important;
	padding-top: 0.75rem;
}

#header .eonbux-services-mega .eonbux-services-mega-feature-grid .eonbux-services-mega-feature-cell {
	line-height: 1.35;
	min-height: 1.5rem;
}

#header .eonbux-services-mega .eonbux-services-mega-feature-grid .eonbux-services-mega-feature-cell .text-2 {
	line-height: 1.3;
}

/* Key features: bottom → top fade-up (Porto-style, staggered; restarts via JS on panel change) */
@keyframes eonbux-services-feature-fade-up {
	from {
		opacity: 0;
		transform: translate3d(0, 16px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

#header .eonbux-services-mega .eonbux-services-mega-panel.is-active .eonbux-services-mega-features > p {
	animation: eonbux-services-feature-fade-up 0.55s cubic-bezier(0.23, 1, 0.32, 1) both;
	animation-delay: 0.06s;
}

#header .eonbux-services-mega .eonbux-services-mega-panel.is-active .eonbux-services-mega-feature-grid .eonbux-services-mega-feature-cell {
	animation: eonbux-services-feature-fade-up 0.55s cubic-bezier(0.23, 1, 0.32, 1) both;
}

#header .eonbux-services-mega .eonbux-services-mega-panel.is-active .eonbux-services-mega-feature-grid .col-6:nth-child(1) .eonbux-services-mega-feature-cell {
	animation-delay: 0.12s;
}

#header .eonbux-services-mega .eonbux-services-mega-panel.is-active .eonbux-services-mega-feature-grid .col-6:nth-child(2) .eonbux-services-mega-feature-cell {
	animation-delay: 0.18s;
}

#header .eonbux-services-mega .eonbux-services-mega-panel.is-active .eonbux-services-mega-feature-grid .col-6:nth-child(3) .eonbux-services-mega-feature-cell {
	animation-delay: 0.24s;
}

#header .eonbux-services-mega .eonbux-services-mega-panel.is-active .eonbux-services-mega-feature-grid .col-6:nth-child(4) .eonbux-services-mega-feature-cell {
	animation-delay: 0.3s;
}

#header .eonbux-services-mega .eonbux-services-mega-panel.is-active .eonbux-services-mega-feature-grid .col-6:nth-child(5) .eonbux-services-mega-feature-cell {
	animation-delay: 0.36s;
}

#header .eonbux-services-mega .eonbux-services-mega-panel.is-active .eonbux-services-mega-feature-grid .col-6:nth-child(6) .eonbux-services-mega-feature-cell {
	animation-delay: 0.42s;
}

@media (prefers-reduced-motion: reduce) {
	#header .eonbux-services-mega .eonbux-services-mega-panel.is-active .eonbux-services-mega-features > p,
	#header .eonbux-services-mega .eonbux-services-mega-panel.is-active .eonbux-services-mega-feature-grid .eonbux-services-mega-feature-cell {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

#header .eonbux-services-mega .eonbux-services-mega-panel {
	display: none;
}

#header .eonbux-services-mega .eonbux-services-mega-panel.is-active {
	display: block;
}

#header .eonbux-services-mega .dropdown-mega-sub-nav > li.eonbux-services-nav-item.is-active > a {
	background-color: #f8f9fa;
}

/* Header profile toggle — initial avatar chip */
#header .header-nav-features .eonbux-nav-profile-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 50%;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#header .header-nav-features .eonbux-nav-profile-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #fff;
	background: linear-gradient(135deg, #2563eb 0%, #4338ca 48%, #7c3aed 100%);
	border: 2px solid rgba(255, 255, 255, 0.55);
	box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

#header .header-nav-features .eonbux-nav-profile-toggle:hover,
#header .header-nav-features .eonbux-nav-profile-toggle:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
	outline: none;
}

/* Premium account dropdown panel */
#header .header-nav-features .eonbux-account-menu.dropdown-menu {
	min-width: 280px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 18px !important;
	overflow: hidden;
	background: #fff !important;
	box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18),
		0 0 0 1px rgba(15, 23, 42, 0.06) !important;
}

#header .header-nav-features .eonbux-account-menu__hello {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 16px 14px;
	background:
		radial-gradient(420px 120px at 0% 0%, rgba(37, 99, 235, 0.22), transparent 60%),
		radial-gradient(360px 120px at 100% 0%, rgba(124, 58, 237, 0.2), transparent 55%),
		linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
}

#header .header-nav-features .eonbux-account-menu__badge {
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
	border: 2px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

#header .header-nav-features .eonbux-account-menu__meta {
	min-width: 0;
}

#header .header-nav-features .eonbux-account-menu__hi {
	margin: 0;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #fff;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#header .header-nav-features .eonbux-account-menu__email {
	display: block;
	margin-top: 3px;
	font-size: 11.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.72);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#header .header-nav-features .eonbux-account-menu__list {
	list-style: none;
	margin: 0;
	padding: 10px;
}

#header .header-nav-features .eonbux-account-menu__list > li {
	margin: 0;
}

#header .header-nav-features .eonbux-account-menu__link {
	display: flex !important;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 11px 12px !important;
	border-radius: 12px;
	border: 0 !important;
	border-bottom: 0 !important;
	color: #0f172a !important;
	font-size: 13.5px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	background: transparent !important;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

#header .header-nav-features .eonbux-account-menu__link:hover,
#header .header-nav-features .eonbux-account-menu__link:focus {
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1)) !important;
	color: #3730a3 !important;
}

#header .header-nav-features .eonbux-account-menu__icon {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 13px;
	color: #4338ca;
	background: rgba(67, 56, 202, 0.1);
}

#header .header-nav-features .eonbux-account-menu__chevron {
	margin-left: auto;
	font-size: 11px;
	opacity: 0.45;
}

#header .header-nav-features .eonbux-account-menu__link--logout {
	margin-top: 4px;
	color: #b42318 !important;
}

#header .header-nav-features .eonbux-account-menu__link--logout .eonbux-account-menu__icon {
	color: #b42318;
	background: rgba(180, 35, 24, 0.1);
}

#header .header-nav-features .eonbux-account-menu__link--logout:hover,
#header .header-nav-features .eonbux-account-menu__link--logout:focus {
	background: rgba(180, 35, 24, 0.08) !important;
	color: #912018 !important;
}

@media (prefers-reduced-motion: reduce) {
	#header .header-nav-features .eonbux-nav-profile-toggle,
	#header .header-nav-features .eonbux-account-menu__link {
		transition: none;
	}
}

/* ============================================================
   Guest Auth Gate Modal — blue → purple Super-App theme
   ============================================================ */
.auth-gate {
	position: fixed;
	inset: 0;
	z-index: 200000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.auth-gate.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.auth-gate-open {
	overflow: hidden;
}

.auth-gate__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 120% at 50% 0%, rgba(37, 99, 235, 0.55) 0%, rgba(30, 27, 75, 0.88) 55%, rgba(15, 23, 42, 0.92) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.auth-gate__dialog {
	position: relative;
	width: 100%;
	max-width: 960px;
	border-radius: 26px;
	overflow: hidden;
	background: #fff;
	box-shadow:
		0 40px 120px -30px rgba(49, 46, 129, 0.65),
		0 0 0 1px rgba(167, 139, 250, 0.18);
	transform: translateY(26px) scale(0.97);
	opacity: 0;
	transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.25, 1), opacity 0.42s ease;
}

.auth-gate.is-open .auth-gate__dialog {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.auth-gate__close {
	position: absolute;
	top: 14px;
	right: 16px;
	z-index: 5;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: rgba(67, 56, 202, 0.08);
	color: #4338ca;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.auth-gate__close:hover {
	background: rgba(67, 56, 202, 0.16);
	color: #312e81;
	transform: rotate(90deg);
}

.auth-gate__grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	min-height: 580px;
}

.auth-gate__aside {
	position: relative;
	padding: 46px 40px 40px;
	color: #fff;
	background: linear-gradient(165deg, #2563eb 0%, #4338ca 42%, #7c3aed 78%, #5b21b6 100%);
	overflow: hidden;
}

.auth-gate__aside:before {
	content: "";
	position: absolute;
	width: 340px;
	height: 340px;
	right: -130px;
	top: -120px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(191, 219, 254, 0.35) 0%, transparent 70%);
}

.auth-gate__aside:after {
	content: "";
	position: absolute;
	width: 260px;
	height: 260px;
	left: -100px;
	bottom: -100px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(216, 180, 254, 0.32) 0%, transparent 70%);
}

.auth-gate__aside-inner {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.auth-gate__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.32);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #f5f3ff;
}

.auth-gate__aside-title {
	margin: 22px 0 12px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 800;
	color: #fff;
}

.auth-gate__aside-text {
	font-size: 14.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.92);
	max-width: 360px;
	margin-bottom: 8px;
}

.auth-gate__perks {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.auth-gate__perks li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.auth-gate__perks li:first-child {
	border-top: none;
}

.auth-gate__perks li i {
	font-size: 16px;
	margin-top: 2px;
	color: #c4b5fd;
	flex-shrink: 0;
}

.auth-gate__aside-foot {
	margin: 18px 0 0;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 12px;
	line-height: 1.5;
	color: rgba(237, 233, 254, 0.88);
}

.auth-gate__main {
	padding: 42px 44px;
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, #fafbff 0%, #fff 40%);
}

.auth-gate__tabs {
	display: flex;
	gap: 6px;
	padding: 6px;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.1));
	border-radius: 14px;
	margin-bottom: 26px;
}

.auth-gate__tab {
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 10px;
	border-radius: 10px;
	font-size: 14.5px;
	font-weight: 700;
	color: #64748b;
	cursor: pointer;
	transition: all 0.22s ease;
}

.auth-gate__tab.is-active {
	background: #fff;
	color: #4338ca;
	box-shadow: 0 8px 22px -10px rgba(67, 56, 202, 0.55);
}

.auth-gate__pane {
	display: none;
	animation: authGateFade 0.35s ease;
}

.auth-gate__pane.is-active {
	display: block;
}

@keyframes authGateFade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.auth-gate__heading {
	margin: 0 0 4px;
	font-size: 24px;
	font-weight: 800;
	color: #1e1b4b;
}

.auth-gate__sub {
	margin: 0 0 22px;
	font-size: 14px;
	line-height: 1.55;
	color: #64748b;
}

.auth-gate__form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.auth-gate__field-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.auth-gate__field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.auth-gate__field label {
	font-size: 12.5px;
	font-weight: 600;
	color: #334155;
}

.auth-gate__field input {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	font-size: 14.5px;
	color: #0f172a;
	background: #f8fafc;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-gate__field input:focus {
	outline: none;
	border-color: #6366f1;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.16);
}

.auth-gate__input--uppercase {
	text-transform: uppercase;
}

.auth-gate__row {
	display: flex;
	justify-content: flex-end;
	margin-top: -4px;
}

.auth-gate__link {
	font-size: 13px;
	color: #4f46e5;
	font-weight: 600;
	text-decoration: none;
}

.auth-gate__link:hover {
	color: #7c3aed;
	text-decoration: underline;
}

.auth-gate__btn {
	width: 100%;
	border: none;
	padding: 15px 18px;
	border-radius: 13px;
	font-size: 15.5px;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.auth-gate__btn:active {
	transform: translateY(1px);
}

.auth-gate__btn--primary,
.auth-gate__btn--success {
	background: linear-gradient(135deg, #2563eb 0%, #4f46e5 48%, #7c3aed 100%);
	box-shadow: 0 16px 30px -14px rgba(79, 70, 229, 0.85);
}

.auth-gate__btn:hover {
	filter: brightness(1.06);
}

.auth-gate__btn:disabled {
	opacity: 0.75;
	cursor: wait;
	filter: none;
}

.auth-gate__switch {
	margin: 18px 0 0;
	text-align: center;
	font-size: 13.5px;
	color: #64748b;
}

.auth-gate__switch a {
	color: #4f46e5;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.auth-gate__switch a:hover {
	color: #7c3aed;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.auth-gate {
		padding: 0;
		align-items: flex-end;
	}

	.auth-gate__dialog {
		max-width: 100%;
		border-radius: 24px 24px 0 0;
		max-height: 94vh;
		overflow-y: auto;
		transform: translateY(100%);
	}

	.auth-gate.is-open .auth-gate__dialog {
		transform: translateY(0);
	}

	.auth-gate__grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.auth-gate__aside {
		display: none;
	}

	.auth-gate__main {
		padding: 30px 22px 36px;
	}

	.auth-gate__close {
		background: rgba(67, 56, 202, 0.1);
		color: #4338ca;
	}

	.auth-gate__dialog:before {
		content: "";
		display: block;
		width: 44px;
		height: 5px;
		border-radius: 999px;
		background: linear-gradient(90deg, #60a5fa, #a78bfa);
		margin: 12px auto 0;
	}

	.auth-gate__field-grid {
		grid-template-columns: 1fr;
	}
}
