/* ============================================
   VON Dealer Intake — mobile PWA
   Brand palette: Faded Copper / Olive Wood / Black / White / Camel
   ============================================ */

:root {
  --von-copper: #A28352;
  --von-olive:  #8A704A;
  --von-camel:  #BBA177;
  --von-cream:  #f5efe2;       /* derived light tint of camel */
  --von-cream-soft: #faf6ee;   /* even lighter for backgrounds */
  --von-black:  #000000;
}


* { box-sizing: border-box; }

/* Make HTML `hidden` actually win over any author display rule. */
[hidden] { display: none !important; }

/* Visually lock the app to portrait regardless of how the phone is
   physically held. iOS Safari refuses to honor manifest `orientation`
   outside PWA mode, so we counter-rotate the document. iPhones can be
   held in either landscape direction (CW or CCW), and each requires the
   OPPOSITE counter-rotation — JS sets [data-dev-angle] on <html> based on
   `screen.orientation.angle` so we apply the right one. */
@media screen and (orientation: landscape) and (max-height: 540px) {
  /* Phone rotated counter-clockwise (home button / charge port on right).
     screen.orientation.angle === 90. Counter with -90deg. */
  html[data-dev-angle="90"] {
    transform: rotate(-90deg);
    transform-origin: left top;
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100vh;
    height: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
  }
  /* Phone rotated clockwise (home button / charge port on left).
     screen.orientation.angle === 270. Counter with +90deg. */
  html[data-dev-angle="270"] {
    transform: rotate(90deg);
    transform-origin: left top;
    position: absolute;
    top: 0;
    left: 100vw;
    width: 100vh;
    height: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
  }
  body { width: 100%; height: 100%; }

  /* Counter-cancel the html rotation on JUST the live camera video so
     the feed follows the phone's hardware rotation instead of being
     dragged back to portrait by the UI counter-rotation. The reticle
     stays portrait (it's a sibling of the video, not a child). */
  html[data-dev-angle="90"] #di-scanner-video {
    transform: rotate(90deg);
    transform-origin: center center;
  }
  html[data-dev-angle="270"] #di-scanner-video {
    transform: rotate(-90deg);
    transform-origin: center center;
  }
}

html, body {
  margin: 0;
  padding: 0;
  background: #f4f6f9;
  color: #080707;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  /* Disable the iOS rubber-band / pull-to-refresh bounce. */
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  /* Disable double-tap-to-zoom (preserves pinch-zoom for accessibility). */
  touch-action: manipulation;
}

body {
  min-height: 100dvh;
  padding-bottom: env(safe-area-inset-bottom);
}

/* ---------------- header ---------------- */
.di-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #000;
  color: #fff;
  padding-top: env(safe-area-inset-top);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.di-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}
.di-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.di-brand-logo {
  display: block;
  height: 38px;
  width: auto;
}
.di-header-link {
  color: #cfd6e0;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  flex-shrink: 0;
}
.di-header-link:active { background: rgba(255,255,255,0.1); }

.di-dealership-banner {
  background: #0e2a4d;
  color: #cfd6e0;
  font-size: 13px;
  padding: 8px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---------------- main / steps ---------------- */
.di-main {
  max-width: 640px;
  margin: 0 auto;
  padding: 16px;
}

/* Sticky light banner inside the dark header. */
.di-steps-bar {
  background: #fff;
  padding: 14px 16px 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid #e5e5e5;
}
.di-steps {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.di-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
/* Connector line between circles (sits behind them). */
.di-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px; /* vertical center of circle */
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
  transition: background 0.25s ease;
}
.di-step--done:not(:last-child)::after { background: var(--von-olive); }

.di-step-circle {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e5e7eb;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease,
              box-shadow 0.25s ease, transform 0.25s ease;
}
.di-step-num { display: block; }
.di-step-check {
  display: none;
  width: 16px;
  height: 16px;
  color: #fff;
}
.di-step-label {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

/* Active step — primary blue ring + filled circle. */
.di-step--active .di-step-circle {
  background: #A28352;
  border-color: #A28352;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(162, 131, 82, 0.22);
  transform: scale(1.05);
}
.di-step--active .di-step-label { color: #A28352; }

/* Completed step — olive-wood filled with a check. */
.di-step--done .di-step-circle {
  background: var(--von-olive);
  border-color: var(--von-olive);
  color: #fff;
}
.di-step--done .di-step-num { display: none; }
.di-step--done .di-step-check { display: block; }
.di-step--done .di-step-label { color: var(--von-olive); }

.di-step[aria-disabled="true"] { cursor: not-allowed; }
.di-step[aria-disabled="true"] .di-step-circle { opacity: 0.55; }
.di-step[aria-disabled="true"] .di-step-label { opacity: 0.55; }

/* Vehicle banner — prominent dark band inside the header, copper accent
   line on top to delineate from the brand bar. Stacks YMMT over VIN+mi. */
.di-vehicle-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--von-cream);
  color: var(--von-black);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(162, 131, 82, 0.22);
  line-height: 1.25;
}
.di-vb-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.di-vb-title {
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--gray-900);
}
.di-vb-meta {
  color: var(--von-olive);
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.di-vb-clear {
  background: white;
  color: var(--von-olive);
  border: 1px solid rgba(162, 131, 82, 0.35);
  border-radius: 6px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
}
.di-vb-clear:active { background: var(--von-cream); }

/* Resume prompt card */
.di-resume {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 14px;
}
.di-resume-title { font-weight: 700; margin: 0 0 4px; color: #92400e; }
.di-resume-msg { font-size: 13px; color: #92400e; margin: 0 0 12px; }
.di-resume-actions { display: flex; gap: 8px; }
.di-resume-actions .di-btn { flex: 1; }
.di-step span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e5e5e5;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.di-step--active { color: #A28352; border-bottom-color: #A28352; }
.di-step--active span { background: #A28352; }
.di-step--done span { background: #16a34a; }

/* ---------------- card ---------------- */
.di-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  margin-bottom: 16px;
}
.di-card-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: #080707;
}
.di-card-header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f1f4;
}
.di-card-header .di-card-title {
  margin: 0;
  font-size: 19px;
}
.di-card-subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.3;
}

/* ---------------- tabs ---------------- */
.di-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 16px;
}
.di-tab {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.di-tab--active { color: #A28352; border-bottom-color: #A28352; }
.di-tab--disabled {
  color: #cbd5e1;
  cursor: not-allowed;
  opacity: 0.6;
}

.di-tab-panel { display: none; }
.di-tab-panel--active { display: block; }

/* ---------------- inputs ---------------- */
.di-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #3e3e3c;
  margin-bottom: 6px;
}
.di-input {
  width: 100%;
  font-size: 16px; /* avoid iOS zoom */
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #080707;
  font-family: inherit;
}
.di-input:focus {
  outline: none;
  border-color: #A28352;
  box-shadow: 0 0 0 3px rgba(162,131,82,0.22);
}
.di-input--mono {
  font-family: 'Monaco', 'Courier New', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
/* Lighten placeholder VINs so they read as hint text, not entered values. */
.di-input--mono::placeholder { color: #d4d8de; opacity: 1; }
.di-input--mono::-webkit-input-placeholder { color: #d4d8de; }
.di-input--locked {
  background: var(--von-cream-soft);
  border-color: #d9c89f;
  color: #3a2e1c;
  cursor: default;
}
.di-input-help {
  font-size: 12px;
  color: #64748b;
  margin: 6px 0 16px;
}
.di-textarea { resize: vertical; min-height: 80px; }

/* ---------------- buttons ---------------- */
.di-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  transition: background 0.12s, opacity 0.12s;
}
.di-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.di-btn--primary { background: #A28352; color: #fff; }
.di-btn--primary:active:not(:disabled) { background: #8A704A; }
.di-btn--secondary {
  background: #faf6ee;
  color: #A28352;
  border-color: #d9c89f;
}
.di-btn--ghost {
  background: transparent;
  color: #3e3e3c;
  border-color: #d1d5db;
}
.di-btn--block { display: flex; width: 100%; margin-top: 12px; }

/* ---------------- scanner ---------------- */
.di-scanner-frame {
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 12px;
}
.di-scanner-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.di-scanner-reticle {
  position: absolute;
  inset: 20% 10%;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 8px;
  pointer-events: none;
  animation: di-scan-pulse 1.6s ease-in-out infinite;
}
@keyframes di-scan-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* state machine — show only the panel matching data-scan-state. Uses
   !important to make absolutely sure the inactive panels stay hidden,
   even if a later rule on .di-scan-idle / -active / -done forgets. */
.di-scanner .di-scan-idle,
.di-scanner .di-scan-active,
.di-scanner .di-scan-done { display: none !important; }
.di-scanner[data-scan-state="idle"]     .di-scan-idle    { display: block !important; }
.di-scanner[data-scan-state="scanning"] .di-scan-active  { display: block !important; }
.di-scanner[data-scan-state="done"]     .di-scan-done    { display: block !important; }

.di-scan-idle {
  text-align: center;
  padding: 28px 16px 24px;
  background: linear-gradient(180deg, #fafbff 0%, #f4f6f9 100%);
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
}
.di-scan-idle-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  color: #0a1f3a;
}
.di-scan-idle-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.di-scan-idle-text {
  font-size: 15px;
  color: #3e3e3c;
  margin: 0 auto 22px;
  max-width: 280px;
}
.di-scan-idle .di-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 8px auto 0;
}
.di-scan-idle .di-btn:first-of-type { margin-top: 0; }
.di-scan-photo-btn { display: block !important; }
.di-scan-idle-hint {
  font-size: 12px;
  color: #64748b;
  margin: 14px auto 0;
  max-width: 320px;
  line-height: 1.4;
}

.di-scan-status {
  font-size: 14px;
  color: #A28352;
  text-align: center;
  margin: 0 0 12px;
  font-weight: 500;
}
.di-scan-tips {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 12px;
  animation: di-fade-in 0.3s ease-out;
}
.di-scan-tips-title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 13px;
  color: #92400e;
}
.di-scan-tips ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: #92400e;
}
.di-scan-tips li { margin-bottom: 2px; }
@keyframes di-fade-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ---------------- manual override (decode fallback) ---------------- */
.di-manual-override {
  margin-top: 16px;
  padding: 18px;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
}
.di-manual-override-header {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: #92400e;
}
.di-manual-override-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}
.di-manual-override-msg {
  font-size: 13px;
  line-height: 1.35;
}
.di-manual-override .di-q { margin-bottom: 12px; }
.di-manual-override .di-input {
  background: #fff;
  border-color: #fcd34d;
}
.di-manual-override .di-btn { margin-top: 8px; }

/* ---------------- decoded card ---------------- */
.di-decoded {
  margin-top: 16px;
  padding: 22px 22px 24px;
  background: linear-gradient(135deg, #faf6ee 0%, #f5efe2 100%);
  border: 1px solid #d9c89f;
  border-left: 4px solid var(--von-copper);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(162, 131, 82, 0.10);
}
.di-decoded-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--von-olive);
  margin-bottom: 12px;
}
.di-decoded-badge svg { color: var(--von-olive); }
.di-decoded-vehicle {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 700;
  color: #080707;
  line-height: 1.2;
}
.di-decoded-trim {
  font-size: 15px;
  font-weight: 500;
  color: #3e3e3c;
  margin-bottom: 14px;
}
.di-decoded-trim:empty { display: none; }
.di-decoded-vin {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #3a2e1c;
  background: #fff;
  border: 1px solid #d9c89f;
  border-radius: 8px;
  padding: 14px 12px;
  margin-top: 4px;
  word-break: break-all;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ---------------- media slots ---------------- */
.di-media-slot {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 12px;
}
.di-media-slot-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
/* Match the form-field label styling (.di-label) so slot headers
   read as part of the same hierarchy. */
.di-media-slot-title {
  font-weight: 600;
  font-size: 12px;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
}
.di-media-slot-hint {
  font-size: 10px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.di-media-slot-buttons { display: flex; flex-direction: column; gap: 6px; }
.di-media-slot-buttons .di-btn { margin-top: 0; }

.di-media-list { margin-top: 10px; }
.di-media-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-bottom: 6px;
}
.di-media-thumb {
  width: 44px;
  height: 44px;
  background: #e5e5e5;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}
.di-media-info { flex: 1; min-width: 0; }
.di-media-name {
  font-size: 13px;
  color: #080707;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.di-media-status { font-size: 11px; color: #64748b; }
.di-media-progress {
  width: 100%;
  height: 3px;
  background: #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}
.di-media-progress-fill {
  height: 100%;
  background: #A28352;
  width: 0;
  transition: width 0.18s linear;
}
.di-media-remove {
  border: 0;
  background: transparent;
  color: #dc2626;
  font-size: 18px;
  padding: 4px 8px;
  cursor: pointer;
}

/* ---------------- step nav (sticky tray at bottom) ---------------- */
.di-step-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  border-top: 1px solid #e5e5e5;
  z-index: 50;
  max-width: 640px;
  margin: 0 auto;
}
.di-step-nav .di-btn { flex: 1; }

/* When a step card is hidden the nav inside it is hidden too — we use
   `display: none` (not just visibility) so the fixed position rules
   don't stack multiple trays from inactive steps. */
.di-card[hidden] { display: none !important; }

/* Reserve space at the bottom of the page so content can't be obscured by
   the fixed tray. Equal to nav height (~64) + safe-area inset. */
.di-main { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }

/* ---------------- questionnaire ---------------- */
.di-q { margin-bottom: 16px; }
.di-label-req {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 8px;
  vertical-align: middle;
}
/* Author CSS for .di-label-req sets display:inline-block which would
   defeat the HTML `hidden` attribute — explicitly restore that here. */
.di-label-req[hidden] { display: none; }

/* Required-but-empty error state for inputs / textareas. */
.di-input--error {
  background: #fef2f2 !important;
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}
.di-input--error:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
}
.di-checks { display: flex; flex-direction: column; gap: 14px; }
.di-check-group { display: flex; flex-direction: column; gap: 6px; }
.di-check-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 2px;
}
.di-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
}
.di-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #A28352;
}

/* ---------------- success ---------------- */
.di-success { text-align: center; }
.di-success-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #d1fae5;
  color: #16a34a;
  font-size: 36px;
  line-height: 64px;
  margin: 0 auto 12px;
  font-weight: 700;
}
.di-success-title { margin: 0 0 8px; font-size: 22px; }
.di-success-msg { color: #64748b; margin: 0 0 20px; }

/* ---------------- toast (top notification banner) ---------------- */
.di-toast {
  position: fixed;
  left: 16px;
  right: 16px;
  top: calc(env(safe-area-inset-top) + 16px);
  margin: 0 auto;
  max-width: 480px;
  background: var(--von-black);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  text-align: center;
  animation: di-toast-in 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.di-toast--error {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.28), 0 2px 6px rgba(220, 38, 38, 0.16);
}
@keyframes di-toast-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------------- submitted list (separate page) ---------------- */
.di-list-empty {
  text-align: center;
  padding: 40px 20px;
  color: #64748b;
}
.di-list-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
}
.di-list-thumb {
  width: 64px;
  height: 64px;
  background: #e5e5e5;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.di-list-body { flex: 1; min-width: 0; }
.di-list-title { font-weight: 600; font-size: 15px; margin: 0 0 4px; }
.di-list-meta { font-size: 12px; color: #64748b; margin: 0 0 6px; }
.di-list-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
}
.di-status--reviewing { background: #fef3c7; color: #92400e; }
.di-status--offer { background: var(--von-cream-soft); color: var(--von-olive); }
.di-status--purchased { background: var(--von-cream); color: var(--von-olive); border: 1px solid #d9c89f; }
.di-status--passed { background: #f4f6f9; color: #64748b; }
.di-status--in-progress { background: #fef3c7; color: #92400e; }

.di-list-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin: 16px 0 8px;
}
.di-list-section-title:first-child { margin-top: 0; }
.di-list-item--in-progress {
  border: 1px dashed #fcd34d;
  background: #fffbeb;
}

/* ============================================================================
   Mobile-first additions for desktop parity:
   • Required-asterisk
   • "No known issues" affirmation card
   • Photo recommendation list (inline <details>)
   • Photo issue callout for selected visual issues
   ============================================================================ */
.di-req-star {
  color: #dc2626;
  font-weight: 700;
  font-size: 14px;
  margin-left: 2px;
  line-height: 1;
}

.di-no-issues-card {
  border: 1px solid var(--von-camel);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 6px 0 10px;
  /* Default state mirrors desktop's "needs-action" — cream tint draws
     the dealer's eye to the choice (confirm or pick issues). */
  background: var(--von-cream);
  box-shadow: 0 0 0 3px rgba(162, 131, 82, 0.10);
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.di-no-issues {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}
.di-no-issues input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 1px 0 0 0;
  accent-color: var(--von-copper);
  flex-shrink: 0;
}
.di-no-issues-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.35;
}
.di-no-issues-strong {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}
.di-no-issues-help {
  font-size: 12px;
  color: var(--von-olive);
}
/* Confirmed (checked) — keep the affirmation visually obvious. */
.di-no-issues-card:has(input:checked) {
  background: var(--von-cream);
  border-color: var(--von-copper);
  box-shadow: 0 0 0 3px rgba(162, 131, 82, 0.18);
}
.di-no-issues-card:has(input:checked) .di-no-issues-strong {
  color: var(--von-olive);
  font-weight: 700;
}
.di-no-issues-card:has(input:checked) .di-no-issues-strong::before {
  content: '✓';
  color: var(--von-copper);
  font-weight: 700;
  margin-right: 6px;
}
.di-no-issues-card:has(input:checked) .di-no-issues-help { display: none; }
/* Disabled (the dealer picked an issue — this path is no longer valid) */
.di-no-issues-card--disabled {
  opacity: 0.45;
  pointer-events: none;
  background: #f7f8fa;
  border-color: #e2e5eb;
  box-shadow: none;
}
.di-no-issues-card--disabled .di-no-issues { cursor: not-allowed; }
/* Locked grid when "No known issues" is active */
.di-q.di-q--no-issues .di-checks {
  opacity: 0.4;
  pointer-events: none;
}

/* Recommended-shots disclosure — shown above the Vehicle Photos slot. */
.di-photo-recs {
  border: 1px solid #e2e5eb;
  background: #f7f8fa;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 6px 0 10px;
  font-size: 13px;
}
.di-photo-recs > summary {
  font-size: 12px;
  font-weight: 700;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  list-style: none;
}
.di-photo-recs > summary::-webkit-details-marker { display: none; }
.di-photo-recs > summary::after {
  content: '▾';
  margin-left: 6px;
  color: #9aa1ad;
}
.di-photo-recs[open] > summary::after { content: '▴'; }
.di-photo-recs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}
.di-photo-recs-group {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--von-olive);
  margin-bottom: 4px;
}
.di-photo-recs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.di-photo-recs ul li {
  position: relative;
  padding: 2px 0 2px 12px;
  font-size: 12px;
  color: #374151;
  line-height: 1.35;
}
.di-photo-recs ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--von-camel);
}
.di-photo-recs-foot {
  margin: 8px 0 0;
  font-size: 11px;
  color: #6b7280;
  font-style: italic;
}

/* Photo issue callout (when visual issues are picked in step 2). */
.di-photo-issues {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 6px 0 10px;
}
.di-photo-issues-label {
  font-size: 11px;
  font-weight: 700;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.di-photo-issues-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.di-chip {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1px solid #fcd34d;
  color: #92400e;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============================================================================
   Queue feature — multi-VIN paste, queue bar at top of main, queue sheet
   ============================================================================ */

/* Sticky queue bar above the wizard, only when 2+ entries are queued. */
.di-queue-bar {
  background: white;
  border-bottom: 1px solid var(--gray-200, #e2e5eb);
  position: sticky;
  top: 0;
  z-index: 9;
}
.di-queue-bar-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}
.di-queue-bar-trigger:active { background: #f7f8fa; }
.di-queue-bar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.di-queue-bar-pos {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.di-queue-bar-vehicle {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.di-queue-bar-arrow {
  color: var(--von-copper);
  font-size: 14px;
  flex-shrink: 0;
}

/* "Add multiple VINs" disclosure inside step 1. */
.di-paste-multi {
  margin-top: 18px;
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
}
.di-paste-multi > summary {
  font-size: 13px;
  font-weight: 600;
  color: var(--von-olive);
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.di-paste-multi > summary::-webkit-details-marker { display: none; }
.di-paste-multi > summary::before {
  content: '＋';
  font-size: 18px;
  font-weight: 400;
  color: var(--von-copper);
  line-height: 1;
}
.di-paste-multi[open] > summary::before { content: '−'; }
.di-paste-multi-help {
  margin: 8px 0 8px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.4;
}
.di-paste-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.di-paste-count {
  font-size: 12px;
  color: #6b7280;
}

/* Queue sheet — full-screen overlay listing all entries. */
.di-queue-sheet {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding-top: env(safe-area-inset-top);
}
.di-queue-sheet-head {
  display: grid;
  grid-template-columns: 40px 1fr 60px;
  align-items: center;
  padding: 12px 12px 10px;
  border-bottom: 1px solid #e5e7eb;
}
.di-queue-sheet-close {
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 6px;
}
.di-queue-sheet-close:active { background: #f3f4f6; }
.di-queue-sheet-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  text-align: center;
}
.di-queue-sheet-count {
  font-size: 12px;
  color: #6b7280;
  text-align: right;
  padding-right: 4px;
}
.di-queue-list {
  list-style: none;
  margin: 0;
  padding: 8px 0 env(safe-area-inset-bottom);
  flex: 1;
  overflow-y: auto;
}
.di-queue-list-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.di-queue-list-item:active { background: #f7f8fa; }
.di-queue-list-item--active {
  background: var(--von-cream-soft);
  border-left: 3px solid var(--von-copper);
  padding-left: 13px;
}
.di-queue-list-item-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.di-queue-list-item-status[data-status="decoding"]   { background: #f3f4f6; color: #4b5563; }
.di-queue-list-item-status[data-status="needs-info"] { background: var(--von-cream); color: var(--von-olive); }
.di-queue-list-item-status[data-status="ready"]      { background: #ecfdf5; color: #16a34a; }
.di-queue-list-item-status[data-status="submitted"]  { background: #ecfdf5; color: #16a34a; }
.di-queue-list-item-status[data-status="error"]      { background: #fef2f2; color: #dc2626; }
.di-queue-list-item-ymm {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}
.di-queue-list-item-vin {
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 11px;
  color: #6b7280;
}

/* ============================================================================
   Hamburger menu trigger (in header) and side-drawer menu
   ============================================================================ */
.di-menu-trigger {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.di-menu-trigger:active { background: rgba(255,255,255,0.1); }
.di-menu-trigger-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.di-menu-trigger-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}
.di-menu-trigger-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--von-copper);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

.di-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
}
.di-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 1;
  transition: opacity 0.18s ease;
}
.di-menu-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: -10px 0 40px rgba(0,0,0,0.18);
}
.di-menu--open .di-menu-panel { transform: translateX(0); }
.di-menu[hidden] { display: none !important; }

.di-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
}
.di-menu-dealer {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.di-menu-close {
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 6px;
}
.di-menu-close:active { background: #f3f4f6; }

.di-menu-section {
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
}
.di-menu-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}
.di-menu-section-title {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.di-menu-section-count {
  font-size: 11px;
  color: #9ca3af;
  font-variant-numeric: tabular-nums;
}
.di-menu-empty {
  margin: 6px 0 0;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.5;
}
.di-menu-queue {
  list-style: none;
  margin: 0;
  padding: 0;
}
.di-menu-queue:empty + .di-menu-empty { display: block; }
.di-menu-queue:not(:empty) ~ .di-menu-empty { display: none; }

/* Queue item with swipe-to-reveal action button.
   The Discard button is anchored to the right edge under the row; the
   .di-mq-row slides left to expose it. Tapping the button discards. */
.di-mq-item {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
}
.di-mq-item:last-child { border-bottom: 0; }
.di-mq-discard-action {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 96px;
  border: 0;
  background: #dc2626;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.di-mq-discard-action:active { background: #b91c1c; }
.di-mq-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
  /* JS sets transition during gesture transitions; no default here so
     fingers drag 1:1 with the row. */
}
.di-mq-item--active .di-mq-row {
  background: var(--von-cream-soft);
  border-left: 3px solid var(--von-copper);
  padding-left: 11px;
}
.di-mq-row:active:not(.di-mq-row--swiping) { background: #f7f8fa; }
.di-mq-status {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 999px;
}
.di-mq-status[data-status="decoding"]   { background: #f3f4f6; color: #4b5563; }
.di-mq-status[data-status="needs-info"] { background: var(--von-cream); color: var(--von-olive); }
.di-mq-status[data-status="ready"]      { background: #ecfdf5; color: #16a34a; }
.di-mq-status[data-status="submitted"]  { background: #ecfdf5; color: #16a34a; }
.di-mq-status[data-status="error"]      { background: #fef2f2; color: #dc2626; }
.di-mq-ymm {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}
.di-mq-vin {
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 11px;
  color: #6b7280;
}

.di-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  margin: -14px -16px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  -webkit-tap-highlight-color: transparent;
}
.di-menu-link:active { background: #f7f8fa; }
.di-menu-link-arrow {
  color: var(--von-copper);
  font-weight: 700;
}
.di-menu-link--accent {
  color: var(--von-olive);
}

/* Sections rendered as a flat link (no head, just an anchor inside). */
.di-menu-section--link { padding: 0; }
.di-menu-section--link .di-menu-link {
  margin: 0;
  border-bottom: 1px solid #f3f4f6;
}

/* Working list collapsible toggle */
.di-menu-section--working { padding: 0; }
.di-menu-section-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  border-bottom: 1px solid #f3f4f6;
}
.di-menu-section-toggle:active { background: #f7f8fa; }
.di-menu-section-toggle .di-menu-section-title { flex: 1; }
.di-menu-section-chevron {
  display: inline-block;
  font-size: 13px;
  color: #9ca3af;
  transition: transform 0.18s ease;
  transform: rotate(-90deg);
}
.di-menu-section-toggle[aria-expanded="true"] .di-menu-section-chevron {
  transform: rotate(0);
}
.di-menu-section-body {
  padding: 8px 0 12px;
  border-bottom: 1px solid #f3f4f6;
}
.di-menu-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--von-copper);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.di-menu-sublink:active { background: #f7f8fa; }
.di-menu-section-body .di-menu-empty { padding: 0 16px; }

/* Discard button on the vehicle banner — distinct from "ghost" so it
   reads as destructive. */
.di-vb-discard {
  background: #fff;
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 6px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.di-vb-discard:active { background: #fef2f2; }

/* ============================================================================
   Discard confirmation modal (mobile)
   ============================================================================ */
.di-confirm {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.di-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}
.di-confirm-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,.32);
  text-align: center;
  animation: di-confirm-in 0.14s ease-out;
}
@keyframes di-confirm-in {
  from { opacity: 0; transform: translateY(6px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.di-confirm-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fef2f2;
  color: #dc2626;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.di-confirm-title {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}
.di-confirm-body {
  margin: 0 0 18px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
}
.di-confirm-body strong {
  color: #111827;
  font-weight: 700;
}
.di-confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.di-confirm-actions .di-btn { margin: 0; }
.di-btn--danger {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}
.di-btn--danger:active { background: #b91c1c; border-color: #b91c1c; }

/* ============================================================================
   FLAT MOBILE LAYOUT — strip the card-on-background look so the wizard
   reads as a continuous edge-to-edge surface, matching desktop's flat
   mode. Scoped to the wizard via body.di-flat so list/admin pages keep
   normal page padding.
   ============================================================================ */
html, body { background: #fff; }

body.di-flat .di-main { padding: 0; max-width: none; }

body.di-flat .di-card {
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 18px 16px;
  border-bottom: 1px solid #e5e7eb;
}
body.di-flat .di-card:last-child { border-bottom: 0; }
body.di-flat .di-card-header { padding: 0; margin-bottom: 12px; }

/* Step nav: keep it pinned at the bottom of the viewport (position:
   fixed inherited) so it's always reachable, but inset from the iPhone
   rounded corners and lifted above the home indicator so the buttons
   are never clipped. */
body.di-flat .di-step-nav {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 10px;
  padding: 12px max(20px, env(safe-area-inset-left) + 16px)
           calc(20px + env(safe-area-inset-bottom))
           max(20px, env(safe-area-inset-right) + 16px);
  margin: 0;
  max-width: 640px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
body.di-flat .di-step-nav .di-btn { flex: 1; }

/* Reserve room at the bottom of the wizard so content can scroll past
   the fixed nav tray (~110px = padding + button + safe area). */
body.di-flat .di-main {
  padding-bottom: calc(110px + env(safe-area-inset-bottom));
}

/* Resume card retains slight emphasis but loses heavy shadow. */
body.di-flat .di-resume {
  margin: 12px 16px;
  border-radius: 10px;
  box-shadow: none;
}

/* Success screen stays card-shaped but borderless on the flat surface. */
body.di-flat .di-success {
  text-align: center;
}

/* ============================================================================
   List pages (Submitted, Working list) — comfortable padding so cards
   don't run flush to the screen edges or the dark header.
   ============================================================================ */
body.di-list-page .di-main {
  padding: 18px 16px calc(24px + env(safe-area-inset-bottom));
  max-width: 720px;
  margin: 0 auto;
}
body.di-list-page .di-list-section-title:first-child { margin-top: 4px; }
body.di-list-page .di-list-item {
  border: 1px solid #eef0f4;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  padding: 14px;
  margin-bottom: 10px;
}
body.di-list-page .di-list-thumb { width: 72px; height: 72px; }
