/* Dubai Tap Reload — ox- prefix · seed O2NX89CO9Y */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&display=swap');

:root {
  --ox-red: #c22a3e;
  --ox-red-deep: #9e1f30;
  --ox-red-soft: #f8e8eb;
  --ox-ink: #12141a;
  --ox-muted: #5a6270;
  --ox-paper: #e9ebf0;
  --ox-white: #ffffff;
  --ox-deep: #1c2030;
  --ox-line: #d2d6de;
  --ox-glass: rgba(255, 255, 255, 0.72);
  --ox-glass-border: rgba(255, 255, 255, 0.55);
  --ox-shadow: 0 12px 40px rgba(18, 20, 26, 0.1);
  --ox-radius: 10px;
  --ox-font-display: "Fraunces", Georgia, serif;
  --ox-font: "DM Sans", sans-serif;
  --ox-font-ar: "IBM Plex Sans Arabic", "DM Sans", sans-serif;
  --ox-max: 1140px;
  --ox-ann-h: 40px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ox-font);
  color: var(--ox-ink);
  background: var(--ox-paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.noscroll { overflow: hidden; }
html[lang="ar"] body { font-family: var(--ox-font-ar); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ox-red); text-decoration: none; }
a:hover { color: var(--ox-red-deep); }
button, input, select { font: inherit; }
h1, h2, h3 {
  font-family: var(--ox-font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.55em;
  font-weight: 600;
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3 { font-family: var(--ox-font-ar); }
p { margin: 0 0 1em; }
.ox-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(194, 42, 62, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(28, 32, 48, 0.06), transparent 50%),
    linear-gradient(180deg, #f4f5f8 0%, var(--ox-paper) 40%, #e4e7ed 100%);
}

/* Announcement */
.ox-ann {
  background: var(--ox-deep);
  color: #dce0e8;
  font-size: 0.875rem;
  min-height: var(--ox-ann-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 2.5rem;
  position: relative;
  text-align: center;
}
.ox-ann[hidden] { display: none; }
.ox-ann-x {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; color: #a8b0c0; cursor: pointer;
  font-size: 1.25rem; line-height: 1; padding: 0.25rem;
}
html[dir="rtl"] .ox-ann-x { right: auto; left: 0.75rem; }

/* Header / masthead */
.ox-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--ox-line);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(8px);
}
.ox-header-inner {
  max-width: var(--ox-max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ox-logo {
  display: flex; align-items: center; gap: 0.65rem;
  color: var(--ox-ink); flex-shrink: 0;
}
.ox-logo:hover { color: var(--ox-ink); }
.ox-logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.ox-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.ox-logo-en {
  font-family: var(--ox-font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}
.ox-logo-ar {
  font-family: var(--ox-font-ar);
  font-size: 0.72rem;
  color: var(--ox-muted);
  font-weight: 500;
}

.ox-nav {
  display: none;
  align-items: center;
  gap: 1.15rem;
  margin-inline-start: auto;
  list-style: none; padding: 0; margin-block: 0;
}
.ox-nav a {
  color: var(--ox-ink);
  font-size: 0.9rem;
  font-weight: 500;
}
.ox-nav a:hover,
.ox-nav a[aria-current="page"] { color: var(--ox-red); }

.ox-search {
  display: none;
  align-items: center;
  background: var(--ox-paper);
  border: 1px solid var(--ox-line);
  border-radius: 6px;
  padding: 0.35rem 0.65rem;
  gap: 0.4rem;
  max-width: 180px;
}
.ox-search input {
  border: 0; background: transparent; outline: none; width: 100%;
  font-size: 0.85rem; color: var(--ox-ink);
}
.ox-lang {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.85rem; font-weight: 600; flex-shrink: 0;
}
.ox-lang a { color: var(--ox-muted); }
.ox-lang a.is-on, .ox-lang a[aria-current="true"] { color: var(--ox-ink); }
.ox-lang span { color: var(--ox-line); }

.ox-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; margin-inline-start: auto;
  background: transparent; border: 1px solid var(--ox-line); border-radius: 6px;
  cursor: pointer; padding: 0 11px;
}
.ox-burger span {
  display: block; height: 2px; background: var(--ox-ink); border-radius: 1px;
}
@media (min-width: 960px) {
  .ox-nav, .ox-search { display: flex; }
  .ox-burger { display: none; }
  .ox-lang { margin-inline-start: 0.25rem; }
}

/* Drawer — visibility + opacity */
.ox-backdrop {
  position: fixed; inset: 0;
  background: rgba(18, 20, 26, 0.45);
  z-index: 200;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.ox-drawer {
  position: fixed;
  top: 0; bottom: 0;
  inset-inline-end: 0;
  width: min(320px, 88vw);
  background: var(--ox-white);
  z-index: 210;
  padding: 1.5rem 1.25rem;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  overflow-y: auto;
  box-shadow: var(--ox-shadow);
}
body.ox-drawer-open .ox-backdrop,
body.ox-drawer-open .ox-drawer {
  opacity: 1; visibility: visible;
  pointer-events: auto;
}
.ox-drawer-close {
  position: absolute; top: 0.75rem; inset-inline-end: 0.75rem;
  background: transparent; border: 0; font-size: 1.5rem; cursor: pointer;
  color: var(--ox-muted); line-height: 1;
}
.ox-drawer-nav { list-style: none; padding: 2rem 0 1rem; margin: 0; }
.ox-drawer-nav a {
  display: block; padding: 0.65rem 0;
  color: var(--ox-ink); font-weight: 600; font-size: 1.05rem;
  border-bottom: 1px solid var(--ox-line);
}
.ox-drawer-lang { display: flex; gap: 1rem; margin-top: 1.25rem; font-weight: 600; }
.ox-drawer-search {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--ox-paper); border: 1px solid var(--ox-line);
  border-radius: 6px; padding: 0.45rem 0.65rem; margin-top: 2rem;
}
.ox-drawer-search input {
  border: 0; background: transparent; outline: none; width: 100%;
}

/* Portal dots */
.ox-portal {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden;
}
.ox-portal span {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ox-red); opacity: 0.12;
  animation: ox-float 12s ease-in-out infinite;
}
.ox-portal span:nth-child(1) { top: 18%; left: 8%; animation-delay: 0s; }
.ox-portal span:nth-child(2) { top: 62%; left: 88%; animation-delay: -3s; width: 10px; height: 10px; }
.ox-portal span:nth-child(3) { top: 78%; left: 22%; animation-delay: -6s; }
.ox-portal span:nth-child(4) { top: 30%; left: 72%; animation-delay: -9s; width: 8px; height: 8px; }
@keyframes ox-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes ox-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.ox-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.65rem 1.35rem;
  font-weight: 600; font-size: 0.95rem;
  border-radius: 6px; border: 1px solid transparent;
  cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ox-btn-primary {
  background: var(--ox-red); color: #fff; border-color: var(--ox-red);
}
.ox-btn-primary:hover { background: var(--ox-red-deep); color: #fff; }
.ox-btn-ghost {
  background: transparent; color: var(--ox-ink); border-color: var(--ox-line);
}
.ox-btn-ghost:hover { border-color: var(--ox-ink); color: var(--ox-ink); }
.ox-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* Magazine hero */
.ox-mast {
  max-width: var(--ox-max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  animation: ox-rise 0.7s ease both;
}
.ox-mast-brand {
  font-family: var(--ox-font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ox-ink);
  margin: 0;
}
.ox-mast-brand .ox-ar-word {
  display: block;
  font-family: var(--ox-font-ar);
  font-size: 0.32em;
  font-weight: 500;
  color: var(--ox-muted);
  letter-spacing: 0;
  margin-top: 0.35rem;
}
.ox-mast-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ox-muted);
  font-weight: 600;
}

.ox-hero {
  max-width: var(--ox-max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
  display: grid;
  gap: 2rem;
  align-items: end;
}
@media (min-width: 880px) {
  .ox-hero {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: min(62vh, 560px);
  }
}
.ox-hero-copy { animation: ox-rise 0.75s ease 0.08s both; }
.ox-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  max-width: 16ch;
  margin-bottom: 0.75rem;
}
.ox-hero-lead {
  font-size: 1.05rem;
  color: var(--ox-muted);
  max-width: 38ch;
  margin-bottom: 0;
}
.ox-hero-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ox-deep);
  animation: ox-rise 0.85s ease 0.14s both;
}
.ox-hero-art-fallback {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(194,42,62,0.35), transparent 45%),
    linear-gradient(160deg, var(--ox-deep) 0%, #2a3144 100%);
  padding: 1.5rem;
}
.ox-geo { width: min(100%, 100%); opacity: 0.95; }

/* Asymmetric magazine columns */
.ox-mag {
  max-width: var(--ox-max);
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
  display: grid;
  gap: 2rem 2.5rem;
}
@media (min-width: 800px) {
  .ox-mag {
    grid-template-columns: 1.4fr 1fr;
    grid-template-areas:
      "lead side"
      "steps side";
  }
  .ox-mag-lead { grid-area: lead; }
  .ox-mag-side { grid-area: side; }
  .ox-mag-steps { grid-area: steps; }
}
.ox-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ox-red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ox-mag h2 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
.ox-mag-lead p, .ox-mag-side p { color: var(--ox-muted); }
.ox-need-list {
  list-style: none; padding: 0; margin: 1rem 0 0;
}
.ox-need-list li {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--ox-line);
  font-size: 0.95rem;
}
.ox-need-num {
  font-family: var(--ox-font-display);
  font-weight: 700;
  color: var(--ox-red);
  font-size: 1.15rem;
  min-width: 1.5rem;
}
.ox-steps {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .ox-steps { grid-template-columns: repeat(3, 1fr); }
}
.ox-step-n {
  font-family: var(--ox-font-display);
  font-size: 1.75rem;
  color: var(--ox-red);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.ox-step h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.ox-step p { font-size: 0.9rem; color: var(--ox-muted); margin: 0; }

.ox-band {
  background: var(--ox-deep);
  color: #dce0e8;
  margin: 2.5rem 0 0;
  padding: 2.5rem 1.25rem;
}
.ox-band-inner {
  max-width: var(--ox-max);
  margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.ox-band h2 { color: #fff; margin: 0 0 0.35rem; font-size: 1.65rem; }
.ox-band p { margin: 0; color: #a8b0c0; max-width: 42ch; }

/* Page hero (inner pages) */
.ox-page-hero {
  padding: 2.25rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--ox-line);
  background: rgba(255,255,255,0.5);
}
.ox-page-hero-inner {
  max-width: var(--ox-max);
  margin: 0 auto;
}
.ox-page-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); margin-bottom: 0.4rem; }
.ox-page-hero p { color: var(--ox-muted); margin: 0; max-width: 52ch; }

.ox-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}
.ox-prose.ox-wide { max-width: var(--ox-max); }
.ox-prose h2 { font-size: 1.35rem; margin-top: 1.75rem; }
.ox-prose h3 { font-size: 1.1rem; margin-top: 1.25rem; }
.ox-prose ul, .ox-prose ol { padding-inline-start: 1.25rem; }
.ox-prose li { margin-bottom: 0.4rem; }

/* Frosted glass form card — interactive only */
.ox-form-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  background: var(--ox-glass);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid var(--ox-glass-border);
  border-radius: var(--ox-radius);
  box-shadow: var(--ox-shadow);
}
.ox-form-hint {
  font-size: 0.85rem;
  color: var(--ox-muted);
  margin-bottom: 1.25rem;
}
.ox-field { margin-bottom: 1.15rem; }
.ox-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.ox-field input[type="text"],
.ox-field input[type="email"],
.ox-field input[type="number"],
.ox-field input[type="tel"],
.ox-field input[type="password"],
.ox-field input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--ox-line);
  border-radius: 6px;
  background: var(--ox-white);
  color: var(--ox-ink);
}
.ox-field input:focus {
  outline: 2px solid rgba(194, 42, 62, 0.35);
  border-color: var(--ox-red);
}
.ox-field .ox-err {
  display: none;
  color: var(--ox-red-deep);
  font-size: 0.82rem;
  margin-top: 0.35rem;
}
.ox-field.is-invalid .ox-err { display: block; }
.ox-field.is-invalid input { border-color: var(--ox-red); }
.ox-field-note {
  font-size: 0.78rem;
  color: var(--ox-muted);
  margin: 0.35rem 0 0;
}
.ox-presets {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
@media (max-width: 480px) {
  .ox-presets { grid-template-columns: repeat(3, 1fr); }
}
.ox-presets label {
  position: relative;
  margin: 0;
  cursor: pointer;
}
.ox-presets input {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.ox-presets span {
  display: flex; align-items: center; justify-content: center;
  min-height: 48px;
  border: 2px solid var(--ox-line);
  border-radius: 6px;
  background: var(--ox-white);
  font-weight: 600;
  color: var(--ox-ink);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.ox-presets label.is-on span,
.ox-presets input:checked + span {
  border-color: var(--ox-red);
  background: var(--ox-red);
  color: #fff;
}
.ox-pay-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ox-muted);
  margin: 0.85rem 0 0;
}

/* FAQ */
.ox-faq details {
  border-bottom: 1px solid var(--ox-line);
  padding: 0.85rem 0;
}
.ox-faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding-inline-end: 1.5rem;
  position: relative;
}
.ox-faq summary::-webkit-details-marker { display: none; }
.ox-faq summary::after {
  content: "+";
  position: absolute; inset-inline-end: 0; top: 0;
  color: var(--ox-red); font-weight: 700;
}
.ox-faq details[open] summary::after { content: "–"; }
.ox-faq-a { color: var(--ox-muted); margin: 0.65rem 0 0.25rem; font-size: 0.95rem; }

/* Contact */
.ox-contact-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .ox-contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.ox-contact-item h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ox-muted);
  margin-bottom: 0.35rem;
}
.ox-contact-item p { margin: 0; font-weight: 600; }

/* Timeline */
.ox-timeline {
  border-inline-start: 2px solid var(--ox-line);
  padding-inline-start: 1.25rem;
  margin: 1rem 0 1.5rem;
  list-style: none;
}
.ox-timeline li {
  position: relative;
  padding-bottom: 1.25rem;
}
.ox-timeline li::before {
  content: "";
  position: absolute;
  inset-inline-start: calc(-1.25rem - 5px);
  top: 0.35rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ox-red);
  border: 2px solid var(--ox-white);
  box-shadow: 0 0 0 1px var(--ox-line);
}
.ox-timeline strong { display: block; color: var(--ox-ink); }
.ox-timeline span { color: var(--ox-muted); font-size: 0.9rem; }

/* Footer */
.ox-footer {
  background: var(--ox-deep);
  color: #c5ccd8;
  padding: 3rem 1.25rem 1.5rem;
  margin-top: 2rem;
}
.ox-footer a { color: #e8ecf2; }
.ox-footer a:hover { color: #fff; }
.ox-footer-grid {
  max-width: var(--ox-max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
@media (min-width: 720px) {
  .ox-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.ox-footer-brand .ox-logo-en { color: #fff; }
.ox-footer-brand .ox-logo-ar { color: #9aa3b5; }
.ox-footer-brand p { font-size: 0.88rem; margin-top: 0.85rem; max-width: 30ch; }
.ox-footer h4 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.85rem;
  font-family: var(--ox-font);
}
.ox-footer ul { list-style: none; padding: 0; margin: 0; }
.ox-footer li { margin-bottom: 0.45rem; font-size: 0.9rem; }
.ox-footer-bottom {
  max-width: var(--ox-max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  justify-content: space-between;
  color: #8b94a8;
}

/* Cookie */
.ox-cookie {
  position: fixed;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 400;
  background: var(--ox-white);
  border: 1px solid var(--ox-line);
  border-radius: var(--ox-radius);
  box-shadow: var(--ox-shadow);
  padding: 1rem 1.15rem;
  display: flex; flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  max-width: 520px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.ox-cookie.is-on { opacity: 1; visibility: visible; }
.ox-cookie p { margin: 0; font-size: 0.85rem; color: var(--ox-muted); flex: 1 1 220px; }
.ox-cookie-btns { display: flex; gap: 0.5rem; }

/* Overlay spinner */
.ox-overlay {
  position: fixed; inset: 0;
  background: rgba(18, 20, 26, 0.45);
  z-index: 500;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.ox-overlay.is-on { opacity: 1; visibility: visible; }
.ox-spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(255,255,255,0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ox-spin 0.7s linear infinite;
}
@keyframes ox-spin { to { transform: rotate(360deg); } }

/* 404 */
.ox-404 {
  text-align: center;
  padding: 4rem 1.25rem;
  max-width: 480px;
  margin: 0 auto;
}
.ox-404 h1 { font-size: 3rem; color: var(--ox-red); margin-bottom: 0.25rem; }
.ox-404 p { color: var(--ox-muted); }

/* Sitemap / tables */
.ox-link-list { columns: 1; gap: 1.5rem; }
@media (min-width: 560px) { .ox-link-list { columns: 2; } }
.ox-link-list a {
  display: block;
  padding: 0.35rem 0;
  color: var(--ox-ink);
  font-weight: 500;
  break-inside: avoid;
}
.ox-link-list a:hover { color: var(--ox-red); }

.ox-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--ox-white);
  border: 1px solid var(--ox-line);
  border-radius: 6px;
  overflow: hidden;
}
.ox-table th, .ox-table td {
  text-align: start;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--ox-line);
}
.ox-table th { background: var(--ox-paper); font-weight: 600; }
.ox-table tr:last-child td { border-bottom: 0; }

.ox-amounts {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.ox-chip {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0.35rem 0.9rem;
  background: var(--ox-white);
  border: 1px solid var(--ox-line);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

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