/**
 * Popup „Market Pulse” — aliniat la brand-ul site-ului (roșu #c2131f, titluri
 * Merriweather serif, butoane pătrate Roboto). Ascuns implicit; JS-ul îl arată.
 */
.gwmi-mp-popup { position: fixed; inset: 0; z-index: 100000; display: none; }
.gwmi-mp-popup.is-open { display: block; }

.gwmi-mp-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(38, 38, 38, .62);
}

.gwmi-mp-popup__box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(.97);
	opacity: 0;
	width: min(560px, calc(100vw - 32px));
	max-height: calc(100vh - 48px);
	overflow: auto;
	background: #fff;
	border-top: 4px solid #c2131f;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
	padding: 30px 32px 32px;
	transition: transform .22s ease, opacity .22s ease;
}
.gwmi-mp-popup.is-open .gwmi-mp-popup__box {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.gwmi-mp-popup__close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 34px;
	height: 34px;
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	color: #7f7f7f;
	cursor: pointer;
}
.gwmi-mp-popup__close:hover { color: #c2131f; }

.gwmi-mp-popup__eyebrow {
	margin: 0 0 6px;
	font-family: "Roboto", -apple-system, "Segoe UI", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #c2131f;
}
.gwmi-mp-popup__title {
	margin: 0 0 12px;
	font-family: "Merriweather", Georgia, serif;
	font-weight: 400;
	font-size: 26px;
	line-height: 1.25;
	color: #262626;
}
.gwmi-mp-popup__text {
	font-family: "Merriweather", Georgia, serif;
	color: #595959;
	font-size: 15px;
	line-height: 1.7;
}
.gwmi-mp-popup__text p { margin: 0 0 10px; }
.gwmi-mp-popup__body { margin-top: 18px; }

.gwmi-mp-popup__cta {
	display: inline-block;
	background: #c2131f;
	color: #fff !important;
	text-decoration: none;
	font-family: "Roboto", -apple-system, "Segoe UI", sans-serif;
	font-weight: 700;
	font-size: 15px;
	padding: 13px 26px;
	border-radius: 0;
}
.gwmi-mp-popup__cta:hover { background: #262626; }

.gwmi-mp-popup__placeholder {
	border: 1px dashed #d9d9d9;
	padding: 18px;
	color: #7f7f7f;
	font-family: "Roboto", -apple-system, "Segoe UI", sans-serif;
	font-size: 14px;
	background: #f2f2f2;
	text-align: center;
}

@media (max-width: 480px) {
	.gwmi-mp-popup__box { padding: 24px 20px 26px; }
	.gwmi-mp-popup__title { font-size: 22px; }
}
