.locksmith-popup-overlay-bb0520f3 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 23, 42, 0.75); /* Slate 900 background with transparency */
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	visibility: hidden;
}

body.admin-bar .locksmith-popup-overlay-bb0520f3 {
	top: var(--wp-admin--admin-bar--height, 32px);
}

@media screen and (max-width: 782px) {
	body.admin-bar .locksmith-popup-overlay-bb0520f3 {
		top: 46px;
	}
}

.locksmith-popup-overlay-bb0520f3:not(.locksmith-popup-hidden-bb0520f3) {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.locksmith-popup-card-bb0520f3 {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	padding: 40px 32px 32px;
	max-width: 440px;
	width: 90%;
	text-align: center;
	position: relative;
	border: 1px solid #e2e8f0;
	transform: scale(0.9);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.locksmith-popup-overlay-bb0520f3:not(.locksmith-popup-hidden-bb0520f3) .locksmith-popup-card-bb0520f3 {
	transform: scale(1);
}

.locksmith-popup-close-bb0520f3 {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 28px;
	color: #64748b;
	cursor: pointer;
	line-height: 1;
	padding: 4px;
	transition: color 0.2s ease;
}

.locksmith-popup-close-bb0520f3:hover {
	color: #1e293b;
}

.locksmith-popup-badge-bb0520f3 {
	background-color: #fef3c7;
	color: #b45309;
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 12px;
	border-radius: 9999px;
	display: inline-block;
	margin-bottom: 16px;
}

.locksmith-popup-title-bb0520f3 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 28px;
	color: #0f172a;
	margin: 0 0 12px;
	font-weight: 800;
}

.locksmith-popup-icon-bb0520f3 {
	font-size: 48px;
	margin: 16px 0;
	animation: wiggle-bb0520f3 1.5s ease-in-out infinite alternate;
}

.locksmith-popup-text-bb0520f3 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 16px;
	color: #475569;
	line-height: 1.6;
	margin: 0 0 24px;
}

.locksmith-popup-text-bb0520f3 strong {
	color: #0f172a;
}

.locksmith-popup-btn-bb0520f3 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #1d4ed8; /* Strong Professional Royal Blue */
	color: #ffffff !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none !important;
	padding: 14px 28px;
	border-radius: 8px;
	transition: background-color 0.2s ease, transform 0.1s ease;
	width: 100%;
	box-sizing: border-box;
}

.locksmith-popup-btn-bb0520f3:hover {
	background-color: #1e40af;
}

.locksmith-popup-btn-bb0520f3:active {
	transform: scale(0.98);
}

@keyframes wiggle-bb0520f3 {
	0% { transform: rotate(-5deg); }
	100% { transform: rotate(5deg); }
}
