/* Natureka Popup Scheduler – Quick Popup Frontend Styles */

.nps-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	animation: nps-fade-in .3s ease;
}

.nps-popup-overlay.nps-pos-bottom-right {
	align-items: flex-end;
	justify-content: flex-end;
	padding: 20px;
	background: transparent;
}

@keyframes nps-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.nps-popup-box {
	position: relative;
	width: 690px;
	max-width: 95vw;
	min-height: 430px;
	border-radius: 10px;
	border: 4px solid #c8a882;
	background-size: cover;
	background-position: center;
	background-color: #3d4d2e;
	overflow: hidden;
	display: flex;
	animation: nps-slide-in .4s ease;
}

.nps-pos-bottom-right .nps-popup-box {
	width: 420px;
	min-height: 300px;
	animation: nps-slide-up .4s ease;
}

@keyframes nps-slide-in {
	from { opacity: 0; transform: translateX(-30px); }
	to   { opacity: 1; transform: translateX(0); }
}

@keyframes nps-slide-up {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}

.nps-popup-overlay-dark {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.63);
	z-index: 0;
}

.nps-popup-content {
	position: relative;
	z-index: 1;
	padding: 24px 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	color: #fff;
	text-align: center;
	gap: 14px;
}

#nps-quick-popup .nps-popup-close {
	position: absolute !important;
	top: 10px !important;
	right: 12px !important;
	width: 30px !important;
	height: 30px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	border-radius: 50% !important;
	background: rgba(127, 138, 87, 0.85) !important;
	border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
	box-shadow: none !important;
	color: #fff !important;
	font-size: 18px !important;
	line-height: 1 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	margin: 0 !important;
	text-shadow: none !important;
	transition: background .2s, border-color .2s !important;
	z-index: 2 !important;
}
#nps-quick-popup .nps-popup-close:hover,
#nps-quick-popup .nps-popup-close:focus {
	background: #EFA90E !important;
	border-color: rgba(255, 255, 255, 0.8) !important;
	color: #fff !important;
	outline: none !important;
}

.nps-popup-heading {
	font-family: 'Ivvy', 'Georgia', serif;
	font-size: 45px;
	font-weight: 400;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
	margin: 0;
	line-height: 1.1;
}

.nps-pos-bottom-right .nps-popup-heading { font-size: 30px; }

.nps-popup-body {
	font-family: 'Poppins', 'Arial', sans-serif;
	font-size: 17px;
	font-weight: 400;
	margin: 0;
	line-height: 1.5;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .4);
}

.nps-pos-bottom-right .nps-popup-body { font-size: 14px; }

/* Coupon ticket */
.nps-coupon-ticket {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, .15);
	border: 2px dashed rgba(255, 255, 255, .65);
	border-radius: 8px;
	overflow: hidden;
	width: 88%;
	max-width: 480px;
	backdrop-filter: blur(4px);
}

.nps-pos-bottom-right .nps-coupon-ticket { width: 100%; }

.nps-coupon-scissors {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	color: rgba(255, 255, 255, .75);
	padding: 0 12px;
}

.nps-coupon-ticket-inner {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-left: 2px dashed rgba(255, 255, 255, .4);
	border-right: 2px dashed rgba(255, 255, 255, .4);
	padding: 10px 16px;
}

.nps-coupon-label {
	font-family: 'Poppins', 'Arial', sans-serif;
	font-size: 11px;
	color: rgba(255, 255, 255, .75);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 2px;
}

.nps-coupon-code {
	font-family: 'Ivvy', 'Georgia', serif;
	font-size: 22px;
	color: #fff;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, .4);
	letter-spacing: 2px;
	cursor: pointer;
}

.nps-pos-bottom-right .nps-coupon-code { font-size: 18px; }

#nps-quick-popup .nps-coupon-copy {
	width: 30px !important;
	height: 30px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	border-radius: 50% !important;
	background: rgba(127, 138, 87, 0.85) !important;
	border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
	box-shadow: none !important;
	color: #fff !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
	margin: 0 8px !important;
	padding: 0 !important;
	text-shadow: none !important;
	transition: background .2s, border-color .2s !important;
}
#nps-quick-popup .nps-coupon-copy:hover,
#nps-quick-popup .nps-coupon-copy:focus {
	background: #EFA90E !important;
	border-color: rgba(255, 255, 255, 0.8) !important;
	color: #fff !important;
	outline: none !important;
}
#nps-quick-popup .nps-coupon-copy svg {
	width: 14px !important;
	height: 14px !important;
	flex-shrink: 0 !important;
}

/* Copy toast notification */
.nps-copy-toast {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(127, 138, 87, 0.92);
	color: #fff;
	padding: 7px 18px;
	border-radius: 20px;
	font-family: 'Poppins', 'Arial', sans-serif;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transition: opacity .3s;
	z-index: 2;
}
.nps-copy-toast.nps-toast-visible { opacity: 1; }

.nps-popup-cta {
	display: inline-block;
	font-family: 'Poppins', 'Arial', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	background: #7F8A57;
	color: #fff !important;
	border-radius: 25px;
	padding: 11px 30px;
	text-decoration: none !important;
	letter-spacing: .5px;
	transition: background .2s;
	border: none;
}
.nps-popup-cta:hover { background: #EFA90E; }

.nps-pos-bottom-right .nps-popup-cta { font-size: 13px; padding: 9px 22px; }

/* Mobile */
@media (max-width: 480px) {
	.nps-popup-heading { font-size: 31px !important; }
	.nps-popup-box { width: 95vw !important; min-height: 360px; }
	.nps-popup-coupon { font-size: 24px !important; flex-wrap: wrap; justify-content: center; }
	.nps-popup-content { padding: 20px 16px; }

	.nps-pos-bottom-right {
		padding: 10px;
		align-items: flex-end;
		justify-content: center;
	}
}
