/**
 * استایل سمت کاربر «قسطی شو».
 * راست‌چین، مدرن و مینیمال.
 */

.easyghest-widget {
	--ghsh-accent: #6366f1;
	direction: rtl;
	font-family: inherit;
	margin: 18px 0;
	transition: transform .25s ease, box-shadow .25s ease;
	position: relative;
}
.easyghest-widget.is-clickable { cursor: pointer; }
.easyghest-widget:focus-visible { outline: 3px solid rgba(99, 102, 241, .4); outline-offset: 3px; }

.easyghest-widget__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
/* لوگو سمت چپ کارت */
.easyghest-widget__media { flex: 0 0 auto; display: grid; place-items: center; order: 2; }
.easyghest-widget__icon {
	object-fit: contain;
	border-radius: 16px;
}
/* متن سمت راست کارت */
.easyghest-widget__body { flex: 1 1 auto; order: 1; min-width: 0; }
.easyghest-widget__title {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.7;
}
.easyghest-widget__desc {
	margin: 0;
	font-size: 14.5px;
	line-height: 2;
	font-weight: 500;
}
/* اعداد و مقادیر برجسته داخل توضیحات */
.easyghest-widget__hl {
	font-weight: 800;
}

/* پیام کارمزد تسویه */
.easyghest-checkout-notice {
	padding: 14px 18px !important;
	border-radius: 14px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	margin-top: 15px !important;
	margin-bottom: 15px !important;
	line-height: 1.9 !important;
}

/* پاپ‌آپ */
.easyghest-popup {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	direction: rtl;
}
.easyghest-popup[hidden] { display: none; }
.easyghest-popup__backdrop {
	position: absolute;
	inset: 0;
	background: var(--ghsh-backdrop, #0f172a);
	opacity: .55;
	animation: ghsh-backdrop .25s ease;
}
.easyghest-popup.is-blur .easyghest-popup__backdrop {
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.easyghest-popup__dialog {
	position: relative;
	z-index: 1;
	background: #fff;
	color: #475569;
	width: 100%;
	max-width: 440px;
	padding: 34px 30px 30px;
	box-shadow: 0 30px 80px -20px rgba(15, 23, 42, .5);
	animation: ghsh-pop .32s cubic-bezier(.16, 1, .3, 1);
}
/* دکمه بستن: همیشه در گوشه بالا-چپ، با آیکون کاملاً وسط‌چین */
.easyghest-popup__close {
	position: absolute;
	top: 14px;
	left: 14px;
	width: 36px;
	height: 36px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(148, 163, 184, .16);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	transition: background .2s ease, transform .2s ease;
}
.easyghest-popup__close svg { display: block; }
.easyghest-popup__close:hover { background: rgba(148, 163, 184, .3); transform: rotate(90deg); }
.easyghest-popup__logo { margin-bottom: 16px; }
.easyghest-popup__logo img { max-width: 96px; max-height: 96px; object-fit: contain; }
.easyghest-popup__title { margin: 0 0 12px; font-size: 20px; font-weight: 800; }
.easyghest-popup__body { font-size: 15px; line-height: 2.1; }
.easyghest-popup__body p { margin: 0; }

@keyframes ghsh-backdrop { from { opacity: 0; } to { opacity: .55; } }
@keyframes ghsh-pop { from { opacity: 0; transform: translateY(24px) scale(.96); } to { opacity: 1; transform: none; } }

/* واکنش‌گرا */
@media (max-width: 480px) {
	.easyghest-widget__inner { flex-direction: column; text-align: center; }
	.easyghest-widget { text-align: center !important; }
}

/* جلوگیری از اسکرول هنگام باز بودن پاپ‌آپ */
body.easyghest-noscroll { overflow: hidden; }
