.rw-razorpay-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
}

.rw-razorpay-box {
	background: #fff;
	padding: 28px 36px;
	border-radius: 10px;
	text-align: center;
	max-width: 320px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.rw-razorpay-box p {
	margin: 14px 0 0;
	font-size: 14px;
	color: #333;
}

.rw-razorpay-spinner {
	width: 36px;
	height: 36px;
	margin: 0 auto;
	border: 4px solid #eee;
	border-top-color: #b3231c;
	border-radius: 50%;
	animation: rw-razorpay-spin 0.8s linear infinite;
}

@keyframes rw-razorpay-spin {
	to { transform: rotate( 360deg ); }
}

.rw-razorpay-toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX( -50% );
	max-width: 420px;
	padding: 14px 20px;
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	z-index: 999999;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.rw-razorpay-success {
	background: #1e8e3e;
}

.rw-razorpay-error {
	background: #c5221f;
}
