@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@800&display=swap');
@font-face { font-family: 'Thmanyah'; src: url('fonts/thmanyah-sans-300.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Thmanyah'; src: url('fonts/thmanyah-sans-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Thmanyah'; src: url('fonts/thmanyah-sans-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Thmanyah'; src: url('fonts/thmanyah-sans-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Thmanyah'; src: url('fonts/thmanyah-sans-900.woff2') format('woff2'); font-weight: 900; font-display: swap; }

:root {
  color-scheme: light;
  --bg: #f0f5fa;
  --panel: #ffffff;
  --panel-soft: #e4f2fb;
  --text: #0d1e2e;
  --muted: #5c7a92;
  --line: #ccdae8;
  --primary: #0077cc;
  --primary-dark: #005fa3;
  --primary-light: #e0f2ff;
  --grad-start: #0077cc;
  --grad-end: #00bcd4;
  --danger: #c0392b;
  --warning: #b06000;
  --info: #1a5fa8;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0, 80, 160, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 80, 160, 0.13);
}

* {
  box-sizing: border-box;
  font-family: inherit;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: 'Thmanyah', Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(0,80,160,0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-inner,
.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand span,
.d-sidebar-brand > span:last-child,
.nr-sidebar-brand > span:last-child {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.3px;
  font-family: inherit;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}

.page {
  padding: 24px 0 44px;
}

.auth-layout {
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow .2s;
}

.panel:hover {
  box-shadow: var(--shadow-md);
}

.panel-header,
.panel-body {
  padding: 18px;
}

.panel-header {
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}

.panel-header-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.panel-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.field input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 400;
  padding: 10px 12px;
  outline: none;
}

.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 400;
  padding: 10px 12px;
  outline: none;
}

.field select {
  min-height: 44px;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
}

.field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.15);
}

.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.15);
}

.button,
button.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 9px 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0,119,204,0.25);
  transition: filter .15s, box-shadow .15s, transform .1s;
}

.button-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 16px rgba(0,119,204,0.35);
  transform: translateY(-1px);
}

.button-primary:active {
  transform: translateY(0);
}

.button-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
  transition: border-color .15s, background .15s;
}

.button-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.button-danger {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}

.button-danger:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}

.alert {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid #f1c8c3;
  background: #fff4f2;
  color: var(--danger);
  line-height: 1.7;
  font-size: 14px;
}

.alert-success {
  border-color: #bfe5d3;
  background: #eefaf4;
  color: #146b3a;
}

.alert-info {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.link-button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.toolbar h1 {
  margin: 0;
  font-size: 24px;
}

.muted {
  color: var(--muted);
}

.request-list {
  display: grid;
  gap: 10px;
}

.request-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(120px, 0.45fr)) auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: box-shadow .18s, border-color .18s;
}

.request-row:hover {
  border-color: #a8c8e8;
  box-shadow: 0 4px 18px rgba(0,80,160,0.09);
}

.request-main {
  min-width: 0;
}

.request-id {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.request-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.request-appt {
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--muted);
}

.badge {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.badge-warning {
  background: #fff3dc;
  color: var(--warning);
}

.badge-info {
  background: #ddf0ff;
  color: #0055a0;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 16px;
}

.edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.edit-grid .full {
  grid-column: 1 / -1;
}

.switch-row {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 800;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.data-item {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
}

.data-label {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 5px;
}

.data-value {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.doc-list {
  display: grid;
  gap: 9px;
}

.doc-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
  transition: border-color .15s;
}

.doc-item:hover {
  border-color: #a8c8e8;
}

.doc-name {
  min-width: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.empty {
  padding: 32px;
  text-align: center;
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  border: 1px dashed #b0cce8;
  border-radius: var(--radius-lg);
  color: var(--muted);
}

.site-shell {
  min-height: 100vh;
  background: var(--bg);
}

.landing-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 12px rgba(0,80,160,0.06);
}

.landing-nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-nav .brand {
  color: var(--text);
}

.landing-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  position: relative;
  padding: 72px max(24px, calc((100% - 1120px) / 2)) 72px;
  background:
    linear-gradient(135deg, rgba(0,60,120,0.88) 0%, rgba(0,150,180,0.72) 100%),
    url("../../assets/images/france.jpg") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,200,220,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.landing-hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

.landing-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.1;
  letter-spacing: -1px;
  background: linear-gradient(120deg, #fff 40%, #7ee8f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 16px 0 26px;
  font-size: 20px;
  line-height: 1.9;
}

.landing-band {
  padding: 40px 0 20px;
  background: linear-gradient(180deg, var(--bg) 0%, #e8f3fb 100%);
}

.landing-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.landing-grid h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.landing-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.service-steps div {
  min-height: 96px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  font-weight: 800;
  line-height: 1.6;
  transition: box-shadow .18s, transform .18s;
}

.service-steps div:hover {
  box-shadow: 0 6px 20px rgba(0,80,160,0.1);
  transform: translateY(-2px);
}

.service-steps span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0,119,204,0.3);
}

.request-wizard {
  overflow: visible;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
}

.wizard-dot {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.wizard-dot.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(0,119,204,0.15);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.wizard-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  background: #fbfcfd;
}

.traveler-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfd;
}

.traveler-card textarea {
  min-height: 170px;
}

.passport-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.passport-check {
  font-size: 12px;
  font-weight: 500;
}

.passport-check.ok {
  color: #15803d;
}

.passport-check.missing {
  color: #dc2626;
}

.passport-check.optional {
  color: #9ca3af;
}

.textarea-shell {
  position: relative;
  display: block;
}

.textarea-shell textarea {
  padding-inline-end: 76px;
}

.paste-inline {
  position: absolute;
  top: 8px;
  inset-inline-end: 8px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  color: var(--primary-dark);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 11px;
  cursor: pointer;
}

.parsed-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.parsed-preview div {
  min-width: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.parsed-preview span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 3px;
}

.parsed-preview strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 13px;
}

.guide-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.guide-strip-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.guide-step {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.guide-step img {
  display: block;
  width: 100%;
  aspect-ratio: 1206 / 374;
  object-fit: cover;
  object-position: top;
}

.guide-step div {
  padding: 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-button {
  min-height: 58px;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: border-color .18s, background .18s, box-shadow .18s;
}

.choice-button:hover {
  border-color: var(--primary);
  box-shadow: 0 3px 12px rgba(0,119,204,0.1);
}

.choice-button.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: 0 3px 12px rgba(0,119,204,0.15);
}

/* ── Global bottom navigation ─────────────────────────────────── */
.g-bottom-nav {
  position: fixed;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  left: 16px; right: 16px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 -1px 0 rgba(0,0,0,.05), 0 8px 32px rgba(0,60,130,.14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 40;
  padding: 6px 4px;
}
.g-bn-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  padding: 10px 4px;
  color: var(--muted);
  text-decoration: none;
  border-radius: 16px;
  border: none;
  background: none;
  outline: none;
  font-family: inherit;
  cursor: pointer;
  transition: color .15s, background .15s;
  -webkit-tap-highlight-color: transparent;
}
.g-bn-item span { display: block; font-size: 10.5px; font-weight: 600; }
.g-bn-item svg { width: 22px; height: 22px; }
.g-bn-item.active {
  color: var(--primary);
  background: var(--primary-light);
}
.g-bn-item.active svg { stroke: var(--primary); }
@media (min-width: 768px) {
  .g-bottom-nav { display: none !important; }
}

/* space for floating bottom nav on mobile */
@media (max-width: 767px) {
  body { padding-bottom: 90px; }

  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .page {
    width: min(100% - 20px, 1120px);
  }

  .auth-grid,
  .detail-grid,
  .edit-grid,
  .data-grid,
  .landing-grid,
  .service-steps,
  .wizard-progress,
  .guide-strip,
  .parsed-preview,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .landing-nav {
    width: min(100% - 20px, 1120px);
  }

  .landing-hero {
    min-height: 74vh;
    padding: 92px 18px 56px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .request-row {
    grid-template-columns: 1fr;
  }

  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-header-action {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── Country / city pickers ───────────────────────────────────────── */
.picker-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 8px;
}

.country-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
  overflow: visible;
  padding-bottom: 18px;
}

/* ── Identity traveler picker ─────────────────────────────────────── */
.identity-traveler-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.identity-traveler-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .18s, background .18s, box-shadow .18s;
}

.identity-traveler-btn:hover {
  border-color: var(--primary);
}

.identity-traveler-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: 0 3px 12px rgba(0,119,204,0.15);
}

.identity-traveler-btn .id-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}

.identity-traveler-btn.active .id-check {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.country-card {
  position: relative;
  width: 100%;
  height: 130px;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #c8d6e5;
  padding: 0;
  cursor: pointer;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease;
  box-shadow:
    0  6px 16px rgba(0,0,0,.18),
    0 12px  0  -4px rgba(255,255,255,.55),
    0 14px  8px -4px rgba(0,0,0,.08),
    0 22px  0  -8px rgba(255,255,255,.35),
    0 24px  6px -8px rgba(0,0,0,.05);
}

.country-card:hover {
  transform: translateY(-3px) scale(1.02);
}

.country-card.active {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 10px 28px rgba(0,0,0,.28),
    0 18px  0  -4px rgba(255,255,255,.6),
    0 21px 10px -4px rgba(0,0,0,.1),
    0 30px  0  -8px rgba(255,255,255,.4),
    0 33px  8px -8px rgba(0,0,0,.07);
}

.city-picker {
  display: flex;
  gap: 10px;
}

.city-card {
  flex: 1;
  padding: 12px 8px;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .18s, background .18s, box-shadow .18s;
}

.city-card:hover {
  border-color: var(--primary);
  box-shadow: 0 3px 12px rgba(0,119,204,0.1);
}

.city-card.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: 0 3px 12px rgba(0,119,204,0.15);
}

@media (max-width: 760px) {
  .country-picker {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
}

/* ── Request summary card ─────────────────────────────────────────── */
.summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  gap: 12px;
}

.summary-row + .summary-row {
  border-top: 1px solid var(--line);
}

.summary-key {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.summary-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  direction: ltr;
}
