.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-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-section {
	margin-bottom: 14px;
}
.bvk-coupon-toggle {
	background: none;
	border: none;
	padding: 0;
	color: #888;
	font-size: 13px;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.bvk-coupon-toggle::after {
	content: ' ▾';
	display: inline-block;
	transition: transform 0.15s;
}
.bvk-coupon-toggle.is-open::after {
	transform: rotate(180deg);
}
.bvk-coupon-collapsible .bvk-field {
	margin-top: 8px;
	margin-bottom: 0;
}
.bvk-coupon-feedback {
	display: block;
	font-size: 13px;
	margin-top: 4px;
}
.bvk-coupon-valid {
	color: #2e7d32;
}
.bvk-coupon-invalid {
	color: #c62828;
}
.bvk-coupon-checking {
	color: #888;
}

.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;
}

/* Thank-you / cancel page */
.bvk-thank-you {
	max-width: 560px;
	margin: 0 auto;
	padding: 28px 32px;
	border-radius: 8px;
}
.bvk-thank-you.bvk-success {
	background: #f0fdf4;
	border: 1px solid #86efac;
}
.bvk-thank-you.bvk-success h2 {
	color: #166534;
	margin-top: 0;
}
.bvk-thank-you.bvk-cancelled {
	background: #fefce8;
	border: 1px solid #fde047;
	color: #713f12;
}

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

.bvk-coupon-badge {
	display: block;
	margin-top: 8px;
	padding: 4px 10px;
	background: #f0fdf4;
	border: 1px solid #86efac;
	border-radius: 4px;
	color: #166534;
	font-size: 14px;
}
