/* Nutty — public site. Design tokens match the handoff exactly (see
   /Users/miguelperea/Downloads/design_handoff_nutty_live/README.md) —
   colors, spacing, radii and type scale are final, not placeholders. */

:root {
  --eggshell: #F3EDE0;
  --card: #FFFFFF;
  --cream: #F7F2E7;
  --cream-deep: #FBF7EE;
  --slip-paper: #FDFAF3;
  --border: #E5DBC6;
  --border-soft: #EAE0CB;
  --border-soft-2: #EFE7D6;
  --ink: #241F19;
  --ink-2: #3A342C;
  --ink-3: #5E564A;
  --ink-4: #7C7365;
  --ink-5: #9A9083;
  --ink-6: #A79E92;
  --green: #5BA85F;
  --green-hover: #6BB96F;
  --green-lip: #478A4A;
  --green-deep: #20452A;
  --green-mid: #2A5735;
  --green-light: #8FD694;
  --mint: #E4F1E2;
  --mint-border: #CADFC7;
  --mint-ink-1: #3D7741;
  --mint-ink-2: #2E4A30;
  --mint-ink-3: #1F3A21;
  --rust: #B35F2E;
  --rust-dark: #8A4520;
  --rust-pale: #F6E3D6;
  --card-orange: #E58A5F;
  --card-yellow: #E8B95C;
  --shell-1: #2B2A27;
  --shell-2: #3A3835;
  --shell-3: #242320;

  --font-family: 'Nunito', system-ui, sans-serif;
  --font-family-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
  background: var(--eggshell);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--rust);
  text-decoration: none;
  font-weight: 700;
}
a:hover {
  color: var(--rust-dark);
}

button {
  font-family: inherit;
}

.hidden {
  display: none !important;
}

::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #E2D8C4;
  border-radius: 99px;
  border: 3px solid var(--card);
}
::-webkit-scrollbar-track {
  background: transparent;
}

@keyframes blip {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@keyframes caret-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(91, 168, 95, 0.55), 0 5px 10px rgba(36, 31, 25, 0.1); }
  50% { box-shadow: 0 0 0 7px rgba(91, 168, 95, 0.2), 0 5px 10px rgba(36, 31, 25, 0.1); }
}
@keyframes sweep {
  0% { transform: translateY(0); }
  100% { transform: translateY(190px); }
}
@media (prefers-reduced-motion: reduce) {
  .thinking-avatar,
  .live-dot,
  .scan-line {
    animation: none !important;
  }
}

/* ---------------------------------------------------------------------
   Stale banner
--------------------------------------------------------------------- */
.stale-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--card-yellow);
  color: #1a1500;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 8px;
}

/* ---------------------------------------------------------------------
   Page shell
--------------------------------------------------------------------- */
.page {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--eggshell);
}

/* ---------------------------------------------------------------------
   Header
--------------------------------------------------------------------- */
.topbar {
  flex: none;
  padding: 12px 22px 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-tile {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-tile img {
  width: 36px;
  height: 36px;
  image-rendering: pixelated;
  display: block;
}

.wordmark {
  flex: none;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.wordmark-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.wordmark-round {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-4);
}

.pill {
  box-sizing: border-box;
  height: 44px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 0 var(--border);
  display: flex;
  align-items: center;
  gap: 9px;
}

.pill-label {
  flex: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ink-4);
}

.ca-pill {
  flex: 0 1 auto;
  min-width: 0;
  padding: 0 6px 0 13px;
}
.ca-text {
  flex: 1;
  min-width: 0;
  font-family: var(--font-family-mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ca-copy {
  flex: none;
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-3);
  cursor: pointer;
  white-space: nowrap;
}
.ca-copy:hover {
  background: var(--border-soft);
}

.topbar-spacer {
  flex: 1;
  min-width: 0;
}

.balance-pill {
  flex: none;
  padding: 0 15px;
}
.balance-value {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.card-pill {
  flex: none;
  padding: 0 14px;
}
.card-dots {
  display: flex;
}
.card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 99px;
}
.card-dots span:first-child {
  background: var(--card-orange);
}
.card-dots span:last-child {
  background: var(--card-yellow);
  margin-left: -5px;
}
.card-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-3);
}

.buy-pill {
  flex: none;
  background: var(--green);
  color: var(--card);
  box-shadow: 0 3px 0 var(--green-lip);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  border: none;
}
.buy-pill:hover {
  background: var(--green-hover);
}

/* ---------------------------------------------------------------------
   Body layout
--------------------------------------------------------------------- */
.body {
  flex: 1;
  min-height: 0;
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding: 0 22px 18px;
}

@media (max-width: 900px) {
  /* Stacked layout: stream on top, request + stash below. Flexbox height
     distribution (flex:1 fighting over a shared column) is what the
     desktop layout relies on, but that collapses the stream card to
     near-zero here once the column starts scrolling instead of being
     viewport-bound — found by actually loading this at phone width, not
     assumed. Simplest fix: stop competing for shared height entirely.
     Give the stream card its own fixed-ish height via aspect-ratio, let
     the side column size to its own content, and let the whole page
     scroll normally. */
  html, body, .page, .body {
    height: auto;
    overflow: visible;
  }
  .body {
    flex-direction: column;
  }
  .stream-card {
    flex: none;
    aspect-ratio: 4 / 5;
    max-height: 640px;
  }
  .side-col {
    flex: none;
    width: 100%;
  }
  .stash-wall {
    flex: none;
    min-height: 320px;
  }
  .stash-grid {
    max-height: 60vh;
  }
}

/* ---------------------------------------------------------------------
   Stream card (left)
--------------------------------------------------------------------- */
.stream-card {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 2px 0 var(--border);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(30px, auto) auto minmax(150px, 1fr);
  overflow: hidden;
}

.step-bar {
  min-width: 0;
  background: var(--green-deep);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
}
.step-bar-label {
  flex: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--green-light);
  padding-right: 3px;
}
.step-pills {
  display: flex;
  align-items: center;
  gap: 5px;
}
.step-pill {
  flex: none;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 99px;
  padding: 4px 9px;
  background: var(--green-mid);
}
.step-pill.done {
  background: var(--green-mid);
}
.step-pill.done .step-pill-label {
  color: var(--green-light);
}
.step-pill.pending .step-pill-label {
  color: #6E9975;
}
.step-pill.current {
  background: var(--green-light);
}
.step-pill.current .step-pill-label {
  color: var(--mint-ink-3);
}
.step-pill-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.step-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--green-deep);
  animation: blip 1s infinite;
}

.thinking-bar {
  min-width: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.thinking-avatar {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: bob 2.4s ease-in-out infinite;
}
.thinking-avatar img {
  width: 32px;
  height: 32px;
  image-rendering: pixelated;
  display: block;
}
.thinking-bubble {
  flex: 1 1 0;
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 6px 11px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.thinking-label {
  flex: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ink-4);
}
.thinking-text {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-2);
}
.caret {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--green);
  margin-left: 2px;
  vertical-align: -2px;
  animation: caret-blink 1s steps(1) infinite;
}
.drawn-slip-label {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-4);
  white-space: nowrap;
}

.browser-window {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin: 12px 16px 10px;
  background: var(--shell-1);
  border-radius: 16px;
  overflow: hidden;
}
.browser-chrome {
  flex: none;
  background: var(--shell-2);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.browser-dots {
  flex: none;
  display: flex;
  gap: 5px;
}
.browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: #5E5B56;
}
.browser-url-field {
  flex: 1;
  min-width: 0;
  background: var(--shell-3);
  border-radius: 99px;
  padding: 5px 11px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.browser-url-field .lock {
  flex: none;
  font-size: 10px;
  color: var(--green-light);
}
.browser-url {
  flex: 1;
  min-width: 0;
  font-family: var(--font-family-mono);
  font-size: 11px;
  color: #C9C4BA;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-badge {
  flex: none;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  border-radius: 99px;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--card);
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--card);
  animation: blip 1s infinite;
}

.browser-viewport {
  flex: 1;
  min-height: 0;
  position: relative;
  background: var(--card);
  overflow: hidden;
}
.screen-embed {
  position: absolute;
  inset: 0;
}
.screen-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.screen-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-4);
  background: var(--cream-deep);
}

/* ---------------------------------------------------------------------
   Item detail modal (over the stream card)
--------------------------------------------------------------------- */
.item-modal {
  position: absolute;
  inset: 0;
  background: rgba(36, 31, 25, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 20;
}
.item-modal-panel {
  width: 100%;
  max-width: 700px;
  max-height: 100%;
  overflow: auto;
  background: var(--card);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(36, 31, 25, 0.28);
  padding: 22px;
}
.item-modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.item-modal-photo-col {
  flex: 1 1 190px;
  min-width: 0;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.item-modal-photo {
  height: 190px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 68px;
  overflow: hidden;
}
.item-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-modal-price {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.item-modal-main {
  flex: 1 1 300px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.item-modal-title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.item-modal-title {
  flex: 1;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}
.round-x {
  cursor: pointer;
  flex: none;
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: 99px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-3);
}
.round-x:hover {
  background: var(--border-soft);
}
.item-modal-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.item-modal-meta-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ink-4);
}
.item-modal-request {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink-2);
  text-wrap: pretty;
}
.item-modal-agent {
  background: var(--mint);
  border: 1px solid var(--mint-border);
  border-radius: 16px;
  padding: 13px 15px;
  display: flex;
  gap: 11px;
}
.item-modal-agent-avatar {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.item-modal-agent-avatar img {
  width: 28px;
  height: 28px;
  image-rendering: pixelated;
}
.item-modal-agent-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--mint-ink-1);
}
.item-modal-agent-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--mint-ink-2);
  text-wrap: pretty;
}
.item-modal-footer {
  border-top: 1px solid var(--border-soft);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-4);
}
.item-modal-frames {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.item-modal-frame img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
}

/* ---------------------------------------------------------------------
   Side column (right)
--------------------------------------------------------------------- */
.side-col {
  flex: none;
  width: 298px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

@media (max-width: 900px) {
  .side-col {
    width: 100%;
  }
}

.request-card {
  flex: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 2px 0 var(--border);
  padding: 13px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.request-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.request-card-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.next-slip-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink-4);
}
#request-form {
  display: contents;
}
.request-input {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: 13px;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  font-family: inherit;
}
.request-input::placeholder {
  color: #8B8275;
}
.request-submit {
  background: var(--green);
  color: var(--card);
  border: none;
  border-radius: 13px;
  box-shadow: 0 3px 0 var(--green-lip);
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.request-submit:hover {
  background: var(--green-hover);
}
.request-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.request-status {
  font-size: 12px;
  color: var(--ink-4);
  min-height: 14px;
  margin: 0;
}
.request-status.error {
  color: var(--rust-dark);
}
.request-status.success {
  color: var(--mint-ink-1);
}

.hat-bar {
  cursor: pointer;
  background: var(--mint);
  border: 1px solid var(--mint-border);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  text-align: left;
}
.hat-bar:hover {
  background: #D8EBD6;
}
.hat-bar-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hat-entries {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--mint-ink-3);
  font-variant-numeric: tabular-nums;
}
.hat-countdown {
  font-size: 12px;
  font-weight: 800;
  color: var(--mint-ink-1);
}
.hat-caret-pill {
  flex: none;
  font-size: 12px;
  font-weight: 800;
  color: var(--card);
  background: var(--green);
  border-radius: 99px;
  padding: 6px 11px;
  white-space: nowrap;
}

.stash-wall {
  flex: 1;
  min-height: 0;
  position: relative;
  background: var(--cream-deep);
  border: 1px solid var(--border-soft-2);
  border-radius: 20px;
  box-shadow: 0 2px 0 var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.stash-header {
  flex: none;
  padding: 12px 14px 9px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.stash-title {
  flex: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.chip {
  flex: none;
  font-size: 11px;
  font-weight: 800;
  border-radius: 99px;
  padding: 3px 8px;
}
.chip-rust {
  color: var(--rust-dark);
  background: var(--rust-pale);
}
.chip-neutral {
  color: var(--ink-3);
  background: var(--eggshell);
}

.stash-grid {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 14px 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}
.stash-empty {
  padding: 0 14px 14px;
  color: var(--ink-4);
  font-size: 13px;
}
.stash-item {
  min-width: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  font-family: inherit;
  padding: 0;
  text-align: center;
  transition: transform 0.15s;
}
.stash-item:hover {
  transform: translateY(-3px);
}
.stash-item-tile {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 4px 9px rgba(36, 31, 25, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
}
.stash-item-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stash-item-tile.glow {
  animation: glow 2s ease-in-out infinite;
}
.stash-item-price {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.stash-item-by {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.hat-sheet {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: var(--card);
  display: flex;
  flex-direction: column;
}
.hat-sheet-header {
  flex: none;
  border-bottom: 1px solid var(--border-soft-2);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.hat-sheet-heading {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hat-sheet-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hat-sheet-sub {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-4);
}
.hat-sheet-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.slip-row {
  background: var(--slip-paper);
  border: 1px solid var(--border-soft-2);
  border-radius: 13px;
  padding: 9px 11px;
  display: flex;
  gap: 9px;
}
.slip-row.drawn {
  background: var(--mint);
  border-color: var(--mint-border);
}
.slip-num {
  flex: none;
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-6);
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}
.slip-row.drawn .slip-num {
  color: var(--mint-ink-1);
}
.slip-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.slip-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink-2);
  text-wrap: pretty;
}
.slip-meta {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}
.slip-age {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-5);
}
.slip-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 99px;
  padding: 2px 7px;
  white-space: nowrap;
  color: var(--card);
  background: var(--green);
}
.slip-tag.rejected {
  color: var(--rust-dark);
  background: var(--rust-pale);
}
