/**
 * Elementor Editor Styles for Pro Features
 *
 * Styles for locked Pro features in the free version.
 *
 * @package Location_Map_For_Elementor
 * @since 1.0.0
 */

/* Pro Badge */
.lmfe-pro-badge {
	display: inline-block;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 2px 8px;
	border-radius: 3px;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	margin-left: 8px;
	vertical-align: middle;
}

/* Locked Controls */
.lmfe-pro-control-locked {
	position: relative;
	opacity: 0.5;
	pointer-events: none;
}

.lmfe-pro-control-locked::after {
	content: '🔒';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
}

/* Upgrade Notice */
.lmfe-upgrade-notice {
	background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
	border: 2px solid #667eea;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	margin: 10px 0;
}

.lmfe-upgrade-notice .dashicons {
	font-size: 32px;
	width: 32px;
	height: 32px;
	color: #667eea;
}

.lmfe-upgrade-notice p:first-of-type {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin: 10px 0 5px;
}

.lmfe-upgrade-notice p:last-of-type {
	color: #666;
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.lmfe-upgrade-notice .button-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	font-weight: 600;
	padding: 8px 24px;
	transition: all 0.3s ease;
}

.lmfe-upgrade-notice .button-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Loading Animation for Map Preview */
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.elm-map-loading .dashicons-update {
	animation: spin 1s linear infinite;
}
