/**
 * WyRetract — Checkout pre-contractual notice + persistent footer link.
 * Loaded only when the relevant features are active (CheckoutNotice::init).
 *
 * @since 1.0.0
 */

/* ── Checkout notice (above "Place order" button) ─────────────────────────── */

.wyret-checkout-notice {
	margin: 1em 0;
	padding: 0;
	font-size: 0.9em;
	line-height: 1.5;
}

.wyret-checkout-notice p {
	margin: 0 0 0.5em;
}

.wyret-checkout-link {
	display: inline-block;
	font-size: 0.85em;
	color: #0073aa;
	text-decoration: underline;
}

.wyret-checkout-link:hover {
	color: #005177;
}

/* ── Persistent footer link ────────────────────────────────────────────────── */

.wyret-footer-link {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 9990;
}

.wyret-footer-btn {
	display: inline-block;
	padding: 0.5em 0.9em;
	background: #333;
	color: #fff;
	font-size: 0.8em;
	border-radius: 3px;
	text-decoration: none;
	white-space: nowrap;
	opacity: 0.85;
	transition: opacity 0.2s;
}

.wyret-footer-btn:hover,
.wyret-footer-btn:focus {
	opacity: 1;
	color: #fff;
}

.wyret-footer-btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.wyret-footer-btn {
		transition: none;
	}
}
