/* Header styles extracted into the theme. */
.header-outer *,
.nav-drawer * {
	box-sizing: border-box;
}

.header-outer {
	display: block;
	width: 100%;
	height: 60px;
	position: relative;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.header-outer {
		height: 60px;
	}
}

.main-header {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 6px 10px 6px 6px;
	background: rgba(10, 10, 12, 0.75);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
	position: fixed;
	top: 10px;
	left: 10px;
	width: calc(100% - 20px);
	z-index: 1000;
	border-radius: 16px;
	min-height: 58px;
	box-sizing: border-box;
	overflow: visible;
}

.logo-section {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
	padding: 2px 4px;
}

.logo-container {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--sw-bg-elevated);
	flex-shrink: 0;
}

.logo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.logo-text {
	font-weight: 600;
	font-size: 0.88rem;
	line-height: 1.25;
	color: var(--sw-heading);
	white-space: nowrap;
}

.center-nav {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.nav-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2px;
	align-items: center;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 5px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	padding: 6px 11px;
	border-radius: 2px;
	transition: color 0.2s, background 0.2s;
	white-space: nowrap;
}

.nav-link iconify-icon {
	font-size: 1rem;
	flex-shrink: 0;
}

.nav-link .sw-menu-icon-img,
.drawer-link .sw-menu-icon-img {
	width: 1rem;
	height: 1rem;
	object-fit: contain;
	flex-shrink: 0;
}

.nav-link:hover,
.nav-link.active {
	color: var(--sw-heading);
	background: rgba(255, 255, 255, 0.07);
}

.nav-list li {
	position: relative;
}

.header-outer .main-header .sub-menu {
	position: absolute;
	top: 135%;
	left: 0;
	background: rgb(4 4 4 / 88%);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	padding: 8px;
	margin: 10px 0 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.2s ease;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
	z-index: 2000;
	display: block;
	min-width: 220px;
}

.header-outer .nav-list li:hover>.sub-menu,
.header-outer .nav-list li:focus-within>.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu li {
	width: 100%;
}

.sub-menu .nav-link {
	width: 100%;
	justify-content: flex-start;
	padding: 8px 12px;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
}

.sub-menu .nav-link:hover,
.sub-menu .nav-link:focus-visible {
	background: rgba(255, 255, 255, 0.05);
	color: var(--sw-heading);
}

.submenu-arrow {
	font-size: 0.9rem;
	margin-left: 4px;
	opacity: 0.5;
}

.header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex-shrink: 0;
	margin-left: auto;
}

.login-btn.details-btn {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
	color: var(--sw-heading);
}

.login-btn.details-btn:hover {
	background: rgba(49, 168, 255, 0.14);
	border-color: rgba(49, 168, 255, 0.38);
	color: var(--sw-heading);
}

.header-search-trigger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	min-height: 36px;
	padding: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--sw-heading);
	cursor: pointer;
	transition: all 0.2s;
	font-size: 1.2rem;
	line-height: 1;
	flex-shrink: 0;
}

.header-search-trigger:hover {
	background: rgba(49, 168, 255, 0.15);
	border-color: rgba(49, 168, 255, 0.4);
	color: #31a8ff;
}

.header-search-trigger iconify-icon {
	display: block;
	font-size: 1.2rem;
	pointer-events: none;
}

.social-pill {
	display: flex;
	align-items: center;
	gap: 2px;
	background: #000;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 50px;
	padding: 4px 8px;
}

.sw-header-social-menu {
	display: flex;
	align-items: center;
	gap: 2px;
}

.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	font-size: 1.1rem;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

.social-btn:hover {
	color: #31a8ff;
	background: rgba(49, 168, 255, 0.1);
	border-color: rgba(49, 168, 255, 0.3);
	transform: translateY(-1px);
}

.social-btn iconify-icon {
	pointer-events: none;
}

.social-btn .sw-menu-icon-img {
	width: 1.1rem;
	height: 1.1rem;
	object-fit: contain;
	flex-shrink: 0;
}

.user-profile-wrap {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	z-index: 10;
}

.user-avatar-img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.2);
	display: block;
	transition: border-color 0.2s;
}

.user-profile-wrap:hover .user-avatar-img,
.user-profile-wrap:focus-within .user-avatar-img {
	border-color: rgba(255, 255, 255, 0.6);
}

.user-dropdown {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	background: rgba(10, 10, 12, 0.98);
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 8px;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
	z-index: 2000;
}

.user-profile-wrap:hover .user-dropdown,
.user-profile-wrap:focus-within .user-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.user-drop-info {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
}

.user-drop-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.user-drop-name {
	color: var(--sw-heading);
	font-size: 0.92rem;
	font-weight: 600;
}

.user-drop-email {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.78rem;
}

.user-drop-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin: 4px 0;
}

.user-drop-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	border-radius: 10px;
	transition: background 0.2s, color 0.2s;
}

.user-drop-link:hover {
	background: rgba(255, 255, 255, 0.05);
	color: var(--sw-heading);
}

.user-drop-link.logout {
	color: #ff8080;
}

.login-btn {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: var(--sw-heading);
	display: inline-flex;
	font-size: 13px;
	font-weight: 600;
	gap: 8px;
	padding: 7px 13px;
	text-decoration: none;
}

.login-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	color: var(--sw-heading);
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	min-height: 36px;
	padding: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--sw-heading);
	cursor: pointer;
	transition: all 0.2s;
	font-size: 1.2rem;
	line-height: 1;
	flex-shrink: 0;
}

.menu-toggle:hover {
	background: rgba(49, 168, 255, 0.15);
	border-color: rgba(49, 168, 255, 0.4);
	color: #31a8ff;
}

.nav-drawer {
	position: fixed;
	top: 0;
	left: -320px;
	right: auto;
	width: 320px;
	height: 100vh;
	background: #000000;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 2000;
	transition: left 0.3s ease-in-out;
	visibility: hidden;
	pointer-events: none;
	overflow-y: auto;
}

.nav-drawer.open {
	left: 0;
	right: auto;
	visibility: visible;
	pointer-events: auto;
}

.premium-drawer-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
}

.premium-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 20px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-logo-group {
	display: flex;
	align-items: center;
	gap: 12px;
}

.premium-logo-img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
}

.premium-logo-text {
	font-size: 1rem;
	font-weight: 700;
	color: var(--sw-heading);
	letter-spacing: -0.01em;
}

.premium-close-btn {
	background: rgba(255, 255, 255, 0.05);
	border: 0;
	color: var(--sw-heading);
	font-size: 1.2rem;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.2s ease;
}

.premium-close-btn:hover {
	background: rgba(255, 50, 50, 0.2);
	color: #ff6b6b;
}

.premium-drawer-scroll {
	flex: 1;
	overflow-y: auto;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	-ms-overflow-style: none;
}

@supports (scrollbar-width: none) {
	.premium-drawer-scroll {
		scrollbar-width: none;
	}
}

.premium-drawer-scroll::-webkit-scrollbar {
	display: none;
}

.premium-section-title {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.4);
	font-weight: 600;
	margin-bottom: 12px;
	display: block;
}

.premium-drawer-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 5px;
	flex-direction: column;
}

.drawer-link {
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	padding: 9px 10px;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.3s ease;
	background: transparent;
	margin-bottom: 0;
}

.drawer-link:hover,
.drawer-link.active {
	color: #11101D !important;
	background: #fff !important;
	transform: none;
}

.drawer-link iconify-icon {
	font-size: 1.2rem;
	flex-shrink: 0;
	margin-right: 12px;
	color: var(--sw-accent);
	transition: color 0.3s ease;
}

.drawer-link:hover iconify-icon,
.drawer-link.active iconify-icon {
	color: #11101D !important;
}

.drawer-connect {
	margin-top: auto;
	padding-top: 10px;
}

.sw-drawer-social-menu {
	display: flex;
	align-items: center;
	gap: 2px;
}

.premium-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.4rem;
	text-decoration: none;
	transition: all 0.2s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-social-btn:hover {
	background: rgba(49, 168, 255, 0.1);
	color: var(--sw-accent);
	border-color: rgba(49, 168, 255, 0.3);
	transform: translateY(-2px);
}

.premium-drawer-footer {
	padding: 20px;
	background: #0a0a0a;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-user-card {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.premium-user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.premium-user-details {
	display: flex;
	flex-direction: column;
}

.premium-user-name {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--sw-heading);
}

.premium-user-email {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
}

.premium-user-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.premium-action-btn,
.premium-login-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.premium-action-btn {
	background: rgba(255, 255, 255, 0.05);
	color: var(--sw-heading);
}

.premium-action-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

.premium-logout {
	color: #ff6b6b;
	background: rgba(255, 50, 50, 0.1);
}

.premium-logout:hover {
	background: rgba(255, 50, 50, 0.2);
}

.premium-login-btn {
	background: rgba(var(--sw-accent-rgb, 49, 168, 255), 0.08);
	border: 1px solid rgba(var(--sw-accent-rgb, 49, 168, 255), 0.35);
	color: var(--sw-accent, #31a8ff);
	width: 100%;
	padding: 11px 12px;
	box-sizing: border-box;
}

.premium-login-btn:hover {
	background: rgba(var(--sw-accent-rgb, 49, 168, 255), 0.18);
	border-color: rgba(var(--sw-accent-rgb, 49, 168, 255), 0.55);
	color: var(--sw-accent-hover, #5fc0ff) !important;
}

body #nav-drawer ul.sub-menu {
	display: none;
	opacity: 1;
	visibility: visible;
	height: auto;
	max-height: none;
	overflow: visible;
	margin: 4px 0 10px 18px;
	padding: 6px 0 6px 16px;
	border-left: 2px solid rgba(255, 255, 255, 0.08);
	background: transparent;
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

body #nav-drawer li.is-open>ul.sub-menu {
	display: block;
	animation: fadeInSubMenu 0.2s ease forwards;
}

@keyframes fadeInSubMenu {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

body #nav-drawer ul.sub-menu li {
	display: block;
	margin-bottom: 2px;
}

body #nav-drawer ul.sub-menu li a.drawer-link,
body #nav-drawer ul.sub-menu li a {
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.7);
	padding: 10px 12px;
	text-decoration: none;
	font-size: 0.9rem;
	background: transparent;
	border-radius: 12px;
	transition: all 0.3s ease;
	margin-bottom: 0;
}

body #nav-drawer ul.sub-menu li a.drawer-link:hover,
body #nav-drawer ul.sub-menu li a:hover {
	color: #11101D !important;
	background: #fff !important;
	transform: none;
}

.nav-drawer li.menu-item-has-children>.drawer-link::after {
	content: '+';
	margin-left: auto;
	font-size: 1.2rem;
	opacity: 0.5;
}

.nav-drawer li.is-open>.drawer-link::after {
	content: '-';
	opacity: 1;
	color: var(--sw-accent);
}

.drawer-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	z-index: 1900;
	display: none;
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.drawer-backdrop.show {
	display: block;
	opacity: 1;
	pointer-events: auto;
}

@media (max-width: 1024px) {

	.center-nav,
	.social-pill {
		display: none;
	}

	.main-header {
		grid-template-columns: auto auto;
	}

	.menu-toggle {
		display: flex;
		width: 32px;
		height: 32px;
		min-width: 32px;
		min-height: 32px;
		padding: 0;
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.main-header {
		height: 60px;
		padding: 0 12px;
		margin: 0;
		left: 0;
		top: 0;
		width: 100%;
		border-radius: 0;
		gap: 8px;
	}

	.logo-container,
	.logo-img {
		width: 32px;
		height: 32px;
	}

	.logo-text {
		font-size: 0.8rem;
		line-height: 1.1;
		max-width: 130px;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.header-right {
		gap: 6px;
	}

	.header-search-trigger {
		width: 32px;
		height: 32px;
		min-width: 32px;
		min-height: 32px;
		font-size: 1rem;
	}

	.user-avatar-img {
		width: 32px;
		height: 32px;
	}



	/* .menu-toggle display rule moved to 1024px */

	.details-dropdown-wrap {
		display: none !important;
	}

	.login-btn {
		padding: 0 !important;
		width: 32px !important;
		height: 32px !important;
		min-width: 32px !important;
		justify-content: center !important;
		gap: 0 !important;
		border-radius: 50% !important;
	}

	.login-btn span {
		display: none !important;
	}

	.login-btn iconify-icon {
		font-size: 1.1rem !important;
	}
}

/* Premium Login Choice Modal */
.sw-login-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.sw-login-modal.open {
	opacity: 1;
	visibility: visible;
}

.sw-login-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(4, 4, 6, 0.85);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

/* Background animated orbs/particles */
.sw-login-modal-bg-anim {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.12;
	mix-blend-mode: screen;
	animation: floatOrb 12s infinite ease-in-out alternate;
}

.orb-1 {
	top: -5%;
	left: -5%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, var(--sw-accent, #31a8ff) 0%, transparent 70%);
	animation-duration: 15s;
}

.orb-2 {
	bottom: -5%;
	right: -5%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, #ff007f 0%, transparent 70%);
	animation-duration: 12s;
	animation-delay: -3s;
}

.orb-3 {
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, #7000ff 0%, transparent 70%);
	animation-duration: 18s;
	animation-delay: -6s;
}

@keyframes floatOrb {
	0% {
		transform: translateY(0) scale(1) rotate(0deg);
	}

	50% {
		transform: translateY(-20px) scale(1.08) rotate(180deg);
	}

	100% {
		transform: translateY(20px) scale(0.92) rotate(360deg);
	}
}

.sw-login-modal-container {

	padding: 30px;

	max-width: 420px;
	z-index: 2;

	text-align: center;
}

.sw-login-modal.open .sw-login-modal-container {
	transform: translateY(0);
}

/* Modal Tabs styling */
.sw-modal-tabs {
	display: flex;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 4px;
	margin-bottom: 24px;
	position: relative;
	z-index: 5;
}

.sw-modal-tab-btn {
	flex: 1;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.55);
	padding: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	border-radius: 9px;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.sw-modal-tab-btn:hover {
	color: var(--sw-heading);
	background: rgba(255, 255, 255, 0.02);
}

.sw-modal-tab-btn.active {
	background: rgba(255, 255, 255, 0.08);
	color: var(--sw-heading);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Tab Panels */
.sw-modal-panel {
	display: none;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.sw-modal-panel.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

/* Sign Up CTA Card Perks */
.signup-cta-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 24px;
	text-align: left;
	display: grid;
	gap: 10px;
}

.signup-cta-perk {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.85rem;
}

.signup-cta-perk iconify-icon {
	font-size: 1.1rem;
	flex-shrink: 0;
}

.sw-login-provider-btn.signup-redirect-btn {
	background: var(--sw-accent, #31a8ff);
	color: var(--sw-heading);
	justify-content: space-between;
	padding: 14px 20px;
	box-shadow: 0 4px 20px rgba(49, 168, 255, 0.25);
}

.sw-login-provider-btn.signup-redirect-btn:hover {
	background: var(--sw-accent-hover, #50b7ff);
	box-shadow: 0 6px 24px rgba(49, 168, 255, 0.4);
	transform: translateY(-2px);
}

.sw-login-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: #999;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
}

.sw-login-modal-close:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--sw-heading);
}

.sw-login-modal-logo {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: block;
	margin: 0 auto 20px auto;
}

.sw-login-modal-lottie {
	width: 80px;
	height: 80px;
	display: block;
	margin: 0 auto 12px auto;
	filter: drop-shadow(0 0 15px rgba(255, 196, 0, 0.25));
}


.provider-badge-desc {
	display: block;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.76rem;
	margin-top: 6px;
	margin-bottom: 12px;
	text-align: center;
	line-height: 1.35;
}

.sw-login-modal-header h3 {
	color: var(--sw-heading);
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0 0 8px;
}

.sw-login-modal-header p {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.85rem;
	margin: 0 0 32px;
	line-height: 1.4;
}

.sw-login-provider-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	padding: 14px;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
	border: 1px solid transparent;
}

.sw-login-provider-btn iconify-icon {
	font-size: 1.25rem;
}

.sw-login-provider-btn.google {
	background: #fff;
	color: #1f1f1f;
}

.sw-login-provider-btn.google:hover {
	background: #f1f1f1;
	transform: translateY(-1px);
}

/* Sign Up Header Button Styles */
.login-btn.signup-btn {
	background: rgba(var(--sw-accent-rgb, 49, 168, 255), 0.08);
	border-color: rgba(var(--sw-accent-rgb, 49, 168, 255), 0.35);
	color: var(--sw-accent, #31a8ff);
	transition: all 0.25s ease;
}

.login-btn.signup-btn:hover {
	background: rgba(var(--sw-accent-rgb, 49, 168, 255), 0.18);
	border-color: rgba(var(--sw-accent-rgb, 49, 168, 255), 0.55);
	color: var(--sw-accent-hover, #5fc0ff) !important;
}

/* Details Dropdown Wrapper */
.details-dropdown-wrap {
	position: relative;
	display: inline-block;
	z-index: 10;
}

.details-btn {
	align-items: center;
	gap: 6px;
}

.details-arrow {
	font-size: 0.8rem;
	opacity: 0.7;
	transition: transform 0.2s ease;
	margin-left: 2px;
}

.details-dropdown-wrap.is-open .details-arrow {
	transform: rotate(180deg);
}

/* Dropdown Menu Container */
.details-dropdown-menu {
	position: absolute;
	top: 130%;
	right: 0;
	background: rgb(10 10 12 / 95%);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 8px;
	min-width: 220px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
	z-index: 2000;
}

.details-dropdown-wrap.is-open .details-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Menu List */
.header-outer .main-header .details-dropdown-wrap .details-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.header-outer .main-header .details-dropdown-wrap .details-menu-list li {
	position: relative;
	width: 100%;
}

.header-outer .main-header .details-dropdown-wrap .details-menu-list li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: rgba(255, 255, 255, 0.75);
	padding: 10px 14px;
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 500;
	border-radius: 8px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.header-outer .main-header .details-dropdown-wrap .details-menu-list li a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--sw-heading);
}

/* Parent menu items indicator arrow */
.header-outer .main-header .details-dropdown-wrap li.menu-item-has-children>a::after {
	content: "›";
	font-size: 1.2rem;
	line-height: 1;
	margin-left: auto;
	padding-left: 12px;
	opacity: 0.6;
	transition: transform 0.2s ease;
	display: inline-block;
}

.header-outer .main-header .details-dropdown-wrap li.menu-item-has-children.is-open>a::after {
	opacity: 1;
	transform: rotate(90deg);
}

/* Sub-menu (Inline Accordion) Container */
.header-outer .main-header .details-dropdown-wrap ul.sub-menu {
	position: relative;
	top: 0;
	left: 0;
	right: auto;
	margin: 4px 0;
	border: none;
	border-radius: 0;
	min-width: 0;
	display: none;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	list-style: none;
	z-index: auto;
}

.header-outer .main-header .details-dropdown-wrap li.menu-item-has-children.is-open>ul.sub-menu {
	display: block;
	padding: 5px 3px 5px 3px;
	background: #000000;
	border-radius: 10px;
}

/* Style child links */
.header-outer .main-header .details-dropdown-wrap ul.sub-menu li a {
	padding: 6px 12px;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.6);
}

.header-outer .main-header .details-dropdown-wrap ul.sub-menu li a:hover {
	color: var(--sw-heading);
	background: rgba(255, 255, 255, 0.05);
}