.angie-sticky-hamburger-3434 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background-color: transparent;
	font-family: 'Lexend', sans-serif;
	pointer-events: none;
}

@media (min-width: 1025px) {
	.angie-sticky-hamburger-3434 {
		display: none;
	}
}

@media (max-width: 1024px) {
	.angie-hamburger-toggle-3434 {
		position: absolute;
		top: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
		background: transparent;
		border: none;
		cursor: pointer;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 6px;
		z-index: 10000;
		pointer-events: auto;
		padding: 0;
	}

	.angie-hamburger-line-3434 {
		width: 30px;
		height: 3px;
		background-color: #333;
		border-radius: 2px;
		transition: transform 0.3s ease, opacity 0.3s ease;
	}

	.angie-hamburger-nav-3434 {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 400px;
		height: 100vh;
		background-color: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		box-shadow: -5px 0 15px rgba(0,0,0,0.1);
		transition: right 0.4s ease-in-out;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 40px;
		pointer-events: auto;
		overflow-y: auto;
	}

	.angie-sticky-hamburger-3434.is-active .angie-hamburger-nav-3434 {
		right: 0;
	}

	.angie-hamburger-menu-3434 {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.angie-hamburger-menu-3434 li {
		margin-bottom: 20px;
	}

	/* Target WordPress menu link classes */
	.angie-hamburger-menu-3434 a {
		font-size: 24px;
		font-weight: 500;
		color: #333;
		text-decoration: none;
		transition: color 0.2s ease;
		display: block;
	}

	.angie-hamburger-menu-3434 a:hover {
		color: #233ce6;
	}
    
    .angie-hamburger-menu-3434 ul.sub-menu {
        padding-left: 20px;
        margin-top: 10px;
        list-style: none;
    }
    
    .angie-hamburger-menu-3434 ul.sub-menu a {
        font-size: 18px;
    }

	.angie-sticky-hamburger-3434.is-active .angie-hamburger-line-3434:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
	}
	.angie-sticky-hamburger-3434.is-active .angie-hamburger-line-3434:nth-child(2) {
		opacity: 0;
	}
	.angie-sticky-hamburger-3434.is-active .angie-hamburger-line-3434:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}
}