/*  ,d88b.d88b,
    88888888888
    `Y8888888Y'
      `Y888Y'
        `Y'
       mano                                    */

.owp-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.6);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	direction: rtl;
}

.owp-overlay.owp-visible {
	opacity: 1;
	pointer-events: auto;
}

.owp-modal {
	background: #ffffff;
	border-radius: 16px;
	max-width: 440px;
	width: 100%;
	padding: 2rem 1.75rem 1.75rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	position: relative;
	transform: translateY(20px) scale(0.95);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	font-family: -apple-system, BlinkMacSystemFont, "Heebo", "Segoe UI", Roboto, sans-serif;
	text-align: center;
}

.owp-overlay.owp-visible .owp-modal {
	transform: translateY(0) scale(1);
}

.owp-close {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: #f1f5f9;
	color: #475569;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.owp-close:hover {
	background: #e2e8f0;
	color: #0f172a;
}

.owp-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #25d366, #1ebd57);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.owp-icon svg {
	width: 36px;
	height: 36px;
	color: #fff;
}

.owp-heading {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

.owp-body {
	font-size: 1rem;
	color: #475569;
	line-height: 1.6;
	margin: 0 0 1.5rem;
}

.owp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #25d366, #1ebd57);
	color: #ffffff;
	text-decoration: none;
	padding: 0.85rem 1.75rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1rem;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	width: auto;
}

.owp-button:hover,
.owp-button:focus {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
	color: #ffffff;
}

.owp-button svg {
	width: 20px;
	height: 20px;
}

@media (max-width: 480px) {
	.owp-modal {
		padding: 1.75rem 1.25rem 1.5rem;
	}
	.owp-heading {
		font-size: 1.25rem;
	}
	.owp-body {
		font-size: 0.95rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.owp-overlay,
	.owp-modal {
		transition: none;
	}
}
