/* Phone-first order wizard — Universe tokens */
:root {
  --mute: var(--mute, #7a7a7a);
  --mute2: var(--mute2, #a0a0a0);
}

.wiz-page { background: #000; color: #fff; }

.wiz {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  max-width: 28rem;
  margin: 0 auto;
}

.wiz-top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: calc(0.65rem + env(safe-area-inset-top, 0px)) 1.1rem 0.65rem;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.wiz-top .brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.wiz-top .brand img { width: 1.45rem; height: 1.45rem; }
.quote-link {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line2);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
}
.quote-link.has-items { border-color: #fff; }
.quote-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  margin-left: 0.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.65rem;
}

.wiz-step {
  padding: 0.55rem 1.1rem 0;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0;
}

.wiz-main {
  flex: 1;
  padding: 0.85rem 1.1rem 6.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.wiz-main h1 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lede { margin: 0; color: var(--mute2); font-size: 0.88rem; }
.muted { color: var(--mute2); font-size: 0.85rem; }
.err { color: #fbbf24; font-size: 0.85rem; }
.section-label {
  margin: 0.5rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute2);
}

.wiz-foot {
  position: sticky;
  bottom: 0;
  z-index: 20;
  display: flex;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(0, 0, 0, 0.96);
  border-top: 1px solid var(--line2);
}
.wiz-foot .btn { flex: 1; min-height: 2.85rem; }
.wiz-foot .btn:disabled { opacity: 0.35; cursor: not-allowed; }

.search-box input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
  border-radius: 0.65rem;
  border: 1px solid var(--line2);
  background: var(--field);
  color: #fff;
  font-family: inherit;
}

.style-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: calc(100svh - 14rem);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.style-list li button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #0a0a0a;
  color: #fff;
  font-family: inherit;
  cursor: pointer;
}
.style-list li button.is-selected,
.style-list li button:hover { border-color: #fff; }
.style-list img {
  width: 3.25rem;
  height: 4rem;
  object-fit: contain;
  background: #111;
  border-radius: 0.35rem;
  flex-shrink: 0;
}
.style-list .meta strong {
  display: block;
  font-size: 0.9rem;
}
.style-list .meta span {
  display: block;
  font-size: 0.75rem;
  color: var(--mute2);
  margin-top: 0.15rem;
}

.color-panel { display: none; }
.color-panel.is-open { display: block; }
.color-panel h2 {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.6rem, 1fr));
  gap: 0.55rem;
  margin-top: 0.65rem;
}
.color-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.25rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.62rem;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}
.color-chip.is-selected { border-color: #fff; }
.color-chip .sw {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid #444;
  background-size: cover;
  background-position: center;
  background-color: #222;
}
.garment-preview {
  width: 100%;
  max-width: 14rem;
  margin: 0.5rem auto 0;
  aspect-ratio: 4/5;
  object-fit: contain;
  background: #0a0a0a;
  border-radius: 0.5rem;
  display: block;
}

/* Art */
.loc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.loc-tabs button {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line2);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.loc-tabs button.is-on { background: #fff; color: #000; border-color: #fff; }
.loc-tabs button.has-art::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.35rem;
  border-radius: 50%;
  background: #4ade80;
}
.mockup {
  position: relative;
  width: 100%;
  max-width: 20rem;
  margin: 0.5rem auto;
  aspect-ratio: 4/5;
  background: #111;
  border-radius: 0.65rem;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}
.mockup .shirt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.mockup .art-layer {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 42%;
  transform: translate(-50%, -50%);
  cursor: grab;
  touch-action: none;
}
.mockup .art-layer img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.mockup .shirt.is-flipped {
  transform: scaleX(-1);
}
.mockup .art-layer.is-dragging { cursor: grabbing; }
.art-controls { display: flex; flex-direction: column; gap: 0.55rem; }
.art-controls label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute2);
}
.art-thumbs { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.art-thumbs figure { margin: 0; position: relative; width: 3.5rem; }
.art-thumbs img {
  width: 3.5rem; height: 3.5rem;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: #111;
}
.art-thumbs button.rm {
  position: absolute; top: -0.35rem; right: -0.35rem;
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%; border: 0;
  background: #fff; color: #000;
  font-size: 0.75rem; cursor: pointer;
}

/* Large touch-friendly size / tolerance sliders */
.art-controls input[type="range"],
.ae-tol input[type="range"],
#scale,
#aeTol {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2.75rem; /* tall hit area */
  margin: 0.15rem 0 0.35rem;
  background: transparent;
  cursor: pointer;
}
.art-controls input[type="range"]::-webkit-slider-runnable-track,
.ae-tol input[type="range"]::-webkit-slider-runnable-track,
#scale::-webkit-slider-runnable-track,
#aeTol::-webkit-slider-runnable-track {
  height: 0.55rem;
  border-radius: 999px;
  background: #2a2a2a;
  border: 1px solid #444;
}
.art-controls input[type="range"]::-webkit-slider-thumb,
.ae-tol input[type="range"]::-webkit-slider-thumb,
#scale::-webkit-slider-thumb,
#aeTol::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.85rem;
  height: 1.85rem;
  margin-top: -0.65rem; /* center on track */
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  box-shadow: 0 0 0 2px #fff;
  cursor: grab;
}
.art-controls input[type="range"]::-moz-range-track,
.ae-tol input[type="range"]::-moz-range-track,
#scale::-moz-range-track,
#aeTol::-moz-range-track {
  height: 0.55rem;
  border-radius: 999px;
  background: #2a2a2a;
  border: 1px solid #444;
}
.art-controls input[type="range"]::-moz-range-thumb,
.ae-tol input[type="range"]::-moz-range-thumb,
#scale::-moz-range-thumb,
#aeTol::-moz-range-thumb {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  box-shadow: 0 0 0 2px #fff;
  cursor: grab;
}

.warn-res { color: #fbbf24; font-size: 0.8rem; margin: 0; }

/* Sizes */
.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.size-grid .cell label {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  color: var(--mute2);
}
.size-grid input {
  width: 100%;
  text-align: center;
  font-size: 1.15rem;
  padding: 0.7rem 0.25rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line2);
  background: var(--field);
  color: #fff;
  font-family: inherit;
}
.qty-live { font-size: 0.85rem; color: var(--mute2); }

.size-grid .cell label .sz-name { letter-spacing: 0.1em; }
.size-grid .cell label .sz-stock {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.58rem;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mute2);
  font-variant-numeric: tabular-nums;
  white-space: normal;
}
.size-grid .cell label .sz-stock.is-mute { opacity: 0.55; }
.size-grid .cell .sz-over {
  margin: 0.2rem 0 0;
  font-size: 0.62rem;
  color: #fbbf24;
  text-align: center;
}
.stock-note {
  font-size: 0.78rem;
  color: var(--mute2);
  margin: 0.35rem 0 0;
}
.stock-note.is-warn { color: #fbbf24; }
.quote-stock {
  font-size: 0.75rem;
  color: var(--mute2);
  margin-top: 0.35rem;
}


/* Confirm / quote */
.synopsis { display: flex; flex-direction: column; gap: 0.85rem; }
.syn-card {
  border: 1px solid var(--line2);
  border-radius: 0.65rem;
  padding: 0.85rem;
  background: #0a0a0a;
}
.syn-card h2 {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute2);
}
.syn-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  padding: 0.2rem 0;
}
.syn-thumbs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.45rem; }
.syn-thumbs img {
  width: 3.2rem; height: 3.2rem;
  object-fit: contain;
  border-radius: 0.3rem;
  border: 1px solid var(--line);
  background: #111;
}
.retail-big { font-size: 1.45rem; font-weight: 700; letter-spacing: 0.04em; }
.retail-note { font-size: 0.72rem; color: var(--mute); margin: 0.35rem 0 0; }

.quote-line {
  border: 1px solid var(--line2);
  border-radius: 0.65rem;
  padding: 0.85rem;
  margin-bottom: 0.65rem;
  background: #0a0a0a;
}
.quote-line-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-start;
}
.quote-locs {
  margin-top: 0.65rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
}
.quote-locs-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute2);
  margin-bottom: 0.35rem;
}
.quote-loc {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  padding: 0.15rem 0;
}
.quote-empty { color: var(--mute2); text-align: center; padding: 2rem 1rem; }

.field { margin: 0 0 0.75rem; }
.field label {
  display: block;
  margin: 0 0 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute2);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line2);
  border-radius: 0.5rem;
  background: var(--field);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}
.field textarea { min-height: 4.5rem; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
@media (max-width: 420px) { .row-2 { grid-template-columns: 1fr; } }
.check-row { display: flex; gap: 1rem; flex-wrap: wrap; margin: 0.4rem 0; }
.check-row label { font-size: 0.9rem; color: #fff; display: flex; align-items: center; gap: 0.35rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}


/* Aliases for step layout */
.style-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.45rem; max-height:calc(100svh - 14rem); overflow:auto; }
.style-list li button { width:100%; display:flex; align-items:center; gap:.75rem; text-align:left; padding:.55rem .65rem; border:1px solid var(--line); border-radius:.65rem; background:#0a0a0a; color:#fff; font-family:inherit; cursor:pointer; }
.style-list li button.is-selected, .style-list li button:hover { border-color:#fff; }
.style-list img { width:3.25rem; height:4rem; object-fit:contain; background:#111; border-radius:.35rem; flex-shrink:0; }
.search-box input, #q { width:100%; padding:.85rem 1rem; font-size:1.05rem; border-radius:.65rem; border:1px solid var(--line2); background:var(--field); color:#fff; font-family:inherit; }
.color-panel.is-open, .color-panel.is-open { display:block; }
.loc-tabs button.is-on, .loc-tabs button.is-on { background:#fff; color:#000; border-color:#fff; }
.size-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:.55rem; }
.size-grid .cell label { display:block; text-align:center; font-size:.7rem; letter-spacing:.1em; margin-bottom:.25rem; color:var(--mute2); }
.size-grid input { width:100%; text-align:center; font-size:1.15rem; padding:.7rem .25rem; border-radius:.5rem; border:1px solid var(--line2); background:var(--field); color:#fff; font-family:inherit; }
.qty-live { font-size:.85rem; color:var(--mute2); }
.syn-card { border:1px solid var(--line2); border-radius:.65rem; padding:.85rem; background:#0a0a0a; margin:0 0 .75rem; }
.syn-card h2 { margin:0 0 .55rem; font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--mute2); }
.syn-row { display:flex; justify-content:space-between; gap:.75rem; font-size:.9rem; padding:.2rem 0; }
.syn-thumbs { display:flex; flex-wrap:wrap; gap:.4rem; margin-top:.45rem; }
.syn-thumbs img { width:3.2rem; height:3.2rem; object-fit:contain; border-radius:.3rem; border:1px solid var(--line); background:#111; }
.retail-big { font-size:1.45rem; font-weight:700; }
.retail-note { font-size:.72rem; color:var(--mute); }
.quote-line { border:1px solid var(--line2); border-radius:.65rem; padding:.85rem; margin-bottom:.65rem; background:#0a0a0a; }
.quote-line-head { display:flex; justify-content:space-between; gap:.5rem; }
.quote-empty { color:var(--mute2); text-align:center; padding:2rem 1rem; }
.field { margin:0 0 .75rem; }
.field label { display:block; margin:0 0 .3rem; font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:var(--mute2); }
.row-2 { display:grid; grid-template-columns:1fr 1fr; gap:.65rem; }
.check-row { display:flex; gap:1rem; flex-wrap:wrap; }
.btn-row { display:flex; flex-wrap:wrap; gap:.65rem; margin-top:.75rem; }
.muted { color:var(--mute2); }

/* —— Art editor (phone-first, black Universe) —— */
body.ae-open { overflow: hidden; }

.ae {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #000;
  display: flex;
  flex-direction: column;
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
}
.ae[hidden] { display: none !important; }

.ae-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: calc(0.65rem + env(safe-area-inset-top, 0px)) 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  gap: 0.55rem;
}

.ae-head h2 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ae-hint {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: var(--mute2);
}

.ae-stage {
  position: relative;
  width: 100%;
  max-height: 55vh;
  margin: 0.15rem 0;
  background-color: #1a1a1a;
  background-image:
    linear-gradient(45deg, #2a2a2a 25%, transparent 25%),
    linear-gradient(-45deg, #2a2a2a 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #2a2a2a 75%),
    linear-gradient(-45deg, transparent 75%, #2a2a2a 75%);
  background-size: 16px 16px;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  border-radius: 0.5rem;
  overflow: hidden;
  touch-action: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ae-canvas-wrap {
  position: relative;
  max-width: 100%;
  max-height: 55vh;
  line-height: 0;
}
.ae-canvas-wrap canvas {
  display: block;
  max-width: 100%;
  max-height: 55vh;
  width: auto;
  height: auto;
}
#aeCanvas { pointer-events: none; }
#aeOverlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  cursor: crosshair;
}

.ae-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.ae-tool {
  flex: 1 1 auto;
  min-width: 4.2rem;
  padding: 0.55rem 0.45rem;
  border: 1px solid var(--line2);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.ae-tool.is-on {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.ae-tool:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ae-fill-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.35rem 0 0.15rem;
}
.ae-fill-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute2);
}
#aeFillColor {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: transparent;
  cursor: pointer;
}
#aeFillColor::-webkit-color-swatch-wrapper { padding: 3px; }
#aeFillColor::-webkit-color-swatch { border: none; border-radius: 0.3rem; }

.ae-tol {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute2);
  margin: 0;
}
#aeTol {
  width: 100%;
  margin: 0;
  accent-color: #fff;
}

.ae-colors {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ae-colors-label {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute2);
}
.ae-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  min-height: 2rem;
}
.ae-swatch {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 0 0 1px #333;
}
.ae-count {
  margin: 0;
  font-size: 0.88rem;
  color: #fff;
}
.ae-note {
  margin: 0;
  font-size: 0.72rem;
  color: var(--mute);
}

.ae-foot {
  display: flex;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.35rem;
}
.ae-foot .btn { flex: 1; min-height: 2.85rem; }

#editArtBtn {
  align-self: flex-start;
  min-height: 2.4rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
}


.layout-note {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--mute2);
}

#placeControls[hidden] { display: none !important; }
.mockup.is-inkable-layout .art-layer {
  pointer-events: none;
  opacity: 0.55;
}
.art-controls > .check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--fg, #eee);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}
.art-controls > .check-row input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: #fff;
}

.contact-form .field { margin-bottom: 0.85rem; }
.contact-form .opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  opacity: 0.7;
}
.contact-form textarea {
  width: 100%;
  min-height: 7rem;
  resize: vertical;
  padding: 0.75rem 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line2);
  background: var(--field);
  color: #fff;
  font: inherit;
}
.contact-form .btn { width: 100%; margin-top: 0.5rem; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.shirt-color-btn {
  display: block;
  width: 100%;
  margin: 0.35rem 0 0.75rem;
  min-height: 2.4rem;
}
.change-color-panel {
  margin: 0 0 1rem;
}
.change-color-panel:not([hidden]) {
  display: block;
}
.btn[hidden] { display: none !important; }
.shirt-color-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.shirt-color-btn .btn-sw {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid #555;
  background-color: #222;
  background-size: cover;
  background-position: center;
}

.quote-sizes {
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #e8e8e8;
}
.quote-sizes li { margin: 0; }
.quote-design {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--mute2);
  margin-top: 0.15rem;
}

.ae-global {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.35rem 0 0.55rem;
  padding: 0 0.15rem;
  font-size: 0.88rem;
  color: #e8e8e8;
  user-select: none;
  -webkit-user-select: none;
}
.ae-global input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: #fff;
  flex-shrink: 0;
}
