/**
 * WC Virtual Posts Styles
 */

.wc-vp-paywall {
	background: #f9f9f9;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px;
	margin: 20px 0;
	text-align: center;
}

.wc-vp-paywall-message {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.6;
}

.wc-vp-excerpt {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 25px;
	text-align: left;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.wc-vp-buy-button-wrapper {
	margin-top: 25px;
}

.wc-vp-buy-button {
	display: inline-block;
	padding: 15px 40px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	background: #0073aa;
	color: #fff;
	border-radius: 5px;
	transition: background 0.3s ease;
	border: none;
	cursor: pointer;
}

.wc-vp-buy-button:hover,
.wc-vp-buy-button:focus {
	background: #005a87;
	color: #fff;
	text-decoration: none;
}

.wc-vp-buy-button:active {
	background: #004a6f;
}

/* Responsive */
@media (max-width: 768px) {
	.wc-vp-paywall {
		padding: 20px;
	}

	.wc-vp-paywall-message {
		font-size: 16px;
	}

	.wc-vp-buy-button {
		padding: 12px 30px;
		font-size: 16px;
		width: 100%;
		max-width: 300px;
	}
}
