/* ===== Lot Burst — camera-first capture UI ===== */
:root {
  --red: #e5342b;
  --red-dim: #b3271f;
  --amber: #f5a623;
  --green: #2ec27e;
  --blue: #2d9cdb;
  --ink: #ffffff;
  --ink-2: rgba(255, 255, 255, 0.62);
  --ink-3: rgba(255, 255, 255, 0.38);
  --glass: rgba(18, 18, 20, 0.52);
  --glass-2: rgba(28, 28, 32, 0.74);
  --hair: rgba(255, 255, 255, 0.14);
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --pad-x: clamp(10px, 3.2vw, 16px); /* fluid horizontal gutter */
  --pad-y: clamp(8px, 2.4vh, 14px); /* fluid vertical gutter */
  --gap: clamp(6px, 2vw, 10px); /* fluid inter-element gap */
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

html,
body {
  margin: 0;
  height: 100vh; /* fallback for engines without dvh */
  height: 100dvh; /* dynamic viewport — no iOS URL-bar jump */
  background: #000;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  overscroll-behavior: none;
  user-select: none;
}

button {
  font-family: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
  margin: 0;
}

.app {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #000;
}

/* ---------- Viewfinder (placeholder; <video> swaps in later) ---------- */
.viewfinder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 30%, #2a2d33 0%, #16171b 55%, #050506 100%);
  display: grid;
  place-items: center;
}
.viewfinder::after {
  /* vignette */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 100% at 50% 45%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 2; /* over the live <video>, under the HUD */
}

/* ---------- Live <video> in the viewfinder ---------- */
.vf-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill the screen, crop overflow, no letterbox */
  object-position: center;
  background: #000;
  z-index: 0; /* under .vf-grid / .vf-hint / vignette / .hud */
  -webkit-transform: translateZ(0); /* iOS compositing/scaling stability */
}

/* "Tap to start camera" affordance shown until a stream is live. */
.vf-resume {
  position: absolute;
  inset: 0;
  z-index: 3; /* above the vignette so the tap target is reachable */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: auto;
}
.vf-grid {
  position: absolute;
  inset: 0;
  z-index: 1; /* over the live <video> */
  background-image:
    linear-gradient(var(--hair) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair) 1px, transparent 1px);
  background-size: 33.33% 33.33%;
  background-position: center;
  opacity: 0.5;
  mask-image: linear-gradient(transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.vf-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--ink-3);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}
.vf-reticle {
  width: 64px;
  height: 64px;
  border: 2px solid var(--ink-3);
  border-radius: 14px;
  position: relative;
}
.vf-reticle::before,
.vf-reticle::after {
  content: "";
  position: absolute;
  background: var(--ink-3);
}
.vf-reticle::before { left: 50%; top: 18px; bottom: 18px; width: 2px; transform: translateX(-50%); }
.vf-reticle::after { top: 50%; left: 18px; right: 18px; height: 2px; transform: translateY(-50%); }

/* ---------- HUD scaffold ---------- */
.hud {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hud > * { pointer-events: none; }
.hud button,
.hud .chip,
.hud .pill { pointer-events: auto; }

/* ---------- Top row: consignor / LOT / location ---------- */
.hud-top {
  display: grid;
  /* Side columns may shrink to 0 so the centred LOT block never overlaps the
     consignor/location chips on a 320px screen; the middle stays auto. */
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: calc(var(--safe-t) + 12px) calc(var(--safe-r) + 12px) 0 calc(var(--safe-l) + 12px);
}

.chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 13px;
  border-radius: 14px;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid var(--hair);
  text-align: left;
  /* min-width 0 so the chip can shrink (its column is minmax(0,1fr)) instead of
     forcing the grid wider than the screen and overlapping the LOT block. */
  min-width: 0;
  transition: transform 0.08s ease;
}
.chip:active { transform: scale(0.96); }
.hud-top > .chip-meta { justify-self: start; max-width: 46vw; }
.hud-top > .chip-meta:last-child { justify-self: end; align-items: flex-end; text-align: right; }
.chip-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }
.chip-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 600;
}
.chip-value {
  font-size: 19px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.lot-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.lot-chip {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 16px;
  background: var(--red);
  box-shadow: 0 6px 22px rgba(229, 52, 43, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.lot-word {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.85;
}
.lot-num {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.photo-count {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 12px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hair);
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.photo-count.warn { color: var(--amber); border-color: rgba(245, 166, 35, 0.5); }
.pc-ico { font-size: 13px; }

/* ---------- Status strip ---------- */
.hud-status {
  position: absolute;
  top: calc(var(--safe-t) + 92px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hair);
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}
.pill-ghost {
  min-height: 44px; /* min comfortable touch target for the interactive pill */
}
.pill-ghost:active { transform: scale(0.95); }
.backlog { color: var(--ink); }
.backlog.idle { color: var(--green); border-color: rgba(46, 194, 126, 0.45); }
.backlog.uploading { color: var(--blue); border-color: rgba(45, 156, 219, 0.5); }
.backlog.offline { color: var(--amber); border-color: rgba(245, 166, 35, 0.5); }
.backlog.dead { color: var(--red); border-color: rgba(229, 52, 43, 0.6); }

/* ---------- Bottom controls ---------- */
.hud-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 calc(var(--safe-r) + 16px) calc(var(--safe-b) + 18px) calc(var(--safe-l) + 16px);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55) 60%);
}
.ctl-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 460px;
}

.dims-btn {
  justify-self: start;
  min-width: 86px;
  min-height: 44px; /* min comfortable touch target */
  padding: 13px 16px;
  border-radius: 16px;
  background: var(--glass-2);
  border: 1px solid var(--hair);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
  transition: transform 0.08s ease;
}
.dims-btn:active { transform: scale(0.95); }
.dims-btn.set { color: var(--ink); border-color: rgba(46, 194, 126, 0.55); }

.shutter {
  justify-self: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28);
  transition: transform 0.06s ease;
}
.shutter:active { transform: scale(0.9); }
.shutter-ring {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 3px solid #000;
  background: #fff;
}

.next-lot {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 64px;
  border-radius: 18px;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 20px rgba(229, 52, 43, 0.4);
  transition: transform 0.08s ease;
}
.next-lot:active { transform: scale(0.94); }
.nl-label { font-size: 14px; font-weight: 800; letter-spacing: 0.08em; }
.nl-sub { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; opacity: 0.85; }

/* ---------- Shutter flash ---------- */
.flash {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 9;
  pointer-events: none;
  opacity: 0;
}
.flash.go { animation: flash 0.18s ease-out; }
@keyframes flash {
  0% { opacity: 0.85; }
  100% { opacity: 0; }
}

/* ---------- Overlays / sheets ---------- */
.scrim {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.sheet {
  position: absolute;
  z-index: 21;
  left: 50%;
  bottom: calc(var(--safe-b) + 16px);
  transform: translateX(-50%);
  width: min(420px, calc(100vw - 24px));
  /* Never run off the top in landscape: cap to the safe viewport and scroll the
     overflow instead of clipping the keypad / actions. */
  max-height: calc(100dvh - var(--safe-t) - var(--safe-b) - 32px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--glass-2);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid var(--hair);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: rise 0.18s ease-out;
}
@keyframes rise {
  from { transform: translate(-50%, 14px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}
.sheet-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: center;
  margin-bottom: 14px;
}
.sheet-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--hair);
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  outline: none;
}
.sheet-input:focus { border-color: var(--blue); }
.sheet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.btn-ghost,
.btn-primary {
  padding: 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.08s ease;
}
.btn-ghost { background: rgba(255, 255, 255, 0.08); border: 1px solid var(--hair); color: var(--ink-2); }
.btn-primary { background: var(--green); color: #062013; }
.btn-ghost:active,
.btn-primary:active { transform: scale(0.97); }

/* ---------- Dimensions pad ---------- */
.dim-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.dim-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 6px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--hair);
  transition: border-color 0.1s ease;
}
.dim-field.active { border-color: var(--blue); background: rgba(45, 156, 219, 0.12); }
.dim-cap { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--ink-3); }
.dim-val { font-size: 26px; font-weight: 800; font-variant-numeric: tabular-nums; min-height: 30px; }
.dim-unit { font-size: 11px; color: var(--ink-3); margin-top: -2px; }

.keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.key {
  padding: 16px 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--hair);
  font-size: 24px;
  font-weight: 700;
  transition: transform 0.06s ease, background 0.1s ease;
}
.key:active { transform: scale(0.94); background: rgba(255, 255, 255, 0.16); }
.key.key-back { font-size: 20px; color: var(--ink-2); }
.key.key-save { background: var(--green); color: #062013; }

/* ---------- Toasts ---------- */
.toasts {
  position: absolute;
  z-index: 30;
  left: 50%;
  bottom: calc(var(--safe-b) + 170px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: calc(100vw - 32px);
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  padding: 11px 16px;
  border-radius: 14px;
  background: var(--glass-2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--hair);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  animation: rise 0.16s ease-out;
}

/* ---------- Very narrow phones (<=360px): scale the top chrome down ---------- */
@media (max-width: 360px) {
  .hud-top { gap: 6px; padding-left: calc(var(--safe-l) + 8px); padding-right: calc(var(--safe-r) + 8px); }
  .chip { padding: 7px 10px; }
  .chip-value { font-size: 16px; }
  .lot-chip { padding: 6px 13px; gap: 6px; }
  .lot-num { font-size: 25px; }
  .lot-word { letter-spacing: 0.12em; }
  .hud-top > .chip-meta { max-width: 38vw; }
}

/* ---------- Landscape: short viewport — re-centre the sheet, shrink controls,
   and lift the toasts/status strip so nothing clips off the top or bottom. */
@media (orientation: landscape) and (max-height: 480px) {
  /* Centre the sheet in the viewport (bottom-anchored sheets clip in landscape). */
  .sheet {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    max-height: calc(100dvh - 24px);
  }
  @keyframes rise {
    from { transform: translate(-50%, -46%); opacity: 0; }
    to { transform: translate(-50%, -50%); opacity: 1; }
  }
  /* Tighter bottom controls + a smaller shutter so the row fits a short height. */
  .hud-bottom { gap: 8px; }
  .shutter { width: 64px; height: 64px; }
  .shutter-ring { width: 52px; height: 52px; }
  .next-lot { height: 52px; }
  /* Compact keypad keys. */
  .key { padding: 11px 0; font-size: 20px; }
  .dim-val { font-size: 22px; min-height: 26px; }
  /* Status strip rides higher (less vertical room below the top chips). */
  .hud-status { top: calc(var(--safe-t) + 70px); }
  /* Keep toasts clear of the (now shorter) bottom controls. */
  .toasts { bottom: calc(var(--safe-b) + 96px); max-width: calc(100vw - 48px); }
}

/* ========================================================================
   CATALOG — live browse + edit/approve screen (additive; dark camera aesthetic)
   ======================================================================== */

/* Hide the camera layer while in the catalog; keep it mounted + the stream live. */
.viewing-catalog .cam-layer { display: none; }

/* Camera <-> Catalog nav toggle.
   In the CATALOG view it sits bottom-center (no shutter there to collide with).
   In the CAMERA view the bottom-center spot is exactly over the .shutter (and the
   top-center is occupied by the LOT chip), so the pill would occlude / mis-fire
   the single most important control — pin it to the bottom-LEFT corner instead,
   clear of the centered shutter and the right-hand next-lot button. */
.nav-toggle {
  position: absolute;
  z-index: 15;
  bottom: calc(var(--safe-b) + 10px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: var(--glass-2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--hair);
}
/* Camera view = .app WITHOUT .viewing-catalog: tuck the pill into the bottom-left
   corner so it never overlaps the bottom-center shutter. */
.app:not(.viewing-catalog) .nav-toggle {
  left: calc(var(--safe-l) + 10px);
  transform: none;
}
.nav-btn {
  width: 46px;
  height: 38px;
  border-radius: 999px;
  font-size: 18px;
  color: var(--ink-2);
  display: grid;
  place-items: center;
  transition: background 0.1s ease, color 0.1s ease;
}
.nav-btn.on { background: var(--glass); color: var(--ink); }

/* The catalog screen sits above the (hidden) camera but below scrim/sheet. */
.catalog {
  position: absolute;
  inset: 0;
  z-index: 12;
  background: #0b0b0d;
  display: flex;
  flex-direction: column;
}
.cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: calc(var(--safe-t) + 12px) calc(var(--safe-r) + var(--pad-x)) 10px
    calc(var(--safe-l) + var(--pad-x));
  border-bottom: 1px solid var(--hair);
}
.cat-title {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-2);
}
.cat-back,
.cat-refresh {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--hair);
  font-size: 18px;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.cat-grid {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--gap);
  padding: var(--pad-x);
  padding-bottom: calc(var(--safe-b) + 64px); /* clear the nav toggle */
}
.cat-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  border-radius: 16px;
  overflow: hidden;
  background: var(--glass-2);
  border: 1px solid var(--hair);
  transition: transform 0.08s ease;
}
.cat-card:active { transform: scale(0.97); }
.cat-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #000;
}
.cat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-img--empty {
  display: grid;
  place-items: center;
  font-size: 30px;
  color: var(--ink-3);
}
.cat-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--hair);
  color: var(--ink-2);
}
.cat-badge--captured { color: var(--ink-2); }
.cat-badge--enriched { color: var(--green); border-color: rgba(46, 194, 126, 0.5); }
.cat-badge--error { color: var(--red); border-color: rgba(229, 52, 43, 0.55); }
.cat-meta {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cat-lotno {
  font-size: 20px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.cat-consignor {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 600;
}
.cat-cardtitle {
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-cardtitle.muted { color: var(--ink-3); font-style: italic; }
.cat-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-3);
  padding: 48px 0;
  font-size: 14px;
}

/* Edit sheet — extends .sheet; wider + scrollable. */
.sheet--edit { width: min(480px, calc(100vw - 24px)); }
.edit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.edit-dims {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}
.edit-field { display: flex; flex-direction: column; gap: 4px; }
.edit-field--wide { grid-column: 1 / -1; margin-bottom: 10px; }
.edit-cap {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.edit-input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--hair);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  outline: none;
}
.edit-input--text { font-weight: 600; font-size: 15px; text-align: left; }
.edit-input:focus,
.edit-textarea:focus { border-color: var(--blue); }
.edit-textarea {
  width: 100%;
  min-height: 90px;
  resize: vertical;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--hair);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
  font-family: inherit;
}
.edit-ai {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 4px;
  line-height: 1.35;
}
.edit-actions { margin-top: 4px; }
.cat-delete {
  margin-top: 12px;
  width: 100%;
  padding: 11px;
  border-radius: 12px;
  background: rgba(229, 52, 43, 0.12);
  border: 1px solid rgba(229, 52, 43, 0.4);
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}
