#htw-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.6);
	box-sizing: border-box;
	font-family: Vazirmatn, Tahoma, sans-serif;
	direction: rtl;
}

#htw-popup-overlay.htw-popup-visible {
	display: flex;
}

#htw-popup-box {
	position: relative;
	width: 100%;
	max-width: 420px;
	padding: 32px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
	box-sizing: border-box;
	text-align: right;
	animation: htwFadeIn 0.25s ease-out both;
}

#htw-popup-close {
	position: absolute;
	top: 14px;
	left: 16px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #222;
	font: inherit;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

#htw-popup-title {
	margin: 0 0 14px;
	color: #1a1a1a;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
}

#htw-popup-body {
	margin: 0 0 20px;
	color: #444;
	font-size: 15px;
	line-height: 1.8;
}

#htw-popup-contact {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 18px;
	padding: 16px;
	border-radius: 10px;
	background: #f5f5f5;
	text-align: center;
}

#htw-popup-contact-label {
	color: #333;
	font-size: 14px;
	font-weight: 600;
}

#htw-popup-phone {
	color: #c0392b;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0.5px;
	direction: ltr;
}

#htw-popup-platforms {
	color: #666;
	font-size: 13px;
	line-height: 1.7;
}

.htw-popup-credit {
	margin: 0;
	color: #777;
	font-size: 12px;
	line-height: 1.7;
	text-align: center;
}

@keyframes htwFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@media (max-width: 480px) {
	#htw-popup-overlay {
		padding: 14px;
	}

	#htw-popup-box {
		padding: 26px 20px 22px;
		border-radius: 14px;
	}

	#htw-popup-title {
		font-size: 20px;
	}

	#htw-popup-body {
		font-size: 14px;
	}

	#htw-popup-phone {
		font-size: 20px;
	}

	.htw-popup-credit {
		font-size: 11px;
	}
}
