.ldp-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.ldp-popup {
	position: relative;
	max-width: 420px;
	width: 100%;
	border-radius: 12px;
	padding: 36px 30px 30px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	animation: ldp-pop-in 0.25s ease-out;
}

@keyframes ldp-pop-in {
	from {
		opacity: 0;
		transform: scale(0.92);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.ldp-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: inherit;
	opacity: 0.6;
}

.ldp-close:hover {
	opacity: 1;
}

.ldp-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 16px;
}

.ldp-title {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 700;
}

.ldp-subtitle {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.5;
	opacity: 0.85;
}

.ldp-discount-badge {
	display: inline-block;
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 20px;
}

.ldp-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ldp-form input[type="email"] {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 6px;
}

.ldp-submit {
	width: 100%;
	padding: 13px 14px;
	font-size: 15px;
	font-weight: 700;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.ldp-submit {
	transition: background-color 0.15s ease;
}

.ldp-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.ldp-error {
	color: #e63946;
	font-size: 13px;
	margin: 4px 0 0;
}

.ldp-success p {
	font-size: 16px;
	font-weight: 600;
	margin: 10px 0 0;
}

@media (max-width: 480px) {
	.ldp-popup {
		padding: 28px 20px 24px;
	}
	.ldp-title {
		font-size: 20px;
	}
}
