.eam-hover-menu {
	display: flex;
	width: 100%;
	overflow: hidden;
	font-family: inherit;
}

/* ---------- Left column ---------- */
.eam-menu-left {
	flex: 0 0 280px;
	width: 280px;
	display: flex;
	flex-direction: column;
	border-right: 1px solid #eee;
	background: #fafafa;
	padding: 10px;
	box-sizing: border-box;
}

.eam-tab-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
}

.eam-tab-item .eam-tab-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	font-size: 18px;
}

.eam-tab-item .eam-tab-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.eam-tab-title {
	flex: 1;
}

.eam-tab-arrow {
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.eam-tab-item.eam-active .eam-tab-arrow,
.eam-tab-item:hover .eam-tab-arrow {
	opacity: 1;
	transform: translateX(0);
}

.eam-tab-item.eam-active {
	background-color: #f3f1ff;
}

/* ---------- Right columns ---------- */
.eam-menu-right-wrap {
	flex: 1;
	position: relative;
	padding: 20px 24px;
	box-sizing: border-box;
}

.eam-menu-right {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	width: 100%;
}

.eam-menu-column {
	flex: 1 1 0;
	min-width: 200px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* ---------- Freely designed template panels ---------- */
.eam-menu-template {
	width: 100%;
}

.eam-menu-template-empty {
	width: 100%;
	padding: 30px;
	text-align: center;
	color: #999;
	font-size: 13px;
	font-style: italic;
	border: 1px dashed #ddd;
	border-radius: 8px;
}

.eam-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.eam-item:hover {
	background-color: #f7f6ff;
}

.eam-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	border: 1px solid #ece9ff;
	border-radius: 8px;
	font-size: 16px;
}

.eam-item-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.eam-item-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.eam-item-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}

.eam-item-desc {
	font-size: 13px;
	line-height: 1.4;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
	.eam-hover-menu {
		flex-direction: column;
	}
	.eam-menu-left {
		flex: 0 0 auto;
		width: 100% !important;
		border-right: none;
		border-bottom: 1px solid #eee;
	}
	.eam-menu-right {
		flex-direction: column;
	}
}
