/* *, */
/* *::before, */
/* *::after */
/* { */
	/* box-sizing: border-box; */
/* } */

/* body */
/* { */
	/* margin: 0; */
	/* font-family: 'Vazir', sans-serif; */
	/* direction: rtl; */
	/* background: #fff; */
	/* overflow-x: hidden; */
/* } */

.panel64 *
{
	font-size: initial;
}

.panel64 .header
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 40px;
	border-bottom: 1px solid #eee;
	flex-wrap: nowrap;
	position: relative;
}

.panel64 .logo
{
	font-size: 24px;
	font-weight: bold;
	white-space: nowrap;
	flex-grow: 1;
	margin-left: 40px;
}

.panel64 .logo img
{
	max-width: 150px;
	max-height: 50px;
}

.panel64 .logo span:first-child
{
	color: #b39958;
}

.panel64 .logo span:last-child
{
	color: #555;
}

.panel64 .menu-toggle
{
	display: none;
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
	color: #b39958;
	z-index: 1001;
}

.panel64 .info-container
{
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: flex-start;
	transition: max-height 0.4s ease, opacity 0.3s ease;
	padding: 0;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: thin;
}

.panel64 .info-container::-webkit-scrollbar
{
	height: 6px;
}

.panel64 .info-container::-webkit-scrollbar-thumb
{
	background: #ccc;
	border-radius: 6px;
}

.panel64 .info-item
{
	display: flex;
	align-items: center;
	gap: 12px;
	color: #555;
	min-width: 200px;
	max-width: 250px;
}

.panel64 .icon-circle
{
	width: 40px;
	height: 40px;
	background-color: #b39958;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
	flex-shrink: 0;
}

.panel64 .info-text
{
	display: flex;
	flex-direction: column;
	font-size: 14px;
	overflow: hidden;
}

.panel64 .info-text strong
{
	font-family: 'Vazir';
	font-weight: bold;
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.panel64 .info-text span
{
	font-family: 'Vazir';
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666;
}

.panel64 .hide-desktop
{
	display: none;
}

@media (max-width: 768px)
{
	.panel64
	{
		display: none;
	}
	
	.panel64 .header
	{
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}

	.panel64 .menu-toggle
	{
		display: block;
	}

	.panel64 .info-container
	{
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		overflow: hidden;
		max-height: 0;
		opacity: 0;
		pointer-events: none;
		gap: 10px;
		background: #f9f9f9;
		border-radius: 12px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
		margin-top: 0;
		transition: all 0.4s ease;
		padding: 0;
	}

	.panel64 .info-container.open
	{
		max-height: 300px;
		overflow-y: auto;
		opacity: 1;
		pointer-events: all;
		margin-top: 10px;
		padding: 16px;
	}

	.panel64 .info-container.open::-webkit-scrollbar
	{
		width: 6px;
	}

	.panel64 .info-container.open::-webkit-scrollbar-thumb
	{
		background-color: #ccc;
		border-radius: 3px;
	}

	.panel64 .info-item
	{
		width: 100% !important;
		max-width: 100% !important;
		min-width: unset !important;
		margin-bottom: 8px;
		background-color: #ffffff;
		padding: 10px 12px;
		border-radius: 8px;
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
		display: flex;
	}

	.panel64 .hide-desktop
	{
		display: flex !important;
	}

	.panel64 .hide-mobile
	{
		display: none !important;
	}

	.panel64 .mobile-call-button
	{
		display: inline-flex;
		align-items: center;
		margin-top: 10px;
		padding: 10px 16px;
		background-color: #b39958;
		color: #fff;
		border-radius: 8px;
		text-decoration: none;
		font-weight: bold;
		font-size: 15px;
		align-self: stretch;
		justify-content: center;
		width: 100%;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	}

	.panel64 .mobile-call-button i
	{
		margin-left: 8px;
	}
}