.hsh-2989-wrapper {
	width: 100%;
	z-index: 999;
	position: relative;
}

/* Frontend Sticky Classes */
.hsh-2989-wrapper.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transition: transform 0.3s ease;
	/* Background color and shadow controlled by Elementor setting */
}

.hsh-2989-wrapper.is-hidden {
	transform: translateY(-100%);
}

.hsh-2989-container {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
}

.hsh-2989-toggle {
	background: none;
	border: none;
	padding: 10px;
	cursor: pointer;
	color: #333;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hsh-2989-dropdown {
	position: absolute;
	top: 100%;
	left: 20px;
	min-width: 200px;
	background: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
	/* Apply Lexend font specifically to dropdown */
	font-family: 'Lexend', sans-serif;
}

.hsh-2989-wrapper.is-sticky .hsh-2989-dropdown {
	top: 100%;
}

.hsh-2989-dropdown.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.hsh-2989-list {
	list-style: none;
	margin: 0;
	padding: 10px 0;
}

.hsh-2989-item {
	margin: 0;
}

.hsh-2989-link {
	display: block;
	padding: 10px 20px;
	color: #333;
	text-decoration: none;
	font-weight: 400;
	transition: background 0.2s ease;
}

.hsh-2989-link:hover {
	background: rgba(0,0,0,0.05);
}