/* Progressive-enhancement layer on top of style.css. Kept separate so
   style.css (the required WP theme stylesheet) stays focused on the core
   design system, and this file can grow with print/edge-case rules
   without touching the theme header block. */

@media print {
	.rbw-header, .rbw-sticky-bar, .rbw-form-wrap { display: none !important; }
}

/* Selected chip focus state for keyboard accessibility */
.rbw-chip:focus-visible {
	outline: 2px solid var(--rbw-color-accent);
	outline-offset: 2px;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
	.rbw-fade-up { transition: none; opacity: 1; transform: none; }
	html { scroll-behavior: auto; }
}
