/* South Lanes — "Pins & Pints" Menu Board design system.
   Tokens, type, and component styles translated 1:1 from the approved design
   (design_handoff_menu_board/LaneOrder.dc.html). Reference sizes are px at a
   340px-wide design; kept 1:1 on mobile. */

:root {
  /* surfaces */
  --bg: #14120e;
  --glow: radial-gradient(120% 70% at 50% 0%, #241f15 0%, #14120e 60%);
  --surface: #211d16;      /* cards / rows */
  --sheet: #1b1811;        /* item sheet */
  --bar: #161310;          /* footer / cart bar */
  --chip: #221e16;         /* secondary button / chip */
  --chip-hover: #241f16;
  --tile: #2a2519;         /* dark chip / tile / small stepper */
  --line: #3b3427;         /* borders */
  --line-hover: #5a5140;
  --hair: #2a2519;         /* hairline dividers */
  --backdrop: rgba(6, 5, 3, 0.68);
  --backdrop-strong: rgba(6, 5, 3, 0.82);
  /* brand yellow */
  --yellow: #ffc400;
  --yellow-shadow: #c98a00; /* hard pressed-look shadow / kickers */
  --yellow-light: #ffd84a;
  --on-yellow-muted: #7a5600;
  /* text */
  --text: #f6f1e7;
  --text-2: #c9c0ad;
  --muted: #8e8674;
  --faint: #6e6553;
  --red: #e5402f; /* logo pin stripes only */
  /* geometry */
  --maxw: 440px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Fredoka', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
h1, h2, h3 { margin: 0; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; }

/* ---- App shell -------------------------------------------------------- */
.app {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--glow);
}

/* ---- Header ----------------------------------------------------------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 16;
  flex: 0 0 auto;
  background: var(--glow);
}
.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: max(17px, env(safe-area-inset-top, 0)) 15px 11px;
}
.brand { display: flex; align-items: center; gap: 9px; min-width: 0; }
.brand__logo {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--tile);
  display: grid; place-items: center; flex: 0 0 auto;
}
.brand__name { font-weight: 700; font-size: 15px; color: var(--text); line-height: 1.05; white-space: nowrap; }
.brand__kicker { font-size: 9px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }
.hdr__actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }

.carticon {
  position: relative;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--chip); border: 1px solid var(--line);
  display: grid; place-items: center;
}
.carticon__badge {
  position: absolute; top: -6px; right: -6px;
  min-width: 17px; height: 17px; border-radius: 999px;
  background: var(--yellow); color: var(--bg);
  font-family: 'Anton'; font-size: 11px; line-height: 17px;
  padding: 0 4px; box-shadow: 0 2px 0 var(--yellow-shadow);
}
.lane-badge {
  text-align: center; background: var(--yellow);
  border: none; border-radius: 12px; padding: 5px 13px;
  box-shadow: 0 3px 0 var(--yellow-shadow);
}
.lane-badge__label { font: 700 8px/1 'Fredoka'; letter-spacing: 0.22em; color: var(--on-yellow-muted); }
.lane-badge__value { font-family: 'Anton'; font-size: 24px; line-height: 0.92; color: var(--bg); }
.hdr__divider { height: 1px; background: var(--hair); margin: 0 15px; }

/* ---- Body ------------------------------------------------------------- */
.body {
  flex: 1; min-height: 0; overflow-y: auto;
  padding: 13px 15px 16px;
}
.loading { text-align: center; color: var(--muted); padding: 60px 20px; }
.loading--error { color: var(--red); }
.loading .btn { margin-top: 14px; }

/* ---- Feature card ----------------------------------------------------- */
.feature {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2a2519, #211d16);
  border: 1px solid var(--yellow-shadow); border-radius: 16px;
  padding: 14px; margin-bottom: 19px; cursor: pointer;
  width: 100%; text-align: left; display: block; color: inherit;
}
.feature__watermark { position: absolute; top: -16px; right: 4px; font-size: 76px; opacity: 0.08; }
.feature__kicker { font: 700 10px 'Fredoka'; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow-shadow); }
.feature__title { font-family: 'Anton'; font-size: 23px; color: var(--yellow); text-transform: uppercase; line-height: 1; margin: 3px 0 5px; }
.feature__tag { font-size: 12px; color: var(--text-2); max-width: 78%; line-height: 1.35; }
.feature__row { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.feature__price { font-family: 'Anton'; font-size: 20px; color: var(--text); }
.feature__cta { font: 700 12px 'Fredoka'; color: var(--bg); background: var(--yellow); border-radius: 10px; padding: 8px 14px; box-shadow: 0 3px 0 var(--yellow-shadow); }

/* ---- Closed / ordering-hours banner ---------------------------------- */
.closedbar { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--yellow-shadow); border-radius: 14px; padding: 12px 14px; margin-bottom: 15px; }
.closedbar__icon { font-size: 24px; flex: 0 0 auto; }
.closedbar__title { font: 700 14px 'Fredoka'; color: var(--yellow); }
.closedbar__msg { font-size: 12px; color: var(--text-2); margin-top: 2px; }

/* ---- Category control ------------------------------------------------- */
.catctl { position: relative; z-index: 15; margin-bottom: 17px; }
.catctl__row { display: flex; align-items: stretch; gap: 7px; }
.catctl__chevron {
  flex: 0 0 auto; width: 34px; border-radius: 12px;
  background: var(--chip); border: 1px solid var(--line);
  color: var(--yellow); font: 700 18px 'Fredoka'; line-height: 1;
}
.catctl__selector {
  flex: 1; min-width: 0; display: flex; align-items: center; gap: 11px;
  background: var(--surface); border: 1px solid var(--yellow-shadow); border-radius: 14px;
  padding: 12px 14px; text-align: left; touch-action: pan-y; user-select: none;
}
.catctl__label { flex: 1; min-width: 0; }
.catctl__kicker { display: block; font: 700 9px 'Fredoka'; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow-shadow); }
.catctl__current { display: block; font: 700 17px 'Fredoka'; color: var(--text); line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.catctl__caret {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px;
  background: var(--yellow); color: var(--bg); display: grid; place-items: center;
  font-size: 14px; font-weight: 700; box-shadow: 0 2px 0 var(--yellow-shadow);
}
.dropdown {
  position: absolute; top: calc(100% + 7px); left: 0; right: 0;
  display: flex; flex-direction: column; gap: 2px;
  background: var(--sheet); border: 1px solid var(--line); border-radius: 14px;
  padding: 6px; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  animation: slPop 0.18s ease both; z-index: 5;
}
.dropdown__opt {
  width: 100%; display: flex; align-items: center; gap: 10px;
  background: transparent; border: none; border-radius: 10px; padding: 10px 12px; text-align: left;
}
.dropdown__opt:hover { background: var(--chip-hover); }
.dropdown__opt-name { flex: 1; font: 600 14px 'Fredoka'; color: var(--text); }
.dropdown__opt-count { font: 600 11px 'Fredoka'; color: var(--muted); }
.dropdown__opt--on { background: var(--yellow); }
.dropdown__opt--on:hover { background: var(--yellow); }
.dropdown__opt--on .dropdown__opt-name { font-weight: 700; color: var(--bg); }
.dropdown__opt--on .dropdown__opt-count { color: var(--on-yellow-muted); }

/* ---- Menu sections ---------------------------------------------------- */
.section__title { font-family: 'Anton'; font-size: 20px; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.03em; margin: 0 0 5px; }
.section__rule { height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 11px); margin-bottom: 8px; }
.section__items { display: flex; flex-direction: column; margin-bottom: 18px; }

.row { display: flex; align-items: center; gap: 10px; border-radius: 9px; padding: 7px 5px; }
.row:hover { background: var(--surface); }
.thumb {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 11px; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg);
  display: grid; place-items: center; cursor: zoom-in;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb--ph { font-size: 22px; color: var(--faint); cursor: default; }
.row__body { flex: 1; min-width: 0; }
.row__line { display: flex; align-items: baseline; gap: 6px; }
.row__name { font-weight: 700; font-size: 14px; color: var(--text); }
.row__leader { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-3px); }
.row__price { font-family: 'Anton'; font-size: 16px; color: var(--yellow); white-space: nowrap; }
.row__add {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px;
  background: var(--tile); color: var(--yellow); border: 1px solid var(--line);
  font: 700 15px 'Fredoka'; line-height: 1; margin-left: 5px;
}
.row__desc { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ---- Sticky cart bar -------------------------------------------------- */
.cartbar {
  flex: 0 0 auto; position: sticky; bottom: 0; z-index: 16;
  padding: 11px 13px max(11px, env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--hair); background: var(--bar);
}
.cartbar__empty { text-align: center; font-size: 12px; color: var(--muted); padding: 2px; }
.cartbar__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--yellow); color: var(--bg); border: none; border-radius: 13px;
  padding: 13px 15px; font: 700 15px 'Fredoka'; box-shadow: 0 3px 0 var(--yellow-shadow);
}
.cartbar__left { display: flex; align-items: center; gap: 9px; }
.cartbar__count { background: var(--bg); color: var(--yellow); font-family: 'Anton'; font-size: 14px; border-radius: 7px; padding: 2px 9px; }
.cartbar__total { font-family: 'Anton'; font-size: 18px; }

/* ---- Overlays (shared) ------------------------------------------------ */
.overlay { position: fixed; inset: 0; z-index: 20; display: flex; flex-direction: column; justify-content: flex-end; }
.overlay__panel-wrap { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.backdrop { position: absolute; inset: 0; background: var(--backdrop); animation: slFade 0.2s ease both; }
.sheet {
  position: relative; background: var(--sheet); border-top: 1px solid var(--line);
  border-radius: 24px 24px 0 0; box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
  animation: slUp 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.grabber { width: 40px; height: 4px; border-radius: 4px; background: var(--line); margin: 0 auto 14px; }
.sheet__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 30px; height: 30px; border-radius: 9px;
  background: rgba(20, 18, 14, 0.85); border: 1px solid var(--line);
  color: var(--text); font-size: 15px; line-height: 1;
}

/* ---- Item sheet ------------------------------------------------------- */
.itemsheet { padding: 16px 16px 18px; max-height: 90%; overflow-y: auto; }
.itemsheet__hero { display: block; width: 100%; height: 172px; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); margin-bottom: 12px; }
.itemsheet__head-img { margin-bottom: 4px; }
.itemsheet__head-noimg { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.itemsheet__tile {
  flex: 0 0 auto; width: 58px; height: 58px; border-radius: 14px;
  background: radial-gradient(circle at 40% 30%, #2a2519, #14120e); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 26px; color: var(--faint);
}
.itemsheet__name { font-family: 'Anton'; font-size: 23px; color: var(--text); text-transform: uppercase; line-height: 1; }
.itemsheet__tag { font-size: 12px; color: var(--muted); margin-top: 3px; }
.modgroup { margin-top: 15px; }
.modgroup__label { font: 700 11px 'Fredoka'; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow-shadow); margin-bottom: 8px; }
.modgroup__hint { color: var(--muted); font-weight: 600; letter-spacing: 0.06em; }
.modgroup__opts { display: flex; flex-wrap: wrap; gap: 8px; }
.optchip {
  font: 600 13px 'Fredoka'; color: var(--text);
  background: var(--chip); border: 1px solid var(--line); border-radius: 11px; padding: 9px 14px;
}
.optchip__price { color: var(--muted); font-weight: 700; margin-left: 4px; }
.optchip--on { font-weight: 700; color: var(--bg); background: var(--yellow); border-color: var(--yellow); box-shadow: 0 2px 0 var(--yellow-shadow); }
.optchip--on .optchip__price { color: var(--on-yellow-muted); }
/* multi-select toggle: leading +/✓ badge */
.optchip--multi { display: inline-flex; align-items: center; gap: 7px; }
.optchip__check { display: inline-grid; place-items: center; width: 16px; height: 16px; border-radius: 5px; background: var(--tile); color: var(--muted); font-size: 11px; font-weight: 800; line-height: 1; }
.optchip--on .optchip__check { background: var(--bg); color: var(--yellow); }
/* single-select dropdown */
.modselect-wrap { position: relative; }
.modselect-wrap::after { content: '▾'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--yellow); font-size: 12px; pointer-events: none; }
.modselect { width: 100%; appearance: none; -webkit-appearance: none; background: var(--chip); color: var(--text); border: 1px solid var(--line); border-radius: 11px; padding: 12px 40px 12px 14px; font: 600 14px 'Fredoka'; cursor: pointer; }
.modselect:focus { outline: none; border-color: var(--yellow); }
.itemsheet__foot { display: flex; align-items: center; gap: 12px; margin-top: 19px; }
.qtystep { display: flex; align-items: center; gap: 2px; background: var(--chip); border: 1px solid var(--line); border-radius: 12px; padding: 4px; }
.qtystep__btn { width: 34px; height: 34px; border-radius: 9px; background: var(--tile); border: none; color: var(--text); font: 700 20px 'Fredoka'; line-height: 1; }
.qtystep__n { min-width: 30px; text-align: center; font-family: 'Anton'; font-size: 20px; color: var(--text); }
.addbtn { flex: 1; background: var(--yellow); color: var(--bg); border: none; border-radius: 12px; padding: 14px; font: 700 15px 'Fredoka'; box-shadow: 0 3px 0 var(--yellow-shadow); }
.addbtn:disabled { opacity: 0.5; box-shadow: none; cursor: not-allowed; }
.row__add:disabled, .sugcard__add:disabled { opacity: 0.4; box-shadow: none; cursor: not-allowed; }

/* ---- Cart drawer ------------------------------------------------------ */
.drawer { display: flex; flex-direction: column; max-height: 88%; background: var(--bg); }
.drawer__grab { flex: 0 0 auto; margin: 10px auto 0; }
.drawer__head { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 15px 12px; border-bottom: 1px solid var(--hair); }
.drawer__title { font-family: 'Anton'; font-size: 23px; color: var(--yellow); text-transform: uppercase; line-height: 1; }
.drawer__sub { font-size: 11px; color: var(--muted); margin-top: 3px; }
.drawer__close { width: 32px; height: 32px; border-radius: 10px; background: var(--chip); border: 1px solid var(--line); color: var(--text-2); font-size: 15px; flex: 0 0 auto; }
.drawer__body { flex: 1; min-height: 0; overflow-y: auto; padding: 13px 15px; }
.drawer__lines { display: flex; flex-direction: column; gap: 9px; }

.cartline { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: 13px; padding: 10px; }
.cartline__tile { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; overflow: hidden; background: var(--bg); border: 1px solid var(--line); display: grid; place-items: center; font-size: 16px; color: var(--faint); }
.cartline__tile img { width: 100%; height: 100%; object-fit: cover; }
.cartline__body { flex: 1; min-width: 0; }
.cartline__name { font-weight: 700; font-size: 13px; color: var(--text); line-height: 1.15; }
.cartline__mods { font-size: 11px; color: var(--muted); }
.cartline__right { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; }
.ministep { display: flex; align-items: center; gap: 1px; background: var(--bar); border: 1px solid var(--line); border-radius: 9px; padding: 2px; }
.ministep__btn { width: 26px; height: 26px; border-radius: 7px; background: var(--tile); border: none; color: var(--text); font: 700 16px 'Fredoka'; line-height: 1; }
.ministep__n { min-width: 20px; text-align: center; font-weight: 700; font-size: 13px; color: var(--text); }
.cartline__total { font-family: 'Anton'; font-size: 15px; color: var(--yellow); min-width: 46px; text-align: right; }

.cart-empty { text-align: center; padding: 50px 20px; color: var(--muted); }
.cart-empty__pin { font-size: 44px; opacity: 0.5; margin-bottom: 10px; }
.cart-empty__title { font-weight: 700; color: var(--text-2); font-size: 15px; }
.cart-empty__sub { font-size: 12px; margin-top: 4px; }

.suggest { margin-top: 18px; }
.suggest__head { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.suggest__kicker { font: 700 11px 'Fredoka'; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow-shadow); }
.suggest__fade-rule { flex: 1; height: 2px; background: linear-gradient(90deg, var(--line), transparent); border-radius: 2px; }
.suggest__wrap { position: relative; }
.suggest__row { display: flex; gap: 9px; overflow-x: auto; cursor: grab; scrollbar-width: none; user-select: none; touch-action: pan-x; }
.suggest__row::-webkit-scrollbar { display: none; }
.suggest__edge { position: absolute; top: 0; bottom: 0; right: 0; width: 26px; background: linear-gradient(270deg, var(--bg), transparent); pointer-events: none; }
.sugcard { flex: 0 0 auto; width: 108px; background: var(--surface); border: 1px solid var(--line); border-radius: 13px; padding: 9px; }
.sugcard__tile { height: 44px; border-radius: 9px; overflow: hidden; background: radial-gradient(circle at 40% 30%, #2a2519, #14120e); display: grid; place-items: center; font-size: 20px; color: var(--faint); margin-bottom: 7px; }
.sugcard__tile img { width: 100%; height: 100%; object-fit: cover; }
.sugcard__name { font-weight: 700; font-size: 11px; color: var(--text); line-height: 1.2; height: 27px; overflow: hidden; }
.sugcard__row { display: flex; align-items: center; justify-content: space-between; margin-top: 5px; }
.sugcard__price { font-family: 'Anton'; font-size: 14px; color: var(--yellow); }
.sugcard__add { width: 25px; height: 25px; border-radius: 8px; background: var(--yellow); color: var(--bg); border: none; font: 700 15px 'Fredoka'; line-height: 1; box-shadow: 0 2px 0 var(--yellow-shadow); }

.drawer__foot { flex: 0 0 auto; padding: 13px 15px max(15px, env(safe-area-inset-bottom, 0)); border-top: 1px solid var(--hair); background: var(--bar); }
.drawer__totals { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 3px; }
.drawer__totals-label { font-size: 13px; color: var(--text-2); font-weight: 600; }
.drawer__totals-val { font-family: 'Anton'; font-size: 22px; color: var(--text); }
.drawer__note { font-size: 11px; color: var(--muted); margin-bottom: 11px; }
.checkoutbtn { width: 100%; background: var(--yellow); color: var(--bg); border: none; border-radius: 13px; padding: 15px; font: 700 16px 'Fredoka'; box-shadow: 0 3px 0 var(--yellow-shadow); }
.checkoutbtn:disabled { opacity: 0.6; }
.drawer__secure { text-align: center; font-size: 11px; color: var(--muted); margin-top: 9px; }
.checkout-error { color: var(--red); font-size: 13px; text-align: center; margin-top: 10px; }

/* Lane prompt (shown in drawer when ?lane= is missing/invalid) */
.laneprompt { margin-bottom: 12px; }
.laneprompt__label { display: block; font-weight: 700; font-size: 13px; color: var(--text); margin-bottom: 6px; }
.laneinput { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--text); font-size: 16px; font-family: inherit; }
.laneinput:focus { outline: none; border-color: var(--yellow); }
.laneerror { color: var(--red); font-size: 12px; margin: 6px 0 0; }

/* ---- Photo lightbox --------------------------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 25; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; }
.lightbox__backdrop { position: absolute; inset: 0; background: var(--backdrop-strong); animation: slFade 0.2s ease both; }
.lightbox__inner { position: relative; width: 100%; max-width: var(--maxw); animation: slPop 0.22s ease both; }
.lightbox__img { display: block; width: 100%; max-height: 55vh; object-fit: cover; border-radius: 18px; border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6); }
.lightbox__close { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 10px; background: rgba(20, 18, 14, 0.85); border: 1px solid var(--line); color: var(--text); font-size: 15px; line-height: 1; }
.lightbox__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 12px; }
.lightbox__name { font-family: 'Anton'; font-size: 20px; color: var(--text); text-transform: uppercase; }
.lightbox__price { font-family: 'Anton'; font-size: 18px; color: var(--yellow); }
.lightbox__note { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ---- Buttons (generic) ------------------------------------------------ */
.btn { border: none; border-radius: 12px; padding: 12px 18px; font: 700 14px 'Fredoka'; background: var(--tile); color: var(--text); border: 1px solid var(--line); }
.btn--primary { background: var(--yellow); color: var(--bg); border: none; box-shadow: 0 3px 0 var(--yellow-shadow); }

/* ---- Scrollbars ------------------------------------------------------- */
.body, .itemsheet, .drawer__body {
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.body::-webkit-scrollbar,
.itemsheet::-webkit-scrollbar,
.drawer__body::-webkit-scrollbar { width: 8px; }
.body::-webkit-scrollbar-track,
.itemsheet::-webkit-scrollbar-track,
.drawer__body::-webkit-scrollbar-track { background: transparent; }
.body::-webkit-scrollbar-thumb,
.itemsheet::-webkit-scrollbar-thumb,
.drawer__body::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; border: 2px solid transparent; background-clip: padding-box; }
.body::-webkit-scrollbar-thumb:hover,
.itemsheet::-webkit-scrollbar-thumb:hover,
.drawer__body::-webkit-scrollbar-thumb:hover { background: var(--line-hover); background-clip: padding-box; }

/* ---- Animations ------------------------------------------------------- */
@keyframes slUp { 0% { transform: translateY(26px); opacity: 0.4; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes slFade { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes slPop { 0% { transform: scale(0.8); opacity: 0; } 60% { transform: scale(1.05); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }

.hidden { display: none !important; }
