/* Bespoke Quotes V2 — global layout escape.
   The app container caps pages at 1440px, which is right for detail pages and
   wrong for a pricing workspace: the compare board earns every pixel of a big
   monitor. Loaded AFTER the scoped bundle so it wins the tie against the
   layout's scoped .app-container rule. */

div.app-container:has(.bq2-shell) {
    max-width: none;
}

/* Keyboard users get a visible ring on every interactive element in the V2
   surfaces (page, drawer, dialogs, save bar) without disturbing mouse focus. */
.bq2-shell :focus-visible,
.dd-drawer :focus-visible,
.v2g-paste-dialog :focus-visible,
.sb-bar :focus-visible {
    outline: 2px solid #3a4394;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Respect reduced-motion: V2's slides, shimmers and spins become instant. */
@media (prefers-reduced-motion: reduce) {
    .bq2-shell *,
    .dd-scrim, .dd-drawer,
    .v2g-paste-scrim, .v2g-paste-dialog,
    .sb-container, .sb-whisper {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
