/* Trigger Button */
.angie-popup-trigger-wrapper-55eb0897 {
	/* Use fixed positioning everywhere so it stays fixed to the screen */
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 9998;
}

/* Ensure it stays fixed even inside the Elementor editor canvas */
.elementor-editor-active .angie-popup-trigger-wrapper-55eb0897 {
	position: fixed;
	bottom: 30px;
	left: 30px;
    z-index: 99999; /* Higher z-index in editor to overlay correctly */
}


.angie-open-menu-btn-55eb0897 {
	background-color: #000;
	color: #fff;
	border: none;
	border-radius: 8px; /* Square with rounded corners */
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.angie-open-menu-btn-55eb0897:hover {
	transform: scale(1.05);
	background-color: #333;
}

/* Ensure SVG icon visibility */
.angie-open-menu-btn-55eb0897 svg {
    stroke: #ffffff;
    fill: none;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    display: block;
}

.angie-open-menu-btn-55eb0897 svg line {
    stroke: inherit;
    stroke-width: 2;
}

/* Off-canvas Menu Wrapper */
.angie-popup-menu-wrapper-55eb0897 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999; /* Super high so it beats elementor UI */
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.3s, opacity 0.3s ease;
}

/* Ensure the wrapper doesn't get clipped by Elementor's UI containers */
.elementor-editor-active .angie-popup-menu-wrapper-55eb0897 {
    position: fixed !important;
    z-index: 9999999 !important;
}


.angie-popup-menu-wrapper-55eb0897.is-open-55eb0897 {
	visibility: visible;
	opacity: 1;
}

/* Overlay */
.angie-popup-overlay-55eb0897 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

/* Off-canvas Nav Panel */
.angie-popup-nav-55eb0897 {
	position: absolute;
	top: 0;
	left: 0;
	width: 320px;
	height: 100%;
	background-color: #fff;
	box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
	transform: translateX(-100%);
	transition: transform 0.4s ease;
	display: flex;
	flex-direction: column;
}

.angie-popup-menu-wrapper-55eb0897.is-open-55eb0897 .angie-popup-nav-55eb0897 {
	transform: translateX(0);
}

/* Header & Close Button */
.angie-popup-header-55eb0897 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 30px;
	border-bottom: 1px solid #eee;
}

.angie-popup-title-55eb0897 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #333;
}

.angie-close-menu-btn-55eb0897 {
	background: transparent;
	border: none;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	color: #888;
	transition: color 0.2s ease;
}

.angie-close-menu-btn-55eb0897:hover {
	color: #d32f2f;
}

/* Navigation Links */
.angie-nav-links-55eb0897 {
	list-style: none;
	padding: 20px 0;
	margin: 0;
	flex-grow: 1;
	overflow-y: auto;
}

.angie-nav-links-55eb0897 li {
	margin: 0;
}

.angie-nav-links-55eb0897 a {
	display: block;
	padding: 15px 30px;
	color: #444;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 500;
	transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.angie-nav-links-55eb0897 a:hover {
	background-color: #f9f9f9;
	color: #000;
	padding-left: 35px;
}