/** Shopify CDN: Minification failed

Line 120:0 Unexpected "}"

**/
/* ============================================================
   Glyph Browser
   Layout: left scrollable grid + right sticky large preview
   ============================================================ */

.glyph-browser {
  display: grid;
  grid-template-columns: 1fr 38%;
  min-height: 60vh;
  border-top: 1px solid var(--border);
}

/* ---- Left: scrollable glyph grid ---- */
.glyph-browser__grid-col {
  padding: 48px 48px 80px;
  border-right: 1px solid var(--border);
}

.gb-category {
  margin-bottom: 40px;
}

.gb-category__label {
  font-family: var(--font-body);
  font-size: 9px;
  font-variation-settings: "wght" 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.gb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.gb-cell {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  background: transparent;
  border: none;
  border-radius: 3px;
  padding: 0;
  transition: color 0.08s ease;
  -webkit-font-smoothing: antialiased;
}

.gb-cell:hover {
  color: var(--accent);
}

.gb-cell.is-locked {
  color: var(--accent);
}

/* ---- Right: sticky large preview ---- */
.glyph-browser__preview-col {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.glyph-browser__preview {
  font-size: clamp(180px, 22vw, 380px);
  line-height: 2;
  user-select: none;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  transition: color 0.08s ease;
  overflow: visible;
  border: 30px solid black;

}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .glyph-browser {
    grid-template-columns: 1fr;
  }

  .glyph-browser__preview-col {
    position: relative;
    height: 40vw;
    border-top: 1px solid var(--border);
    border-right: none;
  }

  .glyph-browser__grid-col {
    border-right: none;
    padding: 32px 24px 60px;
  }

  .glyph-browser__preview {
    font-size: clamp(100px, 30vw, 200px);
  }

    .glyph-browser {display: flex; flex-direction: column-reverse;}
  .glyph-browser__preview-col {z-index: 1;position: sticky; height: 120vw;border-top: 0px solid var(--border);top: 48px;}
}.glyph-browser__preview {font-size: clamp(160px,80vw,300px);}
.glyph-browser__grid-col {position: relative; z-index: 2;}
}
