/* Operational screens: admin console, staff redemption, sign-in, installer.
   Calmer than the marketing site — this is software people use during a shift. */

.auth-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px var(--gutter);
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(47, 123, 255, 0.16), transparent 70%),
    var(--ink);
}
.auth-card {
  width: min(460px, 100%);
  padding: 34px 30px;
  border-radius: var(--r-lg);
  background: var(--hull);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.auth-card--wide { width: min(760px, 100%); }
.auth-card h1 { font-size: 30px; margin-bottom: 8px; }
.auth-card .sub { font-size: 14.5px; color: var(--cream-dim); margin-bottom: 24px; }
.auth-form { display: grid; gap: 15px; }
.auth-form .btn { margin-top: 6px; }
.auth-alt { margin-top: 20px; font-size: 14px; color: var(--cream-dim); text-align: center; }
.auth-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; text-decoration: none; color: var(--cream); }
.auth-brand img { width: 44px; height: 44px; border-radius: 11px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 560px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- admin -- */

.admin { min-height: 100vh; min-height: 100dvh; display: grid; grid-template-columns: 244px 1fr; }
@media (max-width: 900px) { .admin { grid-template-columns: 1fr; } }

.admin-side {
  background: var(--hull);
  border-right: 1px solid var(--line);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
@media (max-width: 900px) {
  .admin-side {
    position: fixed;
    inset: 0 auto 0 0;
    width: 262px;
    z-index: 60;
    transform: translateX(-102%);
    transition: transform 0.22s ease;
    box-shadow: var(--shadow-lift);
  }
  .admin-side.is-open { transform: none; }
}
.admin-brand { display: flex; align-items: center; gap: 10px; padding: 4px 8px 16px; text-decoration: none; color: var(--cream); }
.admin-brand img { width: 34px; height: 34px; border-radius: 9px; }
.admin-brand b { font-family: var(--font-display); font-size: 15.5px; }

.loc-picker {
  width: 100%;
  min-height: 44px;
  margin-bottom: 14px;
  padding: 9px 11px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
  font-size: 14px;
}
.nav-group {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-faint);
  padding: 14px 10px 5px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  min-height: 44px;
  border-radius: var(--r-sm);
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 14.5px;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.nav-link:hover { background: rgba(255, 246, 233, 0.06); color: var(--cream); }
.nav-link.is-active { background: rgba(47, 123, 255, 0.16); color: var(--cream); box-shadow: inset 2px 0 0 var(--jet); }
.nav-link .dot { margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: var(--warn); }
.side-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--cream-faint); }

.admin-main { min-width: 0; padding: 0 0 60px; }
.admin-top {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px var(--gutter);
  background: rgba(7, 11, 24, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  min-height: 68px;
}
.admin-top h1 { font-size: 22px; margin-right: auto; }
.side-toggle { display: none; }
@media (max-width: 900px) {
  .side-toggle {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 11px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--cream);
    cursor: pointer;
  }
}
.admin-body { padding: 26px var(--gutter) 0; display: grid; gap: 22px; }

.panel {
  padding: 22px;
  border-radius: var(--r-md);
  background: var(--hull);
  border: 1px solid var(--line);
}
.panel-head { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 16px; }
.panel-head h2 { font-size: 19px; margin-right: auto; }
.panel-head p { width: 100%; font-size: 14px; color: var(--cream-dim); margin-top: -4px; }
.panel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 15px; }
.panel-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 13px; }
.stat-card {
  padding: 17px 18px;
  border-radius: var(--r-md);
  background: var(--hull);
  border: 1px solid var(--line);
}
.stat-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.stat-card span { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-faint); }
.stat-card em { font-style: normal; font-size: 12.5px; color: var(--mint); display: block; margin-top: 4px; }
.stat-card em.is-down { color: var(--danger); }

.table-wrap { overflow-x: auto; border-radius: var(--r-sm); border: 1px solid var(--line); }
table.data { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; }
table.data th {
  text-align: left;
  padding: 11px 14px;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--cream-faint);
  background: var(--hull-2);
  white-space: nowrap;
}
table.data td { padding: 12px 14px; border-top: 1px solid var(--line); vertical-align: top; }
table.data tr:hover td { background: rgba(255, 246, 233, 0.03); }
table.data .num { text-align: right; font-variant-numeric: tabular-nums; }

.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pill--good { background: rgba(56, 211, 159, 0.16); color: var(--mint); }
.pill--warn { background: rgba(255, 201, 77, 0.16); color: var(--warn); }
.pill--bad { background: rgba(255, 107, 117, 0.16); color: var(--danger); }
.pill--info { background: rgba(47, 123, 255, 0.16); color: var(--jet-soft); }
.pill--mute { background: rgba(255, 246, 233, 0.1); color: var(--cream-faint); }

.btn-sm { min-height: 38px; padding: 8px 15px; font-size: 13.5px; border-radius: 99px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 8px; }

.empty { padding: 34px 20px; text-align: center; color: var(--cream-faint); font-size: 14.5px; }
.loading { padding: 34px; text-align: center; color: var(--cream-faint); font-size: 14px; }

.swatch-row { display: flex; align-items: center; gap: 10px; }
.swatch-row input[type="color"] { width: 52px; height: 46px; padding: 3px; border-radius: 9px; border: 1px solid var(--line); background: var(--ink); cursor: pointer; }
.swatch-row input[type="text"] { flex: 1; }

.flavor-row {
  display: grid;
  grid-template-columns: 1fr 54px 54px 82px 60px 44px;
  gap: 8px;
  align-items: center;
  padding: 9px;
  border-radius: var(--r-sm);
  background: var(--hull-2);
  margin-bottom: 8px;
}
.flavor-row input[type="color"] { width: 100%; height: 40px; padding: 2px; border-radius: 7px; border: 1px solid var(--line); background: var(--ink); }
.flavor-row input[type="text"], .flavor-row input[type="number"] {
  min-height: 40px;
  padding: 8px 12px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  background: rgba(7, 11, 24, 0.6);
  color: var(--cream);
  width: 100%;
}
.flavor-row input[type="text"]:focus, .flavor-row input[type="number"]:focus {
  border-color: var(--jet);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 123, 255, 0.2);
}
.flavor-row input::placeholder { color: var(--cream-faint); }
.flavor-row .icon-btn { background: transparent; border: 1px solid var(--line); border-radius: 8px; min-height: 40px; color: var(--danger); cursor: pointer; }
@media (max-width: 700px) { .flavor-row { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------- reward -- */

.reward-item {
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--hull-2);
  border: 1px solid var(--line);
  margin-bottom: 12px;
}
.reward-item.is-active { border-color: rgba(56, 211, 159, 0.5); box-shadow: 0 0 0 1px rgba(56, 211, 159, 0.2); }
.reward-item h3 { font-size: 17px; margin-bottom: 3px; }
.reward-item .meta { font-size: 13px; color: var(--cream-faint); margin-bottom: 10px; }
.sched-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  background: var(--ink);
  margin-bottom: 7px;
  font-size: 13.5px;
}
.sched-line .grow { margin-right: auto; }

.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-faint);
  padding-bottom: 5px;
}
.cal-day {
  min-height: 84px;
  padding: 6px;
  border-radius: 9px;
  background: var(--hull-2);
  border: 1px solid transparent;
  font-size: 12px;
}
.cal-day.is-out { opacity: 0.32; }
.cal-day.is-today { border-color: var(--jet); }
.cal-day b { display: block; font-size: 12px; margin-bottom: 4px; color: var(--cream-faint); }
.cal-chip {
  display: block;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(47, 123, 255, 0.22);
  color: var(--cream);
  font-size: 10.5px;
  line-height: 1.3;
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cal-chip--alt { background: rgba(255, 122, 24, 0.24); }
@media (max-width: 700px) { .cal-day { min-height: 62px; } }

.qr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.qr-card {
  padding: 18px;
  border-radius: var(--r-md);
  background: var(--hull-2);
  border: 1px solid var(--line);
  text-align: center;
}
.qr-card img { width: 128px; margin: 0 auto 12px; background: #fff; padding: 8px; border-radius: 9px; }
.qr-card h3 { font-size: 15px; margin-bottom: 3px; }
.qr-card p { font-size: 12.5px; color: var(--cream-faint); margin-bottom: 12px; }

/* ---------------------------------------------------------------- staff -- */

.staff {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
}
.staff-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px var(--gutter);
  background: var(--hull);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.staff-top b { font-family: var(--font-display); font-size: 16px; margin-right: auto; }
.staff-main { flex: 1; padding: 20px var(--gutter) 34px; display: grid; gap: 18px; align-content: start; max-width: 620px; width: 100%; margin-inline: auto; }

#scanner {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}
#scanner video { width: 100%; height: 100%; object-fit: cover; }
.scan-frame {
  position: absolute;
  inset: 16%;
  border: 3px solid rgba(255, 246, 233, 0.8);
  border-radius: 16px;
  box-shadow: 0 0 0 100vmax rgba(7, 11, 24, 0.45);
}
.code-entry { display: flex; gap: 9px; }
.code-entry input {
  flex: 1;
  min-height: 58px;
  font-family: var(--font-mono);
  font-size: 22px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: var(--hull);
  color: var(--cream);
  padding: 10px;
}

.verdict { padding: 26px 22px; border-radius: var(--r-lg); text-align: center; border: 2px solid; }
.verdict h2 { font-size: 27px; margin-bottom: 8px; }
.verdict p { font-size: 15px; margin-bottom: 6px; }
.verdict--ok { background: rgba(56, 211, 159, 0.14); border-color: var(--mint); }
.verdict--ok h2 { color: var(--mint); }
.verdict--no { background: rgba(255, 107, 117, 0.14); border-color: var(--danger); }
.verdict--no h2 { color: var(--danger); }
.verdict--warn { background: rgba(255, 201, 77, 0.14); border-color: var(--warn); }
.verdict--warn h2 { color: var(--warn); }
.verdict dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; margin: 16px 0 0; text-align: left; }
.verdict dt { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-faint); }
.verdict dd { margin: 2px 0 0; font-size: 14px; font-weight: 600; }
.btn-huge { min-height: 66px; font-size: 19px; width: 100%; }

.pin-pad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.pin-pad button {
  min-height: 62px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--hull);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  cursor: pointer;
}
.pin-pad button:active { background: var(--hull-2); }
.pin-dots { display: flex; justify-content: center; gap: 11px; margin: 14px 0 18px; }
.pin-dots i { width: 15px; height: 15px; border-radius: 50%; border: 2px solid var(--line); }
.pin-dots i.is-on { background: var(--jet); border-color: var(--jet); }

/* ------------------------------------------------------------ installer -- */

.install-steps { display: grid; gap: 10px; margin-bottom: 26px; }
.install-step {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  background: var(--hull-2);
  font-size: 14px;
}
.install-step i { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); font-style: normal; font-size: 14px; }
.install-step.ok i { background: rgba(56, 211, 159, 0.2); color: var(--mint); }
.install-step.bad i { background: rgba(255, 107, 117, 0.2); color: var(--danger); }
.secret-box {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 14px;
  border-radius: var(--r-sm);
  background: var(--ink);
  border: 1px solid var(--line);
  word-break: break-all;
  user-select: all;
}

/* Print: monthly report should come out clean on paper. */
@media print {
  .admin-side, .admin-top, .panel-actions, .btn, .no-print { display: none !important; }
  .admin { grid-template-columns: 1fr; }
  body, .panel, .stat-card { background: #fff !important; color: #000 !important; border-color: #ccc !important; }
  .stat-card b, table.data th { color: #000 !important; }
  .admin-body { padding: 0; }
  a { color: #000 !important; text-decoration: none; }
}

/* ---------------------------------------------- the when row (scheduling) -- */
/* One line that reads like a sentence: date, from, until, where, all day,
   recurring. Everything else stays folded away until it is asked for. */

.when-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  padding: 14px;
  border-radius: var(--r-md);
  background: var(--hull-2);
  border: 1px solid var(--line);
}
.when-field { display: grid; gap: 5px; min-width: 0; }
.when-field > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.when-field input {
  min-height: 44px;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--ink);
  color: var(--cream);
  font-size: 14.5px;
  color-scheme: dark;
}
.when-field input:focus {
  border-color: var(--jet);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 123, 255, 0.2);
}
.when-field[data-when="date"] { flex: 1 1 160px; }
.when-field[data-when="start"], .when-field[data-when="end"] { flex: 0 1 132px; }

.when-tz {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  background: rgba(47, 123, 255, 0.12);
  border: 1px solid rgba(47, 123, 255, 0.3);
  color: var(--jet-soft);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: help;
}

.when-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--cream-dim);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.when-toggle:hover { border-color: var(--jet); color: var(--cream); }
.when-toggle input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin: 0;
  accent-color: var(--jet);
  cursor: pointer;
}
.when-recur.is-on {
  background: rgba(47, 123, 255, 0.16);
  border-color: var(--jet);
  color: var(--cream);
}
.when-recur svg { transition: transform 0.3s ease; }
.when-recur.is-on svg { transform: rotate(180deg); }

.recur-panel {
  display: none;
  margin-top: 12px;
  padding: 14px;
  border-radius: var(--r-md);
  background: rgba(47, 123, 255, 0.06);
  border: 1px solid rgba(47, 123, 255, 0.22);
}
.recur-panel.is-open { display: block; }
.recur-line { display: flex; flex-wrap: wrap; gap: 14px; }

.day-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.day-pill { cursor: pointer; }
.day-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.day-pill span {
  display: grid;
  place-items: center;
  min-width: 52px;
  height: 42px;
  padding: 0 10px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cream-faint);
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.day-pill:hover span { border-color: var(--jet); color: var(--cream); }
.day-pill input:checked + span {
  background: var(--jet);
  border-color: var(--jet);
  color: #fff;
}
.day-pill input:focus-visible + span { outline: 3px solid var(--warn); outline-offset: 2px; }

.more-options { margin-top: 16px; }
.more-options summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--jet-soft);
  list-style: none;
  padding: 6px 0;
}
.more-options summary::-webkit-details-marker { display: none; }
.more-options summary::before { content: '▸ '; }
.more-options[open] summary::before { content: '▾ '; }

@media (max-width: 640px) {
  .when-row { gap: 10px; }
  .when-field[data-when="date"] { flex: 1 1 100%; }
  .when-field[data-when="start"], .when-field[data-when="end"] { flex: 1 1 calc(50% - 5px); }
  .when-tz, .when-toggle { flex: 1 1 auto; justify-content: center; }
}

/* --- games screen ------------------------------------------------------- */
/* One card per game a location can run. The fields inside come from the
   game's own configuration schema, so this stays the same as games are added. */
.game-list { display: grid; gap: 14px; }
.game-card {
  border: 1px solid var(--line, rgba(255, 246, 233, .14));
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .02);
}
.game-card h4 { margin: 0 0 2px; font-size: 15px; }
.game-card h4 small { font-weight: 400; opacity: .6; font-size: 12px; margin-left: 6px; }
.game-card--planned { opacity: .55; }
.game-card--running { border-color: rgba(56, 211, 159, .45); background: rgba(56, 211, 159, .05); }
.game-live {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--good, #38D39F); margin-left: 8px; vertical-align: middle;
}

/* Same-day warning on the staff redemption screen. */
.staff-sameday {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 168, 76, .14);
  border: 1px solid rgba(255, 168, 76, .4);
  font-size: 13px;
  color: #FFB84D;
}

/* Fixed-icon catalogue editor (Drive-Thru Drift). Show/hide only — no colour or
   name editing, because the artwork is part of the game. */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.icon-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(7, 11, 24, 0.4);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.icon-tile:has(input:checked) {
  border-color: var(--jet);
  background: rgba(47, 123, 255, .12);
}
.icon-tile input { width: 18px; height: 18px; min-height: auto; }
.icon-tile .icon-emoji { font-size: 34px; line-height: 1; }
.icon-tile .icon-name { font-size: 13px; color: var(--cream); text-align: center; }

/* The two reward-delivery options — a clear either/or choice. */
.reward-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  margin-bottom: 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(7, 11, 24, 0.4);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.reward-option.is-selected {
  border-color: var(--jet);
  background: rgba(47, 123, 255, .10);
}
.reward-option input[type="radio"] { width: 20px; height: 20px; min-height: auto; margin-top: 2px; }
.reward-option-body { display: flex; flex-direction: column; gap: 4px; }
.reward-option-title { font-size: 15px; font-weight: 700; color: var(--cream); }
.reward-option-note { font-size: 13px; color: var(--cream-dim); line-height: 1.45; }
.reward-option-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
}
.reward-option-badge.is-on { background: rgba(56, 211, 159, .18); color: #38D39F; }
.reward-option-badge.is-off { background: rgba(255, 168, 76, .16); color: #FFB84D; }

/* Rename-only pizza style editor (Pizza Cannon). Fixed art, editable name. */
.style-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.style-row:last-of-type { border-bottom: none; }
.style-sprite {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #ffe6b0 0 22%, var(--pc, #e4503c) 30% 100%);
  border: 2px solid rgba(0,0,0,.25); flex: 0 0 auto;
}
.style-name {
  flex: 1;
  min-height: 40px; padding: 8px 12px;
  border: 1.5px solid var(--line); border-radius: 7px;
  background: rgba(7,11,24,.6); color: var(--cream);
}
.style-name:focus { border-color: var(--jet); outline: none; box-shadow: 0 0 0 3px rgba(47,123,255,.2); }
.style-featured { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--cream-dim); white-space: nowrap; }
.style-featured input { width: 18px; height: 18px; min-height: auto; }
