.floating-menu-trigger-c73d3112 {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	border-radius: 8px;
	background-color: #d11d1d;
	color: #ffffff;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.floating-menu-trigger-c73d3112:hover {
	transform: scale(1.05);
	background-color: #b01515;
}

.floating-menu-trigger-c73d3112 svg {
	width: 26px;
	height: 26px;
	position: absolute;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-menu-trigger-c73d3112 .close-icon-c73d3112 {
	opacity: 0;
	transform: rotate(-90deg);
}

.floating-menu-trigger-c73d3112[aria-expanded="true"] .menu-icon-c73d3112 {
	opacity: 0;
	transform: rotate(90deg);
}

.floating-menu-trigger-c73d3112[aria-expanded="true"] .close-icon-c73d3112 {
	opacity: 1;
	transform: rotate(0deg);
}

/* Panel Overlay */
.floating-menu-panel-c73d3112 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99998;
	visibility: hidden;
	transition: visibility 0.4s;
}

.floating-menu-panel-c73d3112[aria-hidden="false"] {
	visibility: visible;
}

.floating-menu-panel-overlay-c73d3112 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.floating-menu-panel-c73d3112[aria-hidden="false"] .floating-menu-panel-overlay-c73d3112 {
	opacity: 1;
}

/* Panel Content */
.floating-menu-panel-content-c73d3112 {
	position: absolute;
	top: 0;
	right: -320px;
	width: 300px;
	height: 100%;
	background-color: #ffffff;
	box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
	padding: 40px 24px;
	box-sizing: border-box;
	transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	text-align: right;
}

.floating-menu-panel-c73d3112[aria-hidden="false"] .floating-menu-panel-content-c73d3112 {
	right: 0;
}

.floating-menu-header-c73d3112 {
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.floating-menu-header-c73d3112 h3 {
	margin: 0;
	font-size: 20px;
	color: #222222;
	font-weight: 700;
}

.floating-menu-nav-c73d3112 ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.floating-menu-nav-c73d3112 li {
	margin-bottom: 15px;
}

.floating-menu-nav-c73d3112 a {
	display: block;
	font-size: 18px;
	color: #444444;
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 1px solid transparent;
	transition: color 0.2s, padding-right 0.2s;
}

.floating-menu-nav-c73d3112 a:hover {
	color: #d11d1d;
	padding-right: 8px;
}
