.bvk-test-notice {
	background: #fff3cd;
	border: 1px solid #ffc107;
	color: #856404;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 13px;
	margin-bottom: 10px;
}

.bvk-buy-button {
	display: inline-block;
	background: #f7931a;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}
.bvk-buy-button:hover {
	background: #d97c0e;
}

/* Overlay */
.bvk-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}
body.bvk-overlay-open {
	overflow: hidden;
}

/* Modal */
.bvk-modal {
	background: #fff;
	border-radius: 10px;
	padding: 32px;
	width: 100%;
	max-width: 440px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.bvk-modal-close {
	position: absolute;
	top: 14px;
	right: 16px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
	color: #666;
	line-height: 1;
}
.bvk-modal-close:hover {
	color: #111;
}
.bvk-modal-title {
	margin: 0 0 4px;
	font-size: 20px;
}
.bvk-modal-price {
	margin: 0 0 20px;
	font-size: 28px;
	font-weight: 700;
	color: #f7931a;
}

/* Form */
.bvk-field {
	margin-bottom: 14px;
}
.bvk-field label {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 500;
}
.bvk-field input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 15px;
	box-sizing: border-box;
}
.bvk-field input:focus {
	outline: none;
	border-color: #f7931a;
	box-shadow: 0 0 0 2px rgba(247,147,26,0.2);
}
.bvk-coupon-feedback {
	display: block;
	font-size: 13px;
	margin-top: 4px;
	color: #2e7d32;
}

.bvk-error-message {
	background: #fdecea;
	border: 1px solid #f44336;
	color: #c62828;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 14px;
	margin-bottom: 14px;
}

/* Payment buttons */
.bvk-payment-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.bvk-pay-btn {
	width: 100%;
	padding: 13px;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s;
}
.bvk-pay-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.bvk-pay-stripe {
	background: #635bff;
	color: #fff;
}
.bvk-pay-stripe:hover:not(:disabled) {
	background: #4f46e5;
}
.bvk-pay-opennode {
	background: #f7931a;
	color: #fff;
}
.bvk-pay-opennode:hover:not(:disabled) {
	background: #d97c0e;
}

@media (max-width: 480px) {
	.bvk-modal {
		margin: 16px;
		padding: 24px 20px;
	}
}
