.kahoo-desktop-nav {
	display: block;
}

.kahoo-desktop-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 25px;
}

.kahoo-desktop-item {
	position: relative;
}

.kahoo-desktop-item > a {
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: #222;
	padding: 10px 2px;
	white-space: nowrap;
	position: relative;
	transition: color .25s ease;
}

/* افکت ۱: خط زیرین متحرک */
.kahoo-hover-underline .kahoo-desktop-item > a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 100%;
	height: 2px;
	background-color: #e63946;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .25s ease;
}
.kahoo-hover-underline .kahoo-desktop-item > a:hover::after {
	transform: scaleX(1);
}

/* افکت ۲: پرشدن پس‌زمینه */
.kahoo-hover-background .kahoo-desktop-item > a {
	padding: 10px 16px;
	border-radius: 6px;
	transition: color .25s ease, background-color .25s ease;
}
.kahoo-hover-background .kahoo-desktop-item > a:hover {
	background-color: rgba(230, 57, 70, 0.08);
}

/* افکت ۳: بزرگ‌نمایی */
.kahoo-hover-grow .kahoo-desktop-item > a {
	transition: color .25s ease, transform .25s ease;
	transform-origin: center;
}
.kahoo-hover-grow .kahoo-desktop-item > a:hover {
	transform: scale(1.08);
}

.kahoo-desktop-chevron {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-inline-end: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	margin-top: -4px;
}

.kahoo-desktop-submenu {
	list-style: none;
	margin: 0;
	padding: 10px 0;
	position: absolute;
	top: 100%;
	inset-inline-start: 0;
	min-width: 220px;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	z-index: 999;
}

.kahoo-desktop-submenu .kahoo-desktop-submenu {
	top: 0;
	inset-inline-start: 100%;
}

.kahoo-desktop-item.has-children:hover > .kahoo-desktop-submenu,
.kahoo-desktop-item.has-children.kahoo-focus-open > .kahoo-desktop-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.kahoo-desktop-submenu .kahoo-desktop-item > a {
	padding: 10px 18px;
}
