/*
=========================================================
60-popup-maker.css — Popup Maker styles (ID: 653)
=========================================================
*/

/* ==================================================
   POPUP MAKER – MODERN LIGHTBOX (CLEAN REWRITE)
   Popup ID: 653
   ================================================== */

/* ---------- LIGHTBOX OVERLAY ---------- */
.pum-overlay {
	background: rgba(15, 15, 15, 0.75) !important;
	backdrop-filter: blur(3px);
}

/* ---------- POPUP CONTAINER ---------- */
#popmake-653 {
	background: #ffffff;
	border-radius: 22px;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
	max-width: 520px !important;
	padding: 0;
	overflow: hidden;
}

/* ---------- INNER CONTENT ---------- */
#popmake-653 .pum-content {
	padding: 56px 36px 36px; /* extra top padding for close button */
	outline: none;
}

/* ---------- HEADERS ---------- */
#popmake-653 h3 {
	margin: 0 0 26px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: #111;
	text-align: center;
}

/* WhatsApp headline */
#popmake-653 h3:last-of-type {
	margin-top: 32px;
	font-size: 18px;
	color: #ff7100;
}

/* ==================================================
   CONTACT FORM 7
   ================================================== */

#popmake-653 .wpcf7-form p {
	margin-bottom: 18px;
}

#popmake-653 label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #444;
}

/* Inputs */
#popmake-653 input[type="text"],
#popmake-653 input[type="email"],
#popmake-653 input[type="tel"] {
	width: 100%;
	padding: 14px 16px;
	border-radius: 14px;
	border: 1px solid #e6e6e6;
	font-size: 15px;
	background: #fafafa;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#popmake-653 input:focus {
	background: #fff;
	border-color: #ff7100;
	box-shadow: 0 0 0 3px rgba(255, 113, 0, 0.18);
	outline: none;
}

/* Submit */
#popmake-653 input[type="submit"] {
	width: 100%;
	margin-top: 12px;
	padding: 15px;
	border-radius: 999px;
	border: none;
	background: #ff7100;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	box-shadow: 0 12px 34px rgba(255, 113, 0, 0.35);
}

#popmake-653 input[type="submit"]:hover {
	background: #ff5f00;
	transform: translateY(-2px);
	box-shadow: 0 16px 42px rgba(255, 113, 0, 0.45);
}

/* Spinner */
#popmake-653 .wpcf7-spinner {
	display: block;
	margin: 12px auto 0;
}

/* ==================================================
   PERFECT CLOSE BUTTON (FIXED)
   ================================================== */

#popmake-653 .pum-close {
	position: absolute;
	top: 16px;
	left: 16px;
	right: auto;

	width: 40px;
	height: 40px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: rgba(0, 0, 0, 0.06);
	border-radius: 50%;
	border: none;

	font-size: 0; /* hide default text */
	cursor: pointer;
	z-index: 10;

	transition: background 0.2s ease, transform 0.2s ease;
}

/* Centered X */
#popmake-653 .pum-close::before {
	content: "✕";
	font-size: 18px;
	line-height: 1;
	color: #333;
}

/* Hover */
#popmake-653 .pum-close:hover {
	background: rgba(0, 0, 0, 0.12);
	transform: scale(1.05);
}

/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 480px) {
	#popmake-653 {
		border-radius: 18px;
	}

	#popmake-653 .pum-content {
		padding: 52px 22px 28px;
	}

	#popmake-653 h3 {
		font-size: 18px;
	}
}
