/* ==========================================================================
   Jane n Joe
   Plain CSS, no build step, no nesting, no :has(), no color-mix().
   Targets Safari 15.4+, Chrome/Edge 100+, Firefox 100+ on phone and desktop.
   Laid out to stay usable down to 320px wide.
   ========================================================================== */

:root {
  --ink:            #14201f;
  --ink-soft:       #46585a;
  --ink-faint:      #6b7d80;
  --line:           #dde5e4;
  --line-strong:    #c3d0cf;
  --surface:        #ffffff;
  --surface-sunken: #f4f7f6;
  --surface-raised: #ffffff;

  --teal:           #0f6b63;
  --teal-strong:    #0a534d;
  --teal-wash:      #e6f2f0;

  --amber:          #8a5a08;
  --amber-wash:     #fdf3e2;
  --red:            #a32020;
  --red-wash:       #fdeeee;
  --green:          #1d6b3f;
  --green-wash:     #e9f5ee;

  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  18px;

  --shadow-sm: 0 1px 2px rgba(20, 32, 31, 0.06), 0 1px 3px rgba(20, 32, 31, 0.04);
  --shadow-md: 0 2px 4px rgba(20, 32, 31, 0.05), 0 8px 24px rgba(20, 32, 31, 0.07);

  --gutter: 16px;
  --tap: 44px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink:            #e8efee;
    --ink-soft:       #a9bcbb;
    --ink-faint:      #859897;
    --line:           #27403d;
    --line-strong:    #3a5654;
    --surface:        #0e1817;
    --surface-sunken: #131f1e;
    --surface-raised: #182625;

    --teal:           #58c4b6;
    --teal-strong:    #7ad6c9;
    --teal-wash:      #10302d;

    --amber:          #e0b062;
    --amber-wash:     #2e2413;
    --red:            #f08a8a;
    --red-wash:       #331a1a;
    --green:          #74cf98;
    --green-wash:     #14301f;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.35);
  }
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--surface-sunken);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@supports (min-height: 100dvh) {
  body { min-height: 100dvh; }
}

h1, h2, h3, h4 {
  line-height: 1.22;
  margin: 0 0 0.5em;
  letter-spacing: -0.012em;
  font-weight: 650;
}

h1 { font-size: clamp(1.5rem, 1.25rem + 1.2vw, 2.1rem); }
h2 { font-size: clamp(1.2rem, 1.07rem + 0.6vw, 1.5rem); }
h3 { font-size: 1.05rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal-strong); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--teal); }

img { max-width: 100%; height: auto; display: block; }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Route changes move focus to the new page's heading so screen readers
   announce it. Those targets carry tabindex="-1", so they can only ever be
   focused programmatically — never by tabbing — and drawing a ring around a
   heading nobody clicked just looks like a rendering fault. Every genuinely
   focusable control keeps its ring. */
h1[tabindex="-1"]:focus,
h2[tabindex="-1"]:focus,
main[tabindex="-1"]:focus,
.cleaner-name[tabindex="-1"]:focus {
  outline: none;
}

/* Keep a visible ring in forced-colors / Windows high contrast mode. */
@media (forced-colors: active) {
  :focus-visible { outline: 3px solid Highlight; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-strong);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: 100%;
  max-width: 62rem;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.wrap-narrow { max-width: 44rem; }

/* --------------------------------------------------------------------------
   Header / footer
   -------------------------------------------------------------------------- */

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.wordmark {
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 6px 2px;
}
.wordmark:hover { color: var(--ink); }
.wordmark .amp {
  color: var(--teal);
  font-style: italic;
  font-weight: 600;
  padding: 0 1px;
}

.site-footer {
  margin-top: auto;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 22px 0 max(22px, env(safe-area-inset-bottom));
  font-size: 0.85rem;
  color: var(--ink-faint);
}
.footer-legal { max-width: 46rem; margin-bottom: 10px; }
.footer-links a { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Layout pieces
   -------------------------------------------------------------------------- */

.page {
  padding-top: 24px;
  padding-bottom: 48px;
  flex: 1 0 auto;
}

.stack > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 28px; }

.card {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 560px) {
  .card { padding: 22px; }
}

.lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-faint);
  margin-bottom: 6px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 11px 18px;
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: var(--teal-strong);
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.12s ease, border-color 0.12s ease, opacity 0.12s ease;
}
.btn:hover { background: var(--teal); color: #fff; }
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (prefers-color-scheme: dark) {
  .btn { color: #07100f; }
  .btn:hover { color: #07100f; }
}

.btn-secondary {
  background: var(--surface-raised);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-secondary:hover { background: var(--surface-sunken); color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--surface-sunken); color: var(--ink); }

.btn-danger {
  background: var(--surface-raised);
  color: var(--red);
  border-color: var(--line-strong);
}
.btn-danger:hover { background: var(--red-wash); color: var(--red); }

.btn-sm { min-height: 36px; padding: 7px 12px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* On touch screens even secondary buttons get a full-size target. A 36px
   back link is fine under a mouse and fiddly under a thumb. */
@media (pointer: coarse) {
  .btn-sm { min-height: var(--tap); padding: 10px 14px; }
  .tab { min-height: var(--tap); }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.field { margin-bottom: 18px; }

.field > label,
.fieldset-legend {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.hint {
  display: block;
  font-size: 0.83rem;
  color: var(--ink-faint);
  margin-bottom: 6px;
}

.optional {
  font-weight: 400;
  color: var(--ink-faint);
  font-size: 0.85rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="search"],
select,
textarea {
  width: 100%;
  min-height: var(--tap);
  padding: 10px 12px;
  /* 16px minimum: anything smaller makes iOS Safari zoom on focus. */
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  appearance: none;
  -webkit-appearance: none;
}

textarea { min-height: 90px; resize: vertical; line-height: 1.5; }

select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%2346585a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
}

@media (prefers-color-scheme: dark) {
  select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23a9bcbb' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  }
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--teal);
  outline: 3px solid var(--teal);
  outline-offset: 1px;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--red);
  border-width: 2px;
}

.field-error {
  display: block;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 5px;
}
.field-error:empty { display: none; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 18px;
  min-width: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px;
}

.choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: var(--tap);
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  font-size: 0.94rem;
}
.choice input { margin: 0; flex: none; width: 18px; height: 18px; accent-color: var(--teal-strong); }
.choice:hover { border-color: var(--teal); }

/* No :has() — the JS toggles this class so Safari 15 behaves like the rest. */
.choice.is-selected {
  border-color: var(--teal);
  border-width: 2px;
  background: var(--teal-wash);
  padding: 9px 11px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}
.check-row input {
  margin: 2px 0 0;
  flex: none;
  width: 22px;
  height: 22px;
  accent-color: var(--teal-strong);
}
.check-row span { font-size: 0.93rem; line-height: 1.45; }
.check-row.is-selected { border-color: var(--teal); background: var(--teal-wash); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 16px;
}
@media (min-width: 520px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-2 .span-2 { grid-column: 1 / -1; }
}

/* --------------------------------------------------------------------------
   Messages
   -------------------------------------------------------------------------- */

.callout {
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--teal);
  background: var(--teal-wash);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.92rem;
  margin: 0 0 18px;
}
.callout-warn { border-left-color: var(--amber); background: var(--amber-wash); }
.callout-error { border-left-color: var(--red); background: var(--red-wash); }
.callout-success { border-left-color: var(--green); background: var(--green-wash); }
.callout p:last-child { margin-bottom: 0; }

.error-summary {
  border: 2px solid var(--red);
  background: var(--red-wash);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.error-summary h2 { font-size: 1rem; margin-bottom: 8px; color: var(--red); }
.error-summary ul { margin: 0; padding-left: 20px; }
.error-summary li { margin-bottom: 4px; }
.error-summary a { color: var(--red); font-weight: 600; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--surface-sunken);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.badge-verified { background: var(--green-wash); color: var(--green); border-color: transparent; }
.badge-requested { background: var(--amber-wash); color: var(--amber); border-color: transparent; }
.badge-confirmed { background: var(--green-wash); color: var(--green); border-color: transparent; }
.badge-declined,
.badge-cancelled { background: var(--red-wash); color: var(--red); border-color: transparent; }
.badge-completed { background: var(--teal-wash); color: var(--teal-strong); border-color: transparent; }

/* --------------------------------------------------------------------------
   Cleaner cards
   -------------------------------------------------------------------------- */

.cleaner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 680px) {
  .cleaner-grid { grid-template-columns: repeat(2, 1fr); }
}

.cleaner-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.cleaner-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.avatar {
  width: 68px;
  height: 68px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  background: var(--teal-wash);
  border: 1px solid var(--line);
}

.avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--teal-strong);
}

.cleaner-name { margin: 0 0 2px; font-size: 1.12rem; }
.cleaner-meta { font-size: 0.86rem; color: var(--ink-faint); margin: 0; }

.price-line {
  font-weight: 650;
  color: var(--ink);
  font-size: 0.97rem;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--amber);
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tag {
  font-size: 0.78rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--surface-sunken);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */

.review {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 16px;
}
.review:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }

.review-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.review-name { font-weight: 650; }
.review-date { font-size: 0.82rem; color: var(--ink-faint); }
.review-text { margin: 0; white-space: pre-line; }

.rating-input {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.rating-input .choice { flex: 1 1 56px; justify-content: center; min-width: 56px; }

/* --------------------------------------------------------------------------
   Quote panel
   -------------------------------------------------------------------------- */

.quote-panel {
  background: var(--surface-sunken);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.quote-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  padding: 5px 0;
}
.quote-line .detail { color: var(--ink-faint); font-size: 0.82rem; display: block; }
.quote-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line-strong);
  margin-top: 8px;
  padding-top: 10px;
  font-weight: 700;
  font-size: 1.12rem;
}

.sticky-total {
  position: sticky;
  bottom: 0;
  background: var(--surface-raised);
  border-top: 1px solid var(--line-strong);
  padding: 12px var(--gutter) max(12px, env(safe-area-inset-bottom));
  margin: 24px calc(var(--gutter) * -1) 0;
  box-shadow: 0 -4px 16px rgba(20, 32, 31, 0.07);
  z-index: 10;
}

/* --------------------------------------------------------------------------
   Status / definition lists
   -------------------------------------------------------------------------- */

.detail-list { margin: 0; }
.detail-list div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.detail-list div:last-child { border-bottom: 0; }
.detail-list dt { font-size: 0.82rem; color: var(--ink-faint); font-weight: 600; }
.detail-list dd { margin: 2px 0 0; white-space: pre-line; }

@media (min-width: 480px) {
  .detail-list div { grid-template-columns: 11rem 1fr; gap: 12px; align-items: baseline; }
  .detail-list dd { margin-top: 0; }
}

.copy-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}
.copy-row input {
  flex: 1 1 200px;
  min-width: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   Steps / progress
   -------------------------------------------------------------------------- */

.steps {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.78rem;
  flex-wrap: wrap;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-faint);
}
.steps li[aria-current="step"] { color: var(--teal-strong); font-weight: 700; }
.steps li + li::before { content: "›"; margin-right: 3px; color: var(--line-strong); }

/* --------------------------------------------------------------------------
   Admin
   -------------------------------------------------------------------------- */

.admin-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 11px 14px;
  min-height: var(--tap);
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-faint);
  cursor: pointer;
  white-space: nowrap;
}
.tab[aria-selected="true"] { color: var(--teal-strong); border-bottom-color: var(--teal); }

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 620px;
}
table.data th,
table.data td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data th {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  background: var(--surface-sunken);
  position: sticky;
  top: 0;
}
table.data tr:last-child td { border-bottom: 0; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-bottom: 1.2em;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 9px 10px;
  border: 1px solid var(--line);
  vertical-align: top;
}
.legal-table th { background: var(--surface-sunken); font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.legal-page { background: var(--surface); }
.legal-wrap {
  max-width: 44rem;
  padding-top: 28px;
  padding-bottom: 56px;
  flex: 1 0 auto;
}
.legal-wrap h2 { margin-top: 2em; }
.legal-wrap h3 { margin-top: 1.4em; }
.legal-wrap ul { padding-left: 22px; }
.legal-wrap li { margin-bottom: 6px; }
.legal-meta { color: var(--ink-faint); font-size: 0.9rem; }
.legal-note { font-size: 0.88rem; color: var(--ink-faint); }
.legal-toc {
  background: var(--surface-sunken);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 24px 0;
}
.legal-toc h2 { margin-top: 0; font-size: 0.95rem; }
.legal-toc ol { margin: 0; padding-left: 20px; font-size: 0.92rem; }
.legal-toc li { margin-bottom: 3px; }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.muted { color: var(--ink-faint); }
.small { font-size: 0.86rem; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.nowrap { white-space: nowrap; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: -3px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-faint);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

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

@media print {
  .site-header, .site-footer, .btn, .sticky-total { display: none !important; }
  body { background: #fff; }
}
