/* Robokassa redirect interstitial — recolor the plugin's white card
   (assets/css/robokassa-redirect.css) to the MUUS dark theme so the brief
   "redirecting to payment" hand-off stays on-brand. `body` prefix wins over
   the plugin's single-class rules regardless of stylesheet load order. */
body .robokassa-redirect-wrapper,
body .robokassa-redirect-notice {
	background-color: var(--wp--preset--color--surface);
	border-color: var(--wp--preset--color--border);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
	color: var(--wp--preset--color--text);
}

/* Hide the plugin's "Thank you for your order!" — premature, the order is not
   paid yet; the spinner + message carry the redirect hand-off on their own. */
body .robokassa-redirect-title {
	display: none;
}

/* Centre the card in the visible area (the order-page chrome sits above it)
   without position:fixed — that would cover content and hide the manual-submit
   fallback the plugin reveals after ~6s on error. */
body .robokassa-redirect-wrapper {
	margin: max(22vh, 3rem) auto 3rem;
}

body .robokassa-redirect-status,
body .robokassa-redirect-message {
	color: var(--wp--preset--color--text-muted);
}

/* Spinner is now the focal element, so make it a touch larger. */
body .robokassa-redirect-loader {
	width: 54px;
	height: 54px;
	border-color: rgba(200, 169, 126, 0.2);
	border-top-color: var(--wp--preset--color--primary);
}

