/* Mobile Hamburger Navigation - d4f2be2e */

/* Hide entirely on desktop (above 768px) */
.mhn-d4f2be2e-wrapper {
	display: none;
}

/* =============================================
   Hide the Astra theme default mobile menu
   to prevent duplicate hamburger icons
   ============================================= */
@media (max-width: 921px) {
	.ast-mobile-menu-trigger-minimal,
	.ast-button-wrap .menu-toggle,
	.ast-header-break-point .ast-mobile-menu-buttons,
	.ast-header-break-point .menu-toggle,
	.ast-mobile-header-wrap .ast-button-wrap,
	.ast-header-break-point .ast-mobile-menu-trigger-minimal,
	.ast-builder-menu-mobile .ast-builder-menu-toggle,
	.ast-hfb-header .ast-button-wrap,
	.ast-mobile-popup-drawer,
	.ast-mobile-header-content,
	.ast-mobile-popup-inner,
	.ast-mobile-header-wrap .ast-mobile-menu-buttons {
		display: none !important;
	}
}

@media (max-width: 768px) {
	.mhn-d4f2be2e-wrapper {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 99999;
		background-color: #1a1a1a;
		padding: 0 16px;
	}

	/* Header row: logo left, hamburger right */
	.mhn-d4f2be2e-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 56px;
	}

	/* Logo */
	.mhn-d4f2be2e-logo-link {
		display: flex;
		align-items: center;
		text-decoration: none;
		flex-shrink: 0;
	}

	.mhn-d4f2be2e-logo {
		max-height: 40px;
		width: auto;
		display: block;
	}

	/* Site name fallback when no logo image */
	.mhn-d4f2be2e-site-name {
		color: #ffffff;
		font-size: 18px;
		font-weight: 700;
		text-decoration: none;
		letter-spacing: 0.5px;
	}

	.mhn-d4f2be2e-site-name:hover,
	.mhn-d4f2be2e-site-name:focus {
		color: #c9a84c;
	}

	/* Hamburger toggle button */
	.mhn-d4f2be2e-toggle {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 5px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 14px 8px;
		width: 44px;
		height: 44px;
		box-sizing: border-box;
		flex-shrink: 0;
	}

	.mhn-d4f2be2e-bar {
		display: block;
		width: 24px;
		height: 3px;
		background-color: #ffffff;
		border-radius: 2px;
		transition: transform 0.3s ease, opacity 0.3s ease;
	}

	/* Animate bars to X when open */
	.mhn-d4f2be2e-toggle.mhn-d4f2be2e-active .mhn-d4f2be2e-bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.mhn-d4f2be2e-toggle.mhn-d4f2be2e-active .mhn-d4f2be2e-bar:nth-child(2) {
		opacity: 0;
	}

	.mhn-d4f2be2e-toggle.mhn-d4f2be2e-active .mhn-d4f2be2e-bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	/* Dropdown menu */
	.mhn-d4f2be2e-dropdown {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
		background-color: #1a1a1a;
	}

	.mhn-d4f2be2e-dropdown.mhn-d4f2be2e-open {
		max-height: 400px;
	}

	.mhn-d4f2be2e-list {
		list-style: none;
		margin: 0;
		padding: 0 0 12px 0;
	}

	.mhn-d4f2be2e-item {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.mhn-d4f2be2e-link {
		display: block;
		padding: 14px 16px;
		color: #ffffff;
		text-decoration: none;
		font-size: 16px;
		font-weight: 500;
		letter-spacing: 0.5px;
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.mhn-d4f2be2e-link:hover,
	.mhn-d4f2be2e-link:focus {
		background-color: rgba(255, 255, 255, 0.08);
		color: #c9a84c;
		outline: none;
	}
}
