/* FitCheck — "FITTING ROOM": fashion-editorial utility.
   Gallery-grey paper · near-black ink · one vermilion signal.
   Anton (masthead) + Archivo (grotesque). Sharp, flat, hairline-structured. */

:root {
  --bg:        #e9e7e0;
  --surface:   #f2f0ea;   /* tiles / cards / chips */
  --surface-2: #e0ddd3;   /* hover / inset */
  --field:     #f6f5f1;   /* inputs */
  --ink:       #17150f;
  --ink-2:     #55514a;
  --ink-3:     #8b867b;
  --line:      #cbc8bd;
  --line-2:    #b3afa2;
  --accent:    #e2360f;   /* vermilion — the single signal colour */
  --accent-ink:#ffffff;

  --bar:     #17150f;     /* the ink action shelf */
  --on-dark: #f2f0ea;     /* text on bar / photo scrims — does NOT flip */
  --overlay: rgba(20,18,14,.55);

  --display: 'Anton', 'Archivo', system-ui, sans-serif;
  --sans: 'Archivo', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #121110; --surface: #1b1916; --surface-2: #262219; --field: #201d17;
    --ink: #ece8de; --ink-2: #a19b8e; --ink-3: #726c60;
    --line: #322e27; --line-2: #433e34;
    --accent: #f04a1f;
    --bar: #0b0a09; --overlay: rgba(4,4,3,.62);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #121110; --surface: #1b1916; --surface-2: #262219; --field: #201d17;
  --ink: #ece8de; --ink-2: #a19b8e; --ink-3: #726c60;
  --line: #322e27; --line-2: #433e34;
  --accent: #f04a1f;
  --bar: #0b0a09; --overlay: rgba(4,4,3,.62);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.5;
  padding-bottom: 128px;
  -webkit-font-smoothing: antialiased;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
h1, h2, h3 { margin: 0; font-weight: 700; }
a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; }
strong { font-weight: 600; color: var(--ink); }
::selection { background: var(--accent); color: var(--accent-ink); }

:where(button, a, input, select, [role="button"], [tabindex]):focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

/* ---------- top bar ---------- */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px 14px; max-width: 1280px; margin: 0 auto;
  border-bottom: 1px solid var(--ink);
}
.brand { display: flex; align-items: center; gap: 13px; }
.crest {
  width: 40px; height: 40px; border-radius: 0;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 26px; line-height: 1;
  color: var(--accent-ink); background: var(--accent);
  border: none; box-shadow: none;
}
.wordmark h1 {
  font-family: var(--display); font-size: 30px; color: var(--ink);
  line-height: .9; letter-spacing: .01em; text-transform: uppercase;
}
.tagline {
  margin: 5px 0 0; color: var(--ink-2);
  font-size: 10px; text-transform: uppercase; letter-spacing: .32em; font-weight: 600;
}
.iconbtn {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink); border-radius: 0;
  width: 40px; height: 40px; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.iconbtn:hover { background: var(--ink); color: var(--bg); }
.iconbtn:active { transform: translateY(1px); }
.topbar-actions { display: flex; gap: 8px; }

/* ---------- decorative rule (now a plain structural gap) ---------- */
.rule-band { display: none; }

/* ---------- banner ---------- */
.banner {
  max-width: 1280px; margin: 14px auto 0; padding: 13px 18px;
  background: var(--surface); border: 1px solid var(--ink); border-left: 4px solid var(--accent);
  color: var(--ink); font-size: 13.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.hidden { display: none !important; }

/* ---------- layout ---------- */
main { max-width: 1280px; margin: 0 auto; padding: 26px 28px 0; display: flex; gap: 40px; align-items: flex-start; }
.rail { width: 296px; flex: none; display: flex; flex-direction: column; gap: 40px; }
.board { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 40px; }
section { margin: 0; }
.sec-head { margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--ink); }
.sec-head::after { display: none; }
.sec-head h2 {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--display); font-size: 27px; color: var(--ink);
  text-transform: uppercase; letter-spacing: .01em; line-height: .95;
}
/* the step badge becomes a magazine index numeral */
.step {
  font-family: var(--display); font-style: normal; font-weight: 400; font-size: 15px;
  color: var(--accent); background: transparent; border: none; border-radius: 0;
  min-width: 0; height: auto; padding: 0;
  display: inline; place-items: unset;
  letter-spacing: .04em;
}
.hint { color: var(--ink-2); font-family: var(--sans); font-style: normal; font-size: 12.5px; margin: 8px 0 0; max-width: 60ch; line-height: 1.45; }
.hint strong { font-weight: 600; color: var(--ink); }

/* ---------- grids & tiles ---------- */
.grid { display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); }
.tile {
  position: relative; padding: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 0; aspect-ratio: 3 / 4; overflow: hidden;
  transition: border-color .16s var(--ease), transform .16s var(--ease);
}
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile.selectable:hover { border-color: var(--ink); }
.tile.selected { border: 2px solid var(--accent); }
.tile .check {
  position: absolute; top: 0; left: 0;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 0; width: 22px; height: 22px; font-size: 12px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
}
.tile.selected .check { display: inline-flex; }
.tile .del {
  position: absolute; top: 0; right: 0;
  background: var(--ink); color: var(--on-dark);
  border: none; border-radius: 0; min-width: 24px; height: 24px; padding: 0 7px; font-size: 12px;
  opacity: 0; transition: opacity .14s var(--ease);
}
.tile:hover .del, .tile .del.armed { opacity: 1; }
.tile .del.armed { background: var(--accent); }
.tile .name {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 7px 5px; font-family: var(--sans); font-weight: 500; font-size: 11px; color: var(--on-dark);
  background: linear-gradient(transparent, rgba(10,9,6,.86));
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: left;
  letter-spacing: .01em;
}
.tile.add {
  border-style: dashed; border-color: var(--line-2); background: transparent;
  color: var(--ink-3); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  font-family: var(--sans); font-weight: 600; font-size: 9.5px; text-transform: uppercase; letter-spacing: .1em;
  line-height: 1.2; text-align: center; padding: 5px;
  transition: color .16s var(--ease), border-color .16s var(--ease);
}
.tile.add:hover { color: var(--ink); border-color: var(--ink); }
.tile.add .plus { font-family: var(--display); font-size: 26px; line-height: 1; color: var(--accent); }

/* ---------- categories ---------- */
#categories { display: grid; grid-template-columns: repeat(auto-fill, minmax(214px, 1fr)); gap: 22px 20px; }
.cat { margin: 0; min-width: 0; }   /* grid item: don't let a no-wrap tile row blow out the 1fr track on mobile */
.cat .grid { grid-template-columns: repeat(auto-fill, minmax(62px, 1fr)); gap: 6px; }
.cat-head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 9px; padding-bottom: 5px; border-bottom: 1px solid var(--line); }
.cat-head h3 { font-family: var(--sans); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; color: var(--ink); }
.cat-head .count, .cat-head .picked { font-family: var(--sans); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.cat-head .count { color: var(--ink-3); }
.cat-head .picked { color: var(--accent); margin-left: auto; }

/* ---------- chip-tabs (hair / scene / drawers) ---------- */
.hair-presets { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.hair-preset {
  background: transparent; border: 1px solid var(--line-2); color: var(--ink);
  border-radius: 0; padding: 7px 12px;
  font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: border-color .16s var(--ease), background .16s var(--ease), color .16s var(--ease);
}
.hair-preset:hover { border-color: var(--ink); }
.hair-preset:active { transform: translateY(1px); }
.hair-preset.selected { background: var(--ink); color: var(--bg); border-color: var(--ink); }
#hair-grid { grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); }

/* ---------- lookbook ---------- */
.grid.looks { grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); }
.look-tile { cursor: pointer; }
.look-tile .name { font-size: 11px; }
.empty {
  grid-column: 1 / -1; color: var(--ink-3);
  font-family: var(--sans); font-style: normal; font-size: 13px; letter-spacing: .02em;
  border: 1px dashed var(--line-2); border-radius: 0; padding: 30px 22px; text-align: center;
}

/* ---------- reveal on load ---------- */
.reveal { opacity: 0; transform: translateY(14px); animation: rise .55s var(--ease) forwards; }
#you-section { animation-delay: .04s; }
#wardrobe-section { animation-delay: .12s; }
#hair-section { animation-delay: .20s; }
#scene-section { animation-delay: .26s; }
#lookbook-section { animation-delay: .32s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  body, .tile, .btn, .iconbtn, .hair-preset { transition: none; }
}

/* ---------- action shelf (was outfit bar) ---------- */
.outfit-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--bar);
  border-top: 2px solid var(--accent);
  color: var(--on-dark);
  padding: 12px 22px calc(12px + env(safe-area-inset-bottom));
}
.outfit-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.chips { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; min-width: 180px; }
.chip {
  background: var(--surface); border: 1px solid var(--line); color: var(--ink);
  border-radius: 0; padding: 4px 10px; font-size: 11.5px; font-weight: 500; letter-spacing: .01em;
  display: inline-flex; align-items: center; gap: 7px;
  max-width: 210px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.outfit-bar .chip { background: transparent; border-color: rgba(242,240,234,.3); color: var(--on-dark); }
.chip .x { cursor: pointer; color: var(--accent); font-weight: 700; }
.chip .x:hover { color: #fff; }
.outfit-bar .chip.placeholder { border-style: dashed; color: rgba(242,240,234,.55); background: transparent; }
.cap-note { align-self: center; color: var(--accent); font-size: 10px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.notes {
  background: var(--field); border: 1px solid transparent; color: var(--ink);
  border-radius: 0; padding: 9px 12px; font-family: var(--sans); font-size: 13px; width: 230px;
}
.notes:focus { outline: none; border-color: var(--accent); }
.notes::placeholder { color: var(--ink-3); }
.model-badge {
  color: rgba(242,240,234,.7); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  border: 1px solid rgba(242,240,234,.22); padding: 5px 9px; border-radius: 0; background: transparent;
}
.btn {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
  border-radius: 0; padding: 10px 18px;
  font-family: var(--sans); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  transition: background .16s var(--ease), color .16s var(--ease), transform .1s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn:active:not(:disabled) { transform: translateY(1px); }
.btn.small { padding: 6px 11px; font-size: 10px; }
.btn.primary {
  background: var(--accent); color: var(--accent-ink); border: 1px solid var(--accent); font-weight: 700; letter-spacing: .13em;
}
.btn.primary:hover { filter: brightness(1.08); background: var(--accent); color: var(--accent-ink); }
.btn.primary:disabled { opacity: .45; cursor: not-allowed; filter: none; }
/* buttons that live on the dark shelf get a light outline */
.outfit-bar .btn { border-color: rgba(242,240,234,.4); color: var(--on-dark); }
.outfit-bar .btn:hover { background: var(--on-dark); color: var(--bar); }
.outfit-bar .btn.primary { border-color: var(--accent); color: var(--accent-ink); }
.outfit-bar .btn.primary:hover { background: var(--accent); color: var(--accent-ink); }
.btn.danger { color: var(--ink-2); border-color: var(--line-2); background: transparent; }
.btn.danger:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.gen-status { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 500; font-size: 13px; color: var(--on-dark); }
.spinner {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(242,240,234,.28); border-top-color: var(--accent);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- modals ---------- */
.modal {
  position: fixed; inset: 0; z-index: 60;
  background: var(--overlay); backdrop-filter: blur(2px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal.open { display: flex; animation: fade .16s var(--ease); }
@keyframes fade { from { opacity: 0; } }
.modal-card {
  background: var(--bg); border: 1px solid var(--ink); border-radius: 0;
  padding: 24px; width: min(480px, 100%); max-height: 92vh; overflow: auto;
  box-shadow: 14px 14px 0 -2px var(--accent);
}
.modal-card.viewer { width: min(700px, 100%); box-shadow: none; }
.modal-card header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding-bottom: 13px; border-bottom: 1px solid var(--ink); }
.modal-card header h3 { font-family: var(--display); font-size: 26px; color: var(--ink); text-transform: uppercase; letter-spacing: .01em; }
.modal-card .field { display: block; margin: 15px 0; font-size: 12px; color: var(--ink-2); }
.modal-card .field > span { display: block; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-size: 10.5px; }
.modal-card .field > span a { font-weight: 500; }
.modal-card .note { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 0; padding: 12px 14px; line-height: 1.5; color: var(--ink-2); font-size: 12.5px; text-transform: none; letter-spacing: 0; }
.modal-card .note strong { color: var(--ink); }
.modal-card input, .modal-card select {
  width: 100%; background: var(--field); color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 0; padding: 11px 13px; font-family: var(--sans); font-size: 14px;
}
.modal-card input:focus, .modal-card select:focus { outline: none; border-color: var(--accent); }
.keyrow { display: flex !important; gap: 8px; align-items: center; }
.keyrow input { flex: 1; }
.row { display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.spacer { flex: 1; }
.test-result { font-size: 12px; font-family: var(--sans); font-weight: 500; }
.test-result.ok { color: var(--ink); }
.test-result.err { color: var(--accent); }
#viewer-img { width: 100%; max-height: 62vh; object-fit: contain; border-radius: 0; background: var(--surface-2); border: 1px solid var(--line); }
.viewer-meta { margin: 14px 0 2px; display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.viewer-meta .when { color: var(--ink-3); font-family: var(--sans); font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; width: 100%; }

/* ---------- toasts ---------- */
#toasts {
  position: fixed; bottom: 118px; left: 50%; transform: translateX(-50%);
  z-index: 80; display: flex; flex-direction: column; gap: 8px; align-items: center; width: min(460px, calc(100% - 30px));
}
.toast {
  background: var(--ink); border: none; color: var(--on-dark);
  border-radius: 0; padding: 11px 16px; font-size: 13px; font-family: var(--sans); font-weight: 500; letter-spacing: .01em;
  border-left: 3px solid var(--accent);
  animation: pop .18s var(--ease);
}
.toast.err { border-left-color: var(--accent); color: #fff; }
@keyframes pop { from { opacity: 0; transform: translateY(8px); } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  main { flex-direction: column; gap: 30px; align-items: stretch; }
  .rail, .board { display: contents; }
  #you-section { order: 1; }
  #wardrobe-section { order: 2; }
  #hair-section { order: 3; }
  #lookbook-section { order: 4; }
  #categories { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .grid { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }
  .grid.looks { grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); }
}
@media (max-width: 560px) {
  body { padding-bottom: 146px; font-size: 15px; }
  .topbar { padding: 16px 16px 12px; }
  .wordmark h1 { font-size: 26px; }
  main { padding: 20px 16px 0; gap: 26px; }
  .sec-head h2 { font-size: 23px; }
  #categories { grid-template-columns: 1fr; }

  .grid {
    display: flex; flex-wrap: nowrap; align-items: flex-start;
    overflow-x: auto; gap: 6px; padding-bottom: 6px;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
  }
  .grid > * { flex: 0 0 92px; scroll-snap-align: start; }
  .cat .grid > * { flex: 0 0 80px; }
  .grid.looks > * { flex: 0 0 120px; }
  .grid > .empty { flex: 1 0 100%; }
  .hair-presets { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .hair-preset { flex: 0 0 auto; }

  .outfit-bar { padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); }
  .outfit-inner { gap: 8px; }
  .chips { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .model-badge { display: none; }
  .notes { order: 2; flex: 1 1 110px; width: auto; min-width: 90px; padding: 8px 10px; }
  .outfit-inner .btn.primary { order: 3; }
  .gen-status { order: 2; }
  #toasts { bottom: 156px; }

  .modal { padding: 0; align-items: flex-end; }
  .modal-card { border-radius: 0; padding: 16px 16px 20px; max-height: 92vh; box-shadow: none; border-top: 3px solid var(--accent); }
  .modal-card.viewer { width: 100%; }
  .modal-card header { margin-bottom: 12px; padding-bottom: 9px; }
  .modal-card header h3 { font-size: 21px; }
  #viewer-img { max-height: 68vh; }
  .viewer-meta { margin: 10px 0 2px; }
  .tile .del { opacity: 1; }
  .tile .shop { opacity: 1; }
}

/* ---------- shop-URL import ---------- */
.import-row { display: flex; gap: 8px; margin: 4px 0 14px; }
.import-row input {
  flex: 1; min-width: 0; padding: 10px 13px;
  background: var(--field); color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 0;
  font-family: var(--sans); font-size: 12.5px;
}
.import-row input:focus { outline: none; border-color: var(--accent); }
.import-note { margin: 0 0 12px; }
.import-sub { color: var(--ink-2); font-family: var(--sans); font-size: 13px; margin: 0 0 14px; letter-spacing: .01em; }
.import-thumbs { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); margin-bottom: 4px; }
.tile .shop {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; text-decoration: none; color: var(--on-dark); border: none;
  background: var(--ink); border-radius: 0;
  opacity: 0; transition: opacity .14s var(--ease);
}
.tile .shop:hover { color: var(--accent); }
.tile:hover .shop { opacity: 1; }
.shop-chip { text-decoration: none; border-bottom: none; }
.shop-chip:hover { color: var(--accent); }

/* ---------- store catalogue ---------- */
.catalog-bar { display: flex; gap: 8px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.catalog-bar input { flex: 1; min-width: 0; padding: 9px 12px; background: var(--field); color: var(--ink); border: 1px solid var(--line-2); border-radius: 0; font-family: var(--sans); font-size: 12.5px; }
.catalog-bar input:focus { outline: none; border-color: var(--accent); }
.catalog-bar .count { color: var(--ink-3); font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.catalog-bar select.btn {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 24px; white-space: nowrap;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%23999' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat; background-position: right 8px center;
}
.catalog-bar select.btn:hover { background-color: transparent; color: var(--ink); border-color: var(--accent); }
/* must live AFTER the base .catalog-bar rules — same specificity, source order decides */
@media (max-width: 560px) {
  .catalog-bar { gap: 6px; }
  .catalog-bar input { flex: 1 1 100%; }   /* filter gets its own row; buttons wrap beneath */
}
#catalog-grid { display: grid; grid-auto-flow: row; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 8px; overflow-x: hidden; overflow-y: auto; max-height: 62vh; padding-right: 2px; }
.catalog-tile.added { opacity: .45; }
.catalog-tile.added .name { color: var(--accent); }
.catalog-tile.busy { opacity: .5; pointer-events: none; }
.catalog-tile.busy::after { content: '···'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--on-dark); background: rgba(10,9,6,.5); }

/* ---------- sync ---------- */
.sync-status { display: block; margin-top: 8px; font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); }

#catalog-drawers { margin-bottom: 12px; flex-wrap: wrap; overflow-x: visible; }
#catalog-drawers .hair-preset { font-size: 10px; }
