/* body */
/* { */
	/* margin: 0; */
	/* font-family: 'Vazir', sans-serif; */
/* } */

.panel65 *
{
	font-size: initial;
}
.panel65 nav
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.panel65 .nav-right,
.panel65 .nav-left
{
	display: flex;
	align-items: center;
}

.panel65 .nav-right
{
	gap: 25px;
}

.panel65 .nav-left
{
	gap: 15px;
}

.panel65 .menu-items
{
	display: flex;
	gap: 25px;
}

.panel65 .menu-items a
{
	font-family: 'Vazir';
	text-decoration: none;
	color: #111;
	font-weight: bold;
	position: relative;
}

/* انیمیشن خط زیر منو در دسکتاپ */
.panel65 .menu-items a::after
{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -15px;
	width: 0;
	height: 1px;
	background: #111;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.panel65 .menu-items a:hover::after
{
	width: 100%;
}

.panel65 .social-icons a
{
	color: #111;
	font-size: 18px;
	text-decoration: none;
}

.panel65 .hamburger
{
	font-size: 24px;
	cursor: pointer;
	display: none;
}

.panel65 .mobile-panel
{
	position: fixed;
	top: 0;
	right: -100%;
	width: 250px;
	height: 100%;
	background: #fff;
	z-index: 1001;
	transition: right 0.3s ease;
	padding: 20px;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.panel65 .mobile-panel.active
{
	right: 0;
}

.panel65 .mobile-panel a
{
	font-family: 'Vazir';
	text-decoration: none;
	color: #111;
	margin: 10px 0;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
}

/* هدر پنل موبایل: آیکون و دکمه بستن */
.panel65 .mobile-header
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.panel65 .mobile-header-icon i
{
	font-size: 22px;
	color: #111;
}

.panel65 .mobile-header-icon img
{
	max-width: 60px;
	max-height: 600px;
}

.panel65 .close-btn
{
	align-self: flex-start;
	font-size: 24px;
	cursor: pointer;
	margin-bottom: 20px;
}

.panel65 .overlay
{
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.panel65 .overlay.active
{
	opacity: 1;
	visibility: visible;
}

@media (max-width: 768px)
{
	.panel65 .menu-items
	{
		display: none;
	}

	.panel65 .hamburger
	{
		display: block;
	}

	.panel65 nav
	{
		flex-direction: row;
		justify-content: space-between;
	}

	.panel65 .nav-right
	{
		order: 1;
	}

	.panel65 .nav-left
	{
		order: 2;
	}
}