/* Overlay */
.lp-overlay-recommend {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

/* Modal */
.lp-modal-content {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
	position: relative;
	animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.lp-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	border: none;
	font-size: 22px;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Header */
.lp-promo-header {
	background: linear-gradient(135deg, #ff2e63, #ffb606);
	color: #fff;
	text-align: center;
	padding: 50px 20px 90px;
	position: relative;
}

/* White Triangle */
.lp-promo-header::after {
	content: "";
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	height: 100px;
	background: #fff;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}

/* Text */
.lp-small-title {
	font-size: 14px;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.lp-discount {
	font-size: 110px;
	margin: 0;
	font-weight: 800;
	line-height: 1;
}

.lp-subtext {
	font-size: 16px;
	margin-top: 15px;
}

/* Form Section */
.lp-form-section {
	padding: 70px 30px 40px;
}

/* Horizontal Layout */
.lp-form-row {
	display: flex;
	gap: 15px;
	align-items: center;
}

/* Inputs */
.lp-form-row input {
	flex: 1;
	padding: 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	text-transform: uppercase;
}

/* Green Button */
.btn-submit {
	background: #2ecc40;
	color: #fff;
	border: none;
	padding: 14px 20px;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
	white-space: nowrap;
	transition: 0.3s;
}

.btn-submit:hover {
	background: #27ae38;
}

/* Animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-15px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile */
@media (max-width: 600px) {

	.lp-modal-content {
		width: 95%;
	}

	.lp-form-row {
		flex-direction: column;
	}

	.btn-submit {
		width: 100%;
	}

	.lp-discount {
		font-size: 80px;
	}
}

/* Overlay */
.lp-overlay-product {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

/* Modal */
.lp-modal-content-product {
	background: linear-gradient(135deg, #ff4f79, #ffb606);
	color: #fff;
	padding: 40px 30px;
	border-radius: 25px;
	text-align: center;
	width: 420px;
	max-width: 95%;
	position: relative;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Close */
.lp-close-product {
	position: absolute;
	top: 15px;
	right: 20px;
	background: transparent;
	border: none;
	font-size: 26px;
	color: #fff;
	cursor: pointer;
}

/* Header */
.lp-offer-title {
	font-size: 55px;
	font-weight: 800;
	margin: 0;
}

.lp-offer-subtitle {
	font-size: 18px;
	margin: 15px 0 30px;
}

/* Timer Layout */
.lp-timer-boxes {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-bottom: 35px;
}

.lp-time-box {
	background: #fff;
	color: #333;
	width: 70px;
	height: 85px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	font-weight: bold;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.lp-time-separator {
	font-size: 28px;
	font-weight: bold;
}

/* CTA Button */
.lp-cta-btn {
	display: block;
	background: linear-gradient(135deg, #ff6a8b, #ffb606);
	padding: 16px;
	border-radius: 12px;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	text-decoration: none;
	margin-bottom: 20px;
	transition: 0.3s;
}

.lp-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* No thanks */
.lp-no-thanks {
	color: #fff;
	opacity: 0.85;
	text-decoration: none;
	font-size: 14px;
}

.lp-no-thanks:hover {
	opacity: 1;
}

/* Responsive */
@media(max-width:480px) {
	.lp-modal-content-product {
		padding: 30px 20px;
	}

	.lp-offer-title {
		font-size: 40px;
	}

	.lp-time-box {
		width: 60px;
		height: 75px;
		font-size: 24px;
	}
}