/* פופאפ הרשמה (US-039) — RTL, ממותג navy/gold. נטען רק כששני המתגים דלוקים. */
.mlg-popup-open { overflow: hidden; }

.mlg-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	direction: rtl;
	background: rgba(0, 21, 42, .55);
	animation: mlg-pop-fade .2s ease;
}
/* חייב לגבור על display:flex כשמוסתר (specificity גבוה מ-[hidden] של הדפדפן). */
.mlg-popup-overlay[hidden] { display: none; }

.mlg-popup-box {
	position: relative;
	width: 100%;
	max-width: 440px;
	max-height: 92vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 12px;
	padding: 32px 26px 26px;
	box-shadow: 0 20px 60px rgba(0, 21, 42, .35);
	animation: mlg-pop-in .22s ease;
}

.mlg-popup-close {
	position: absolute;
	top: 8px;
	left: 12px;
	background: transparent;
	border: 0;
	padding: 4px 8px;
	font-size: 30px;
	line-height: 1;
	color: #99917f;
	cursor: pointer;
	transition: color .15s;
}
.mlg-popup-close:hover { color: #00152a; }

/* הטופס הפנימי — מנטרלים מסגרת/צל/רוחב, הקופסה כבר מספקת אותם. */
.mlg-popup-box .mlg-form-wrap { max-width: none; margin: 0; }
.mlg-popup-box .mlg-form { border: 0; box-shadow: none; padding: 0; background: transparent; }

@keyframes mlg-pop-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes mlg-pop-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
	.mlg-popup-overlay, .mlg-popup-box { animation: none; }
}
