/* FloorCraft shared browser design system — Version 5.0.0 */
:root {
  --fc-navy: #071326;
  --fc-navy-soft: #10233f;
  --fc-blue: #0759d9;
  --fc-teal: #0b5d56;
  --fc-sky: #78d8ff;
  --fc-gold: #8a6500;
  --fc-paper: #f7f8fb;
  --fc-surface: #ffffff;
  --fc-text: #17191f;
  --fc-muted: #667085;
  --fc-line: #dfe5ef;
  --fc-focus: #ffbf47;
  --fc-danger: #b42318;
  --fc-success: #13653a;
  --fc-radius-sm: 12px;
  --fc-radius-md: 18px;
  --fc-radius-lg: 24px;
  --fc-shadow: 0 24px 65px rgba(7, 19, 38, .12);
  --fc-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

html[data-theme="dark"] { color-scheme: dark; }
*, *::before, *::after { box-sizing: border-box; }
html { text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
body, button, input, select, textarea { font-family: var(--fc-font); }
button, input, select, textarea { font: inherit; }
img, svg { max-width: 100%; }
[hidden] { display: none !important; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--fc-focus);
  outline-offset: 3px;
}

:where(button, a, input, select, textarea) { -webkit-tap-highlight-color: rgba(7, 89, 217, .2); }
:where(button, [role="button"]) { touch-action: manipulation; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (forced-colors: active) {
  :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible { outline: 3px solid CanvasText; }
}
