/* Reusable pieces from the mockup: buttons, eyebrows, highlight, torn edge,
 * tags, fields, tables, overlays. Numbers from fig-spec; states (hover, focus,
 * active, disabled, error) are ours — the mockup does not draw them. */

/* ── buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  border: 0; border-radius: var(--radius-sm);
  background: transparent; color: inherit;
  font-family: var(--font-display); font-weight: 800; font-size: 15px; line-height: 18px;
  letter-spacing: 2px; text-decoration: none; cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; transform: none; }

.btn--lime { background: var(--color-lime); color: var(--color-text-dark); }
.btn--lime:hover { background: var(--color-lime-hover); }
.btn--lime:active { background: var(--color-lime-active); }

.btn--ghost { color: var(--color-text); font-weight: 700; box-shadow: inset 0 0 0 1px var(--color-border-3); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--color-lime); color: var(--color-lime); }

.btn--dark { background: var(--color-bg); color: var(--color-text); }
.btn--dark:hover { background: var(--color-surface-hover); }

.btn--surface { background: var(--color-surface); color: var(--color-text); font-weight: 700; }
.btn--surface:hover { background: var(--color-surface-hover); }

.btn--block { width: 100%; }
.btn--tall { padding: 0; height: 56px; }

/* ── eyebrow «✦ LABEL» ─────────────────────────────────────────────────── */
.eyebrow__muted { color: var(--color-muted-5); }

/* ── lime headline panel ──────────────────────────────────────────────── */
.hl-panel { display: inline-block; background: var(--color-lime); color: var(--color-text-dark); border-radius: var(--radius-sm); }

/* ── deco arrow «──── →» ──────────────────────────────────────────────── */
.deco-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--color-lime); font-family: var(--font-display); font-weight: 700; font-size: 14px; line-height: 17px; }
.deco-arrow i { display: block; width: 80px; height: 2px; background: currentColor; }

/* ── torn edge: a row of offset lime blocks over the section boundary ──── */
.torn { position: relative; width: 100%; overflow: hidden; }
.torn i { position: absolute; transform-origin: 0 0; }   /* geometry inline from includes/torn.php */

/* ── tilts drawn in the mockup (rotation about the top-left corner, like Figma) ── */
.tilt-panel { transform: rotate(-2deg); transform-origin: 0 0; }
.tilt-photo { transform: rotate(-1deg); transform-origin: 0 0; }

/* ── tags / pills ─────────────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; padding: 8px 12px;
  border-radius: var(--radius-sm); background: var(--color-lime); color: var(--color-text-dark);
  font-family: var(--font-display); font-weight: 800; font-size: 12px; line-height: 14.4px; letter-spacing: 2px;
}
.pill {
  display: inline-flex; align-items: center; padding: 2px 6px; border-radius: var(--radius-sm);
  background: var(--color-lime-tint); color: var(--color-lime-deep);
  font-family: var(--font-display); font-weight: 700; font-size: 10px; line-height: 12px; letter-spacing: 1px;
}

/* ── watermark text (modals, sections) ────────────────────────────────── */
.watermark {
  position: absolute; pointer-events: none; user-select: none;
  color: var(--color-lime); opacity: .06;
  font-family: var(--font-display); font-weight: 800; font-size: 220px; line-height: 264px; letter-spacing: -8px; white-space: nowrap;
}

/* ── fields (modal style: label row + dark input) ─────────────────────── */
.field { display: grid; gap: 6px; }
.field__label {
  display: flex; justify-content: space-between;
  color: var(--color-text); font-family: var(--font-display); font-weight: 700; font-size: 11px; line-height: 13.2px; letter-spacing: 2px;
}
.field__req { color: var(--color-lime); }
.field input:not(.visually-hidden), .field select, .field textarea {
  width: 100%; height: 52px; padding: 0 16px;
  border: 0; border-radius: var(--radius-sm);
  background: var(--color-surface); color: var(--color-text);
  font-family: var(--font-display); font-size: 15px; line-height: 18px;
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--color-muted-4); }
.field textarea { height: auto; min-height: 140px; padding-block: 16px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ccff00' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: inset 0 0 0 1px var(--color-lime); }
.field__error { color: var(--color-error-light); font-size: 12px; line-height: 16px; }
.field.has-error input, .field.has-error select, .field.has-error textarea,
.field [aria-invalid="true"] { box-shadow: inset 0 0 0 1px var(--color-error); }

.field--check { grid-template-columns: auto 1fr; align-items: start; gap: 12px; }
.field--check .field__label { display: inline; color: var(--color-muted); font-family: var(--font-body); font-weight: 400; font-size: 12px; line-height: 18px; letter-spacing: normal; text-transform: none; }
.check {
  appearance: none; width: 18px; height: 18px; margin: 1px 0 0; flex: none;
  border-radius: 2px; background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-border-3);
  cursor: pointer; display: grid; place-items: center;
  transition: background-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.check:checked { background: var(--color-lime); box-shadow: none; }
.check:checked::after { content: ""; width: 10px; height: 6px; border: 2px solid var(--color-text-dark); border-top: 0; border-right: 0; transform: translateY(-1px) rotate(-45deg); }
.check:focus-visible { box-shadow: var(--focus-ring); }

.form__error { color: var(--color-error-light); font-size: 13px; line-height: 18px; }
.form__success { color: var(--color-success-light); font-size: 13px; line-height: 18px; }
.form__note { display: flex; flex-direction: column; gap: 8px; padding: 16px; border-radius: var(--radius-md); background: var(--color-surface-3); color: var(--color-muted); font-size: 14px; line-height: 22px; }
.form__note strong { color: var(--color-text); }

/* ── toggle switch (cookie preferences) ───────────────────────────────── */
.switch { position: relative; width: 44px; height: 24px; flex: none; }
.switch input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.switch__track { position: absolute; inset: 0; border-radius: 12px; background: var(--color-border-3); transition: background-color var(--dur-fast) var(--ease); }
.switch__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--color-text); transition: transform var(--dur-base) var(--ease), background-color var(--dur-fast) var(--ease); }
.switch input:checked + .switch__track { background: var(--color-lime); }
.switch input:checked + .switch__track::after { transform: translateX(20px); background: var(--color-text-dark); }
.switch input:disabled + .switch__track { opacity: .6; cursor: not-allowed; }
.switch input:focus-visible + .switch__track { box-shadow: var(--focus-ring); }

/* ── overlays (modals) ────────────────────────────────────────────────── */
.overlay {
  position: fixed; inset: 0; z-index: var(--z-modal);
  display: flex; align-items: flex-start; justify-content: center;   /* centring via margin:auto on the panel: a dialog taller than the viewport scrolls instead of losing its top */
  padding: 16px; overflow: auto;
  background: var(--overlay);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
}
.overlay.is-open { opacity: 1; }
.overlay__panel {
  position: relative; overflow: hidden;
  width: min(100%, 560px); margin: auto;
  background: var(--color-bg); color: var(--color-text);
  border-radius: var(--radius-md);
  padding: 48px;
  transform: translateY(8px);
  transition: transform var(--dur-slow) var(--ease);
}
.overlay.is-open .overlay__panel { transform: none; }
.modal { display: flex; flex-direction: column; gap: 32px; }
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; }
.modal__titles { display: flex; flex-direction: column; gap: 8px; }
.modal__title { display: flex; flex-direction: column; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 72px; line-height: 64px; letter-spacing: -1.5px; }
.modal__lead { font-size: 16px; line-height: 26px; color: var(--color-muted); }
.modal__close {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 40px; height: 40px; padding: 0; border: 0; border-radius: var(--radius-sm);
  background: var(--color-bg); color: var(--color-text); cursor: pointer;
  font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 26px;
  transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.modal__close:hover { background: var(--color-surface); color: var(--color-lime); }
.modal__actions { display: flex; flex-direction: column; gap: 16px; }
.modal__switch { display: flex; justify-content: center; gap: 4px; font-size: 13px; line-height: 16px; color: var(--color-muted); }
.modal__switch button, .modal__switch a { border: 0; background: none; padding: 0; cursor: pointer; color: var(--color-lime); font-family: var(--font-display); font-weight: 800; font-size: 13px; line-height: 16px; letter-spacing: 2px; text-decoration: none; }
.modal__switch button:hover, .modal__switch a:hover { color: var(--color-lime-hover); }
.modal__rule { margin: 0; border: 0; height: 1px; background: var(--color-border); }

/* Icons inherit colour and take their size from CSS. */
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; }
.icon--missing { display: inline-block; width: 1em; height: 1em; outline: 1px dashed var(--color-error); }

/* ── toast ────────────────────────────────────────────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: var(--z-modal);
  transform: translate(-50%, 16px); opacity: 0;
  max-width: min(92vw, 480px); padding: 14px 20px; border-radius: var(--radius-sm);
  background: var(--color-lime); color: var(--color-text-dark);
  font-family: var(--font-display); font-weight: 700; font-size: 14px; line-height: 18px; letter-spacing: .04em;
  box-shadow: var(--shadow-card);
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.toast.is-in { opacity: 1; transform: translate(-50%, 0); }
.toast--error { background: var(--color-error); color: #fff; }

@media (max-width: 1199px) {
  .btn { padding: 12px 16px; font-size: 14px; line-height: 17px; letter-spacing: 1.5px; }
  .deco-arrow { font-size: 12px; line-height: 14px; }
  .deco-arrow i { width: 40px; height: 1px; }
  .overlay { padding: 0; align-items: end; }
  .overlay__panel { width: 100%; padding: 24px 16px; border-radius: var(--radius-md) var(--radius-md) 0 0; max-height: 100dvh; overflow: auto; }
  .modal { gap: 24px; }
  .modal__title { font-size: 40px; line-height: 42px; letter-spacing: -1px; gap: 4px; }
  .field__req { letter-spacing: 1px; }
  .modal__lead { font-family: var(--font-sans-3); font-size: 13px; line-height: 20px; }
}

/* ── eyebrow in a box («PRE-MATCH MARKETS», «RACING TIMETABLE») ──────── */
.eyebrow--box { color: var(--color-text-dark); }
.eyebrow--box .star { color: var(--color-text-dark); }
.eyebrow__box { display: inline-block; padding: 3px 8px; border-radius: var(--radius-sm); box-shadow: inset 0 0 0 1px currentColor; }
.eyebrow--ghost { color: var(--color-lime); }
.eyebrow--ghost .eyebrow__box { padding: 4px 10px; }

/* ── section head «eyebrow + 2-line title + hint» (home, sports, racing, help) ── */
.markets__head { display: flex; justify-content: space-between; align-items: flex-end; min-height: 151px; }
.markets__head-left { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.markets__title { display: flex; flex-direction: column; align-items: flex-start; font-family: var(--font-display); font-weight: 800; font-size: 64px; line-height: 56px; letter-spacing: -1px; }
.markets__bar { display: inline-block; margin-top: 8px; padding: 2px 6px; background: var(--color-text-dark); color: var(--color-lime); }   /* markets-lime-bar y 1079 = 1015+56+8 */
.markets__hint { width: 340px; text-align: right; font-family: var(--font-display); font-weight: 600; font-size: 13px; line-height: 16px; letter-spacing: .5px; }

/* ── odds board (home 10:88, sports 13:41) ────────────────────────────── */
.board { display: flex; flex-direction: column; border-radius: 3px; box-shadow: inset 0 0 0 1px var(--color-text-dark); overflow: hidden; }
.board__head { display: flex; align-items: center; gap: 16px; height: 37px; padding: 12px 20px; background: var(--color-text-dark); color: var(--color-lime); font-family: var(--font-display); font-weight: 700; font-size: 11px; line-height: 13.2px; letter-spacing: 1.5px; }
.board__col--comp { width: 130px; flex: none; }
.board__col--fixture { flex: 1; }
.board__col--odds { width: 310px; flex: none; text-align: right; letter-spacing: 0; }
.board__rows { display: flex; flex-direction: column; }
.fx { display: flex; align-items: center; gap: 16px; height: 88px; padding: 18px 20px; background: var(--color-cream); box-shadow: inset 0 -1px 0 var(--color-text-dark); color: var(--color-text-dark); transition: background-color var(--dur-fast) var(--ease); }
.fx:nth-child(even) { background: var(--color-cream-4); }
.fx__comp { display: flex; flex-direction: column; gap: 2px; width: 130px; flex: none; }
.fx__sport { font-family: var(--font-display); font-weight: 800; font-size: 13px; line-height: 16px; letter-spacing: 1px; }
.fx__time { font-family: var(--font-display); font-weight: 600; font-size: 12px; line-height: 14.4px; color: var(--color-muted); }
.fx__fixture { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; flex: 1; min-width: 0; }
.fx__name { font-family: var(--font-display); font-weight: 800; font-size: 20px; line-height: 24px; letter-spacing: -.3px; }
.fx__odds { display: flex; justify-content: flex-end; gap: 6px; width: 310px; flex: none; }
.odd {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  width: 96px; height: 52px; padding: 0; border: 0; border-radius: var(--radius-sm); cursor: pointer;
  background: var(--color-cream); color: var(--color-text-dark); box-shadow: inset 0 0 0 1px var(--color-text-dark);
  font-family: var(--font-display);
  transition: background-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.fx:nth-child(even) .odd { background: var(--color-cream-4); }
.odd__label { font-weight: 700; font-size: 9px; line-height: 11px; letter-spacing: 1px; color: var(--color-muted); }
.odd__val { font-weight: 800; font-size: 20px; line-height: 24px; }
.odd:hover { background: var(--color-lime-tint); }
.odd:active { transform: scale(.97); }
/* the selected state must beat the even-row tint (.fx:nth-child(even) .odd) — hence the doubled selector */
.odd[aria-pressed="true"], .fx:nth-child(even) .odd[aria-pressed="true"] { background: var(--color-lime); box-shadow: none; }
.odd[aria-pressed="true"] .odd__label { color: var(--color-text-dark); }
.odd--na { cursor: default; box-shadow: inset 0 0 0 1px var(--color-border-light); opacity: .6; }
.board__empty { padding: 32px 20px; text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--color-muted-3); }

/* ── bet slip (10:183 / 40:122) ───────────────────────────────────────── */
.slip { display: flex; flex-direction: column; gap: 20px; width: 400px; flex: none; padding: 28px; border-radius: 3px; background: var(--color-bg); box-shadow: inset 0 0 0 1px var(--color-lime); color: var(--color-text); font-family: var(--font-display); }
.slip__head { display: flex; justify-content: space-between; align-items: center; }
.slip__title { font-weight: 800; font-size: 22px; line-height: 26.4px; letter-spacing: 2px; }
.slip__count { padding: 4px 10px; border-radius: var(--radius-sm); background: var(--color-lime); color: var(--color-text-dark); font-weight: 800; font-size: 11px; line-height: 13.2px; letter-spacing: 1px; }
.slip__rule { margin: 0; border: 0; height: 0; box-shadow: 0 1px 0 var(--color-border); }   /* LINE nodes take no height in the frame */
.slip__list { display: flex; flex-direction: column; gap: 12px; }
.slip__card { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 16px; border-radius: var(--radius-sm); background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-border-3); }
.slip__card--empty { min-height: 134px; }
.slip__event { font-weight: 800; font-size: 16px; line-height: 19.2px; padding-right: 28px; }
.slip__market { font-weight: 500; font-size: 13px; line-height: 16px; color: var(--color-muted-3); }
.slip__odd { font-weight: 800; font-size: 36px; line-height: 43.2px; color: var(--color-lime); }
.slip__card--empty .slip__odd { color: var(--color-border-3); }
.slip__remove { position: absolute; right: 12px; top: 12px; width: 24px; height: 24px; padding: 0; border: 0; border-radius: var(--radius-sm); background: none; color: var(--color-muted-3); cursor: pointer; font-family: var(--font-display); font-weight: 800; font-size: 18px; line-height: 1; transition: color var(--dur-fast) var(--ease); }
.slip__remove:hover { color: var(--color-lime); }
.slip__stake { display: flex; flex-direction: column; gap: 8px; }
.slip__label { font-weight: 700; font-size: 12px; line-height: 14.4px; letter-spacing: 2px; color: var(--color-muted-3); }
.slip__input { display: flex; align-items: center; justify-content: space-between; height: 52px; padding: 0 16px; border-radius: var(--radius-sm); background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-border-3); transition: box-shadow var(--dur-fast) var(--ease); }
.slip__input:focus-within { box-shadow: inset 0 0 0 1px var(--color-lime); }
.slip__cur { font-weight: 700; font-size: 13px; line-height: 16px; color: var(--color-muted-3); }
.slip__amount { width: 140px; align-self: stretch; border: 0; background: none; color: var(--color-text); text-align: right; font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 26.4px; -moz-appearance: textfield; }
.slip__amount::-webkit-outer-spin-button, .slip__amount::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.slip__amount:focus-visible { outline: 2px solid var(--color-lime); outline-offset: 2px; }
.slip__quick { display: flex; gap: 8px; }
.slip__q { flex: 1; height: 36px; border: 0; border-radius: var(--radius-sm); background: var(--color-surface); color: var(--color-text); box-shadow: inset 0 0 0 1px var(--color-border-3); cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 14px; line-height: 17px; transition: box-shadow var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
.slip__q:hover { box-shadow: inset 0 0 0 1px var(--color-lime); color: var(--color-lime); }
.slip__totals { display: flex; flex-direction: column; gap: 10px; }
.slip__row { display: flex; justify-content: space-between; align-items: baseline; }
.slip__row dt { font-weight: 600; font-size: 13px; line-height: 16px; color: var(--color-muted-3); }
.slip__row dd { font-weight: 800; font-size: 16px; line-height: 19.2px; }
.slip__row--return dd { font-size: 28px; line-height: 34px; color: var(--color-lime); }
.slip__place { height: 56px; padding: 0; font-size: 17px; line-height: 20.4px; letter-spacing: 2px; }
.slip__msg { font-size: 13px; line-height: 18px; color: var(--color-lime); }
.slip__msg--error { color: var(--color-error-light); }
.slip__edge { display: block; height: 16px; }

/* ── photo card with label (collage, racing photo) ────────────────────── */
.pcard { position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--color-lime); }
.pcard picture, .pcard img { width: 100%; height: 100%; object-fit: cover; }
.pcard picture { position: absolute; inset: 0; }
.pcard--dim::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .25); pointer-events: none; }
.pcard--dim-20::after { background: rgba(0, 0, 0, .2); }
.pcard__label { position: absolute; left: 16px; top: 16px; padding: 6px 10px; border-radius: var(--radius-sm); background: var(--color-lime); color: var(--color-text-dark); font-family: var(--font-display); font-weight: 800; font-size: 10px; line-height: 12px; letter-spacing: 2px; white-space: nowrap; }
.pcard__label--ghost { background: transparent; color: var(--color-lime); box-shadow: inset 0 0 0 1px var(--color-lime); }

@media (max-width: 1199px) {
  .markets__head { flex-direction: column; align-items: stretch; min-height: 0; }
  .markets__head-left { gap: 6px; }
  .markets__title { font-size: 36px; line-height: 32px; letter-spacing: 0; color: #000; }
  .markets__hint { width: auto; margin-top: 6px; text-align: left; font-size: 12px; line-height: 14px; color: #000; }
  .board { box-shadow: none; background: none; border-radius: 0; overflow: visible; }
  .board__rows { gap: 12px; }
  .fx { display: grid; grid-template-columns: 1fr; grid-template-areas: "comp" "fixture" "odds"; gap: 12px; height: auto; padding: 12px; border-radius: 3px; box-shadow: inset 0 0 0 1px #000; background: var(--color-cream); color: #000; }
  .fx:nth-child(even), .fx:nth-child(even) .odd { background: var(--color-cream); }
  .fx { box-shadow: inset 0 0 0 1px #000; }
  .fx__comp { grid-area: comp; flex-direction: row; justify-content: space-between; align-items: center; width: auto; }
  .fx__sport { font-size: 12px; line-height: 14.4px; }
  .fx__time { font-size: 12px; line-height: 14.4px; color: var(--color-muted-3-light); }
  .fx__fixture { grid-area: fixture; }
  .fx__name { font-size: 16px; line-height: 20px; letter-spacing: 0; }
  .fx__odds { grid-area: odds; width: auto; gap: 4px; justify-content: stretch; }
  .odd { flex: 1; width: auto; height: 44px; gap: 2px; color: #000; box-shadow: inset 0 0 0 1px #000; }
  .odd__label { font-size: 8px; line-height: 10px; letter-spacing: .5px; color: #000; }
  .odd__val { font-size: 16px; line-height: 19.2px; }

  .slip { width: auto; gap: 12px; padding: 16px; box-shadow: inset 0 0 0 1px var(--color-lime); }
  .slip__title { font-size: 18px; line-height: 22px; letter-spacing: 1px; }
  .slip__count { padding: 2px 6px; font-size: 9px; line-height: 11px; letter-spacing: .5px; }
  .slip__card { gap: 8px; padding: 12px; }
  .slip__card--empty { min-height: 99px; }
  .slip__event { font-size: 14px; line-height: 17px; }
  .slip__market { font-weight: 400; font-size: 11px; line-height: 13.2px; }
  .slip__odd { font-size: 24px; line-height: 29px; }
  .slip__stake { gap: 6px; }
  .slip__label { font-size: 11px; line-height: 13.2px; letter-spacing: 1px; }
  .slip__input { height: 44px; padding: 0 12px; }
  .slip__place { color: #000; }
  .slip__cur { font-size: 11px; line-height: 13.2px; }
  .slip__amount { font-size: 18px; line-height: 22px; }
  .slip__quick { gap: 4px; }
  .slip__q { height: 30px; font-size: 12px; line-height: 14.4px; }
  .slip__totals { gap: 6px; }
  .slip__row dt { font-size: 11px; line-height: 13.2px; }
  .slip__row dd { font-size: 13px; line-height: 16px; }
  .slip__row--return dd { font-size: 20px; line-height: 24px; }
  .slip__place { height: 44px; font-size: 14px; line-height: 17px; letter-spacing: 1px; }
  .pcard__label { left: 12px; top: 12px; padding: 4px 8px; font-size: 9px; line-height: 11px; letter-spacing: 1px; color: #000; }
  .eyebrow--box { gap: 6px; }
  .eyebrow--box .star { font-size: 8px; line-height: 10px; font-weight: 800; color: #000; letter-spacing: 0; }
  .eyebrow--box .eyebrow__box { padding: 2px 6px; font-size: 9px; line-height: 11px; letter-spacing: 1px; color: #000; }
  .eyebrow--ghost .eyebrow__box { padding: 2px 8px; font-size: 10px; line-height: 12px; letter-spacing: 1px; color: var(--color-lime); }
}
