.th-header-792ead49 {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.th-header-792ead49.is-scrolled {
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
	padding: 5px 0;
}

.th-header-inner-792ead49 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 40px;
	max-width: 1400px;
	margin: 0 auto;
	transition: padding 0.3s ease;
}

.th-header-792ead49.is-scrolled .th-header-inner-792ead49 {
	padding: 15px 40px;
}

.th-logo-area-792ead49 {
	display: flex;
	align-items: center;
}

.th-brand-792ead49 {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.th-nav-list-792ead49 {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
}

.th-nav-item-792ead49 {
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
	position: relative;
}

.th-nav-item-792ead49::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: currentColor;
	transition: width 0.3s ease;
}

.th-nav-item-792ead49:hover::after {
	width: 100%;
}

.th-cta-btn-792ead49 {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	padding: 12px 28px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.th-mobile-toggle-792ead49 {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 10000; /* Ensure toggle is above menu */
}

.th-mobile-toggle-792ead49 span {
	width: 25px;
	height: 2px;
	background-color: #fff;
	transition: 0.3s;
}

.th-mobile-toggle-792ead49.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.th-mobile-toggle-792ead49.is-active span:nth-child(2) {
	opacity: 0;
}

.th-mobile-toggle-792ead49.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
	.th-header-inner-792ead49 {
		padding: 15px 20px;
	}

	.th-nav-area-792ead49 {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: rgba(15, 15, 15, 0.98); /* Less transparent for readability */
		backdrop-filter: blur(15px);
		padding: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease, padding 0.4s ease;
	}
	
	.th-nav-area-792ead49.is-active {
		max-height: 100vh;
		padding: 20px 0 40px;
	}

	.th-nav-list-792ead49 {
		flex-direction: column;
		align-items: center;
		gap: 25px;
	}

	.th-nav-item-792ead49 {
		font-size: 18px; /* Larger tap targets */
	}

	.th-cta-area-792ead49 {
		display: none; /* Can be enabled inside menu if desired */
	}

	.th-mobile-toggle-792ead49 {
		display: flex;
	}
}
