/**
 * Upgrade Notice Styles for Free Version
 */

/* Main Upgrade Notice */
.bztm-upgrade-notice {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 30px 0;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.bztm-upgrade-icon {
	font-size: 64px;
	line-height: 1;
	flex-shrink: 0;
}

.bztm-upgrade-content {
	flex: 1;
}

.bztm-upgrade-content h2 {
	margin: 0 0 10px 0;
	color: white;
	font-size: 28px;
	font-weight: 600;
}

.bztm-upgrade-content h3 {
	margin: 0 0 15px 0;
	color: rgba(255, 255, 255, 0.95);
	font-size: 20px;
	font-weight: 500;
}

.bztm-upgrade-content p {
	margin: 0 0 20px 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	line-height: 1.6;
}

.bztm-upgrade-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.bztm-upgrade-content .button-hero {
	padding: 12px 30px;
	font-size: 16px;
	height: auto;
	line-height: 1.4;
}

.bztm-upgrade-content .button-primary {
	background: white;
	color: #667eea;
	border: none;
	font-weight: 600;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bztm-upgrade-content .button-primary:hover,
.bztm-upgrade-content .button-primary:focus {
	background: #f0f0f0;
	color: #764ba2;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.bztm-upgrade-content .button-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.bztm-upgrade-content .button-secondary:hover,
.bztm-upgrade-content .button-secondary:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: white;
	color: white;
}

/* Feature Preview Section */
.bztm-feature-preview {
	background: white;
	padding: 30px;
	border: 1px solid #ddd;
	border-radius: 8px;
	margin-top: 30px;
}

.bztm-feature-preview h3 {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 20px;
	color: #1d2327;
}

/* Features List */
.bztm-features-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bztm-features-list li {
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 15px;
	line-height: 1.6;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.bztm-features-list li:last-child {
	border-bottom: none;
}

.bztm-features-list li .dashicons {
	color: #46b450;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Screenshot Placeholder */
.bztm-screenshot {
	margin-top: 30px;
	padding: 60px 20px;
	background: #f9f9f9;
	border: 2px dashed #ddd;
	border-radius: 8px;
	text-align: center;
}

.bztm-screenshot p {
	margin: 0;
	color: #666;
	font-size: 14px;
}

.bztm-screenshot em {
	font-style: italic;
}

/* Pro Feature Badge */
.bztm-pro-feature {
	position: relative;
	opacity: 0.6;
	cursor: not-allowed !important;
}

.bztm-pro-feature:hover {
	opacity: 0.7;
}

/* Inline Pro Notice */
.bztm-inline-pro-notice {
	background: #fff3cd;
	border-left: 4px solid #f0ad4e;
	padding: 12px 15px;
	margin: 15px 0;
	border-radius: 4px;
}

.bztm-inline-pro-notice strong {
	color: #856404;
}

.bztm-inline-pro-notice a {
	color: #856404;
	text-decoration: underline;
	font-weight: 600;
}

.bztm-inline-pro-notice a:hover {
	color: #533f03;
}

/* Responsive */
@media screen and (max-width: 782px) {
	.bztm-upgrade-notice {
		flex-direction: column;
		padding: 30px 20px;
		text-align: center;
	}
	
	.bztm-upgrade-icon {
		font-size: 48px;
	}
	
	.bztm-upgrade-content h2 {
		font-size: 24px;
	}
	
	.bztm-upgrade-content h3 {
		font-size: 18px;
	}
	
	.bztm-upgrade-buttons {
		flex-direction: column;
	}
	
	.bztm-upgrade-buttons .button {
		width: 100%;
		text-align: center;
	}
	
	.bztm-feature-preview {
		padding: 20px;
	}
}
