/* Overlay затемнения */
#popup-call { display: none; }
#popup-call.active {
	display: flex;
	position: fixed;
	inset: 0;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	overflow: hidden;
}
.call__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.6);
	z-index: 1;
}
.call-popup-content.call__frame {
	background: #2a2a2a;
	border-radius: 14px;
	max-width: 900px;
	width: 96%;
	margin: 40px auto;
	padding: 32px 24px;
	box-shadow: 0 4px 32px rgba(0,0,0,0.25);
	border: 2px solid #fff;
	position: relative;
	z-index: 2;
}
.call-popup-flex {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	position: relative;
}
.call-popup-left {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	pointer-events: none;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.call-arrow {
	width: 250px;
	height: 80px;
	object-fit: contain;
	filter: drop-shadow(0 0 8px #fff8);
}
.call-popup-main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 220px;
}
.call-title {
	font-size: 38px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	margin-bottom: 24px;
	letter-spacing: .5px;
}
.call-phone-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.call-phone-number {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 0;
}
.call-popup-button {
	display: inline-block;
	background: linear-gradient(135deg,#ff0000,#cc0000 60%,#ff0000);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 16px 48px;
	font-size: 26px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 2px 12px rgba(0,0,0,0.18);
	transition: background 0.2s, box-shadow 0.2s;
	text-decoration: none;
    margin-top: 50px;
}
.call-popup-button:hover {
	background: linear-gradient(135deg,#cc0000,#ff0000 60%,#cc0000);
	box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}
.popup-close {
	position: absolute;
	top: 18px;
	right: 18px;
	background: #ff0000;
	color: #fff;
	font-size: 32px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	border: none;
	box-shadow: 0 4px 8px rgba(0,0,0,0.18);
	transition: background 0.2s, transform 0.2s;
}
.popup-close:hover {
	background: #cc0000;
	transform: scale(1.08);
}
@media (max-width: 700px) {
	.call-popup-content.call__frame {
		padding: 12px 2px;
		max-width: 99vw;
	}
	.call-title { font-size: 24px; }
	.call-phone-number { font-size: 20px; }
	.call-popup-button { font-size: 18px; padding: 10px 24px; }
	.call-arrow { width: 48px; height: 48px; }
}
