/** Shopify CDN: Minification failed

Line 1467:13 Expected ":"
Line 1467:15 Expected identifier but found "1"
Line 2107:37 Expected identifier but found "!"
Line 2108:60 Expected identifier but found "!"

**/
/* ============================================================
   ETC SHOPIFY THEME — GLOBAL STYLES
   Etcetera Type Co — Variable Fonts by Ty Finck
   ============================================================ */

/* --- Reset & Base ------------------------------------------- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
font-family: "Def Sans";
src: url('defsans.woff2') format('woff2');
font-weight: 100 900;
font-stretch: 75% 100%;
font-style: normal; 
font-display: swap; 
}

@font-face {
font-family: "Verbose";
src: url('verbose.woff2') format('woff2');
font-weight: 400;
font-stretch: 75% 125%;
font-style: normal; 
font-display: swap; 
}


:root {
  --accent: #FFA400;
  --bg: #000;
  --text: #fff;
  --bg-mid: #0d0d0d;
  --border: rgba(255,255,255,0.08);
  --font-body: 'Def Sans', sans-serif;
  --font-mono: 'Trispace', 'Sono', monospace;
  --font-label: 'Verbose', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
}

html {
  font-family: sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-variation-settings: "wght" 400, "slnt" 0;
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  outline: 0px;
}

a:hover {
  color: var(--accent);
}

img, svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

input, textarea {
  font: inherit;
  color: inherit;
}

/* --- Typography --------------------------------------------- */

.t-label {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 350, "MONO" .5;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.t-body {
  font-family: var(--font-body);
  font-variation-settings: "wght" 400, "slnt" 0;
  font-size: 16px;
  line-height: 1.6;
}

/* --- Layout ------------------------------------------------- */

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* --- Buttons ------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-label);
  /*font-variation-settings: "wght" 600, "MONO" 0.5;*/
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
}

.btn--accent {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--accent:hover {
  background: var(--accent);
  color: var(--bg);
}

.btn--full {
  width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  mix-blend-mode: normal;
  pointer-events: none;
}

.site-header__logo {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 101;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.2s;
}

.site-header__logo:hover {
  opacity: 0.6;
}

.nav-open .site-header__logo {
  opacity: 0.5;
}

.site-header__logo svg,
.site-header__logo img {
  width: 80px;
  height: auto;
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 11px;
  }
}

.site-header__cart {
  position: relative;
  pointer-events: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 6px;
  z-index: 101;
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__cart.is-visible {
  pointer-events: all;
  opacity: 1;
}

.site-header__cart.is-visible:hover {
  opacity: 0.6;
}

.nav-open .site-header__cart {
  opacity: 0.3;
  pointer-events: none;
}

.site-header__cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 2px;
}

@media (max-width: 768px) {
  .site-header__cart {
    position: fixed;
    top: 11px;
    right: 11px;
  }
}

/* ============================================================
   NAV OVERLAY
   ============================================================ */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  align-items: center;
  padding: 100px 60px 60px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-in-out);
}

.nav-open .nav-overlay {
  pointer-events: all;
  opacity: 1;
}

.nav-overlay__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  width: 100%;
}

.nav-overlay__heading {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" 1;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.nav-overlay__list {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.nav-overlay__link {
  font-size: clamp(28px, 4vw, 52px);
  font-variation-settings: "wght" 300, "slnt" 0;
  line-height: 1.1;
  transition: font-variation-settings 0.3s, color 0.2s;
  display: inline-block;
}

.nav-overlay__link:hover {
  color: var(--text);
}

/* Each font link shows in its own face on hover */
.nav-overlay__link--anybody {
  font-family: 'Anybody';
}
.nav-overlay__link--anybody:hover {
  font-variation-settings: "wght" 900, "wdth" 125, "slnt" -10;
}

.nav-overlay__link--epilogue {
  font-family: 'Epilogue';
}
.nav-overlay__link--epilogue:hover {
  font-variation-settings: "wght" 900, "slnt" -12;
}

.nav-overlay__link--gluten {
  font-family: 'Gluten';
}
.nav-overlay__link--gluten:hover {
  font-variation-settings: "wght" 900, "ital" 1;
}

.nav-overlay__link--grandstander {
  font-family: 'Grandstander';
}
.nav-overlay__link--grandstander:hover {
  font-variation-settings: "wght" 900, "slnt" -12;
}

.nav-overlay__link--imbue {
  font-family: 'Imbue';
}
.nav-overlay__link--imbue:hover {
  font-variation-settings: "wght" 900, "opsz" 100;
}

.nav-overlay__link--sono {
  font-family: 'Sono';
}
.nav-overlay__link--sono:hover {
  font-variation-settings: "wght" 800, "MONO" 1;
}

.nav-overlay__link--tourney {
  font-family: 'Tourney';
}
.nav-overlay__link--tourney:hover {
  font-variation-settings: "wght" 900, "wdth" 125, "ital" 1;
}

.nav-overlay__link--trispace {
  font-family: 'Trispace';
}
.nav-overlay__link--trispace:hover {
  font-variation-settings: "wght" 800, "wdth" 100;
}

.nav-overlay__link--plain {
  font-family: var(--font-body);
  font-variation-settings: "wght" 300, "slnt" 0;
  font-size: clamp(18px, 2.5vw, 36px);
  color: rgba(255,255,255,0.6);
}
.nav-overlay__link--plain:hover {
  color: var(--text);
  font-variation-settings: "wght" 700, "slnt" 0;
}

@media (max-width: 768px) {
  .nav-overlay {
    padding: 70px 20px 30px;
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-overlay__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .nav-overlay__heading {
    margin-bottom: 14px;
  }
  .nav-overlay__list {
    gap: 1.5vh;
  }

  .font-tester__text {
    padding: .25em 0;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--bg);
  cursor: crosshair;
}

/* 4×2 letter-card grid fills the full viewport */
.hero__letters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.letter-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.letter-card:hover {
  background: var(--bg-mid);
}

.letter-card__glyph {
  display: block;
  font-size: clamp(72px, 9vw, 150px);
  line-height: 1;
  will-change: font-variation-settings;
  text-align: center;
  padding-bottom: 28px; /* room for label below */
  transition: color 0.3s;
}

.letter-card:hover .letter-card__glyph {
  color: var(--accent);
}

.letter-card__label {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" 1;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  transition: color 0.3s;
}

.letter-card:hover .letter-card__label {
  color: var(--accent);
}

.hero__meta {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 2;
  text-align: right;
  pointer-events: none;
}

.hero__meta-label {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" 1;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 2;
}

@media (max-width: 900px) {
  .hero__letters {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .letter-card__glyph {
    font-size: clamp(56px, 15vw, 100px);
  }
  .hero__meta {
    display: none;
  }
}

/* ============================================================
   FONTS GRID
   ============================================================ */

.fonts-grid {
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.fonts-grid__header {
  padding: 0 32px;
  margin-bottom: 48px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.fonts-grid__title {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" 1;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.fonts-grid__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--border);
}

.font-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  text-decoration: none;
  color: var(--text);
}

.font-card:hover {
  background: var(--bg-mid);
}

.font-card:hover .font-card__name {
  color: var(--accent);
}

.font-card__name {
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 0.9;
  will-change: font-variation-settings;
  transition: font-variation-settings 0.5s ease;
}

.font-card__meta {
  margin-top: auto;
  font-family: var(--font-label);
  font-variation-settings: "wdth" 115;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.font-card__arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 20px;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.2s, transform 0.3s var(--ease-out);
  color: var(--accent);
}

.font-card:hover .font-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* Per-font card styles — name renders in its own typeface */
.font-card--anybody .font-card__name {
  font-family: 'Anybody';
  font-variation-settings: "wght" 300, "wdth" 100, "slnt" 0;
}
.font-card--anybody:hover .font-card__name {
  font-variation-settings: "wght" 900, "wdth" 50, "slnt" -10;
}

.font-card--epilogue .font-card__name {
  font-family: 'Epilogue';
  font-variation-settings: "wght" 100, "slnt" 0;
}
.font-card--epilogue:hover .font-card__name {
  font-variation-settings: "wght" 900, "slnt" -12;
}

.font-card--gluten .font-card__name {
  font-family: 'Gluten';
  font-variation-settings: "wght" 300, "ital" 0;
}
.font-card--gluten:hover .font-card__name {
  font-variation-settings: "wght" 900, "ital" 1;
}

.font-card--grandstander .font-card__name {
  font-family: 'Grandstander';
  font-variation-settings: "wght" 400, "slnt" 0;
  font-size: clamp(28px, 3.2vw, 54px); /* Grandstander is tall — scale down */
}
.font-card--grandstander:hover .font-card__name {
  font-variation-settings: "wght" 900, "slnt" -12;
}

.font-card--imbue .font-card__name {
  font-family: 'Imbue';
  font-variation-settings: "wght" 300, "opsz" 14;
}
.font-card--imbue:hover .font-card__name {
  font-variation-settings: "wght" 900, "opsz" 100;
}

.font-card--sono .font-card__name {
  font-family: 'Sono';
  font-variation-settings: "wght" 200, "MONO" 0;
}
.font-card--sono:hover .font-card__name {
  font-variation-settings: "wght" 800, "MONO" 1;
}

.font-card--tourney .font-card__name {
  font-family: 'Tourney';
  font-variation-settings: "wght" 300, "wdth" 75, "ital" 0;
}
.font-card--tourney:hover .font-card__name {
  font-variation-settings: "wght" 900, "wdth" 125, "ital" 1;
}

.font-card--trispace .font-card__name {
  font-family: 'Trispace';
  font-variation-settings: "wght" 200, "wdth" 100;
  font-size: clamp(24px, 2.8vw, 48px); /* Trispace is wide/mono — scale down */
  letter-spacing: -0.01em;
}
.font-card--trispace:hover .font-card__name {
  font-variation-settings: "wght" 800, "wdth" 125;
}

@media (max-width: 1024px) {
  .fonts-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fonts-grid__grid {
    grid-template-columns: 1fr;
  }
  .fonts-grid {
    padding: 48px 0;
  }
  .fonts-grid__header {
    padding: 0 20px;
  }
}

/* ============================================================
   MERCH
   ============================================================ */

.merch-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.merch-section__header {
  padding: 0 32px;
  margin-bottom: 48px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.merch-section__title {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" 1;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.merch-section__link {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" 1;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.merch-section__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.merch-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.product-card {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card__image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0a0a0a;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card__image {
  transform: scale(1.04);
}

.product-card__info {
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.product-card__name {
  font-variation-settings: "wght" 500, "slnt" 0;
  font-size: 16px;
}

.product-card__price {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 400, "MONO" 1;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.product-card__btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-variation-settings: "wght" 500, "MONO" 1;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.3s var(--ease-out), background 0.2s, color 0.2s;
}

.product-card:hover .product-card__btn {
  opacity: 1;
  transform: translateY(0);
}

.product-card__btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

@media (max-width: 768px) {
  .merch-section__grid {
    grid-template-columns: 1fr 1fr;
  }
  .merch-section {
    padding: 48px 0;
  }
  .merch-section__header {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .merch-section__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WIP FONTS
   ============================================================ */

.wip-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.wip-section__header {
  padding: 0 32px;
  margin-bottom: 48px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.wip-section__title {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 350, "MONO" .5;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.wip-section__badge-link {
  display: flex;
  align-items: center;
}

.wip-section__badge-link img {
  height: 28px;
  width: auto;
}

.wip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.wip-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.wip-card:hover {
  background: var(--bg-mid);
}

.wip-card:hover .wip-card__desc {
  color: rgba(255,255,255,1);
}

.wip-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  width: 100%;
}

.wip-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.wip-card:hover .wip-card__image img {
  transform: scale(1.04);
}

.wip-card__body {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wip-card__name {
  font-size: 22px;
  line-height: 1;
  font-family: "Verbose";
  text-transform: uppercase;
  font-variation-settings: "wdth" 90;
  transition: all 200ms var(--ease-in-out);
}

.wip-card:hover .wip-card__name  {
    font-variation-settings: "wdth" 105;

}

.wip-card__desc {
  font-variation-settings: "wght" 300, "slnt" 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.025em;
}

.wip-card__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  font-family: var(--font-mono);
  font-variation-settings: "wght" 400, "MONO" .5;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 4px 8px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

@media (max-width: 1024px) {
  .wip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .wip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wip-section {
    padding: 48px 0;
  }
  .wip-section__header {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .wip-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__logo img,
.site-footer__logo svg {
  width: 28px;
  height: auto;
  opacity: 0.6;
  display: none;
}

.site-footer__copy {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__links a {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 400, "MONO" .5;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 32px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   CART DRAWER
   ============================================================ */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  z-index: 200;
  background: var(--bg-mid);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.cart-drawer__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer__title {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 400, "MONO" .5;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.cart-drawer__close {
  font-size: 24px;
  line-height: 1;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.cart-drawer__close:hover {
  color: var(--text);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}

.cart-drawer__footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item__image {
  width: 72px;
  aspect-ratio: 1;
  object-fit: cover;
  background: rgba(255,255,255,0.05);
}

.cart-item__info {
  flex: 1;
}

.cart-item__name {
  font-variation-settings: "wght" 400, "slnt" 0;
  font-size: 14px;
  margin-bottom: 4px;
  text-decoration: none;
  color: inherit;
}

.cart-item__price {

  font-size: 12px;
  color: rgba(255,255,255,1);
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
  font-variation-settings: "wght" 300, "slnt" 0;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   FONT SPECIMEN PAGES
   ============================================================ */

.specimen-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 32px 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.specimen-hero__name {
  font-size: clamp(20px, 15vw, 220px);
  line-height: 0.85;
  will-change: font-variation-settings;
  white-space: nowrap;
  padding: .5em 0;
}

.specimen-hero__meta {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  text-align: right;
  display: none;
}

.specimen-hero__tagline {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .specimen-hero {
    padding: 100px 20px 36px;
  }
  .specimen-hero__meta {
    position: static;
    transform: none;
    text-align: left;
    margin-top: 20px;
  }
}

/* ---- Type Tester ------------------------------------------ */

.font-tester {
  position: relative;
  border-bottom: 1px solid var(--border);
}

.font-tester__stage {
  position: relative;
  padding: 40px 32px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  cursor: text;
}

.font-tester__text {
  outline: none;
  width: 100%;
  text-align: left; /* matches JS default; JS will override per-interaction */
  color: var(--text);
  word-break: break-word;
  line-height: 0.9;
  caret-color: var(--accent);
  padding: .25em 0;
}

.font-tester__text.is-default {
  color: rgba(255,255,255,0.4);
}

.font-tester__controls {
  position: absolute;
  top: auto
  /*background: rgba(0,0,0,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);*/
  border-bottom: 0px solid var(--border);
  padding: 20px 32px;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
}

.tester-controls__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
}

.tester-control {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100px;
}

.tester-control__label {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tester-control__label [data-axis-value] {
  color: rgba(255,255,255,0.6);
  font-variant-numeric: tabular-nums;
}

/* Range slider styles */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  outline: none;
  cursor: ew-resize;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text);
  border: 2px solid var(--bg);
  cursor: ew-resize;
  transition: background 0.2s, transform 0.15s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: var(--accent);
  transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text);
  border: 2px solid var(--bg);
  cursor: ew-resize;
}

.tester-controls__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 0;
  flex-wrap: wrap;
}

.tester-controls__basics {
  margin-left: auto;
}

@media (max-width: 768px) {


.site-header {display: block; top: auto; bottom: 10px; left: 0; right: 0;}
.site-header__logo, .site-header__logo svg, .site-header__logo img {   display: block; margin: 0 auto;}
}

.tester-controls__align {
  display: flex;
  gap: 4px;
}

.tester-controls__align button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.tester-controls__align button.active,
.tester-controls__align button:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--text);
}

/* Case toggle — shared by tester + styles waterfall */
.tester-case-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.5);
  font-family: var(--font-label);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.66);
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.tester-case-btn.active {
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);

}

.tester-case-btn.active,
.tester-case-btn:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--text);
}

.tester-controls__features {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.feature-btn {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.feature-btn.active,
.feature-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 768px) {
  .font-tester__stage {
    padding: 32px 20px;
  }
  .font-tester__controls {
    padding: 16px 20px;
  }
  .tester-controls__inner {
    gap: auto;
  }
  .tester-control {
    min-width: 150px;
    flex-grow; 1;
  }

  .tester-controls__actions {
    margin-left: 0;
  }
}

/* ---- Font Backstory --------------------------------------- */

.font-backstory {
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 60px;
  border-bottom: 1px solid var(--border);
}

.font-backstory__label {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding-top: 4px;
}

.font-backstory__body p {
  font-variation-settings: "wght" 250, "slnt" 0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,0.90);
  max-width: 700px;
}

.font-backstory__body p + p {
  margin-top: 1.2em;
}

@media (max-width: 768px) {
  .font-backstory {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 20px;
  }
}

/* ---- Font Styles Waterfall -------------------------------- */

.font-styles {
  padding: 0 0 80px 0;
  border-bottom: 1px solid var(--border);
}

.font-styles__header {
  position: sticky;
  top: 44px; /* below jump-nav */
  z-index: 9;
  border-bottom: 0px solid var(--border);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.font-styles__header span{ display: none; }

/* Controls group inside the sticky styles header */
.styles-header__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.styles-size-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.styles-size-control input[type="range"] {
  width: 100px;
}

.styles-size-control__value {
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  color: rgba(255,255,255,0.6);
}

.font-styles__row {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: background 0.2s;
}

.font-styles__row:hover {
  background: var(--bg-mid);
}

.font-styles__weight-label {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  min-width: 230px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.font-styles__sample {
  flex: 1;
  font-size: clamp(24px, 3.5vw, 52px);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow: visible;
}

@media (max-width: 768px) {
  .font-styles__header,
  .font-styles__row {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
  }
  .font-styles {
    padding-bottom: 48px;
  }
  .styles-size-control input[type="range"] {
    width: 80px;
  }
}

/* ---- Font Features ---------------------------------------- */

.font-features {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}

.font-features__header {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
}

.font-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.feature-cell {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-cell__label {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.feature-cell__sample {
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1;
}

@media (max-width: 768px) {
  .font-features {
    padding: 48px 20px;
  }
  .font-features__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .font-features__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Font Download ---------------------------------------- */

.font-download {
  padding: 80px 32px;
  border-bottom: 0px solid var(--border);
}

.font-download__header {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.font-download__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.font-download__platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8em 24px;
  border: 1px solid rgba(255,255,255,0.2);
  font-variation-settings: "wght" 600, "slnt" 0;
  font-size: 25px;
  letter-spacing: -0.035em;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
  flex: 1;
  line-height: 1;
}

@media (max-width: 768px) {
  .font-download__platform {
    padding: 3em 24px;
  }

  .font-download__platforms {
    flex-direction: column !important;
  }
 
}

.font-download__platform:hover {
  border-color: var(--text);
  color: var(--text);
}

.font-download__platform .arrow {
  font-size: 18px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .font-download {
    padding: 48px 20px;
  }
}

/* ============================================================
   SECTION JUMP NAV (SPECIMEN PAGES)
   ============================================================ */

/* The Shopify section wrapper gets sticky via schema class="jump-nav-section".
   Applying sticky to the wrapper (not the inner nav) means the containing
   block is the full page scroll, so it stays pinned for the entire page. */
.jump-nav-section {
  position: sticky;
  top: 0;
  z-index: 50;
}

.jump-nav {
  /*background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);*/
  border-bottom: 0px solid var(--border);
  padding: 0 10px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  justify-content: center;
}

.jump-nav__item {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 16px 20px;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.jump-nav__item:hover,
.jump-nav__item.is-active {
  color: var(--text);
  border-color: var(--text);
}

/* ============================================================
   CART PAGE
   ============================================================ */

.cart-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}

.cart-page__header {
  margin-bottom: 40px;
}

.cart-page__empty {
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cart-page__empty p {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
}

.cart-page__items {
  border-top: 1px solid var(--border);
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item__image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-mid);
}

.cart-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-item__variant,
.cart-item__plan {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.cart-item__remove {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-top: 12px;
  display: inline-block;
  transition: color 0.2s;
  text-decoration: underline;
text-underline-offset: 2px;
}

.cart-item__remove:hover {
  color: var(--text);
}

.cart-item__qty-input {
  width: 52px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  text-align: center;
  padding: 8px 4px;
  -moz-appearance: textfield;
}

.cart-item__qty-input::-webkit-inner-spin-button,
.cart-item__qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.cart-item__price {
  font-size: 15px;
  text-align: right;
  white-space: nowrap;
}

.cart-item__price--original {
  display: block;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  text-decoration: line-through;
}

.cart-page__footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.cart-discount {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.cart-page__subtotal {
  display: flex;
  gap: 32px;
  align-items: baseline;
  font-size: 18px;
}

.cart-page__subtotal span:first-child {
  font-family: var(--font-mono);
  font-variation-settings: "wght" 300, "MONO" .5;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.cart-page__tax-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.cart-page__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cart-page__checkout-btn {
  min-width: 160px;
}

@media (max-width: 768px) {
  .cart-page {
    padding: 40px 20px 60px;
  }
  .cart-item {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
  }
  .cart-item__qty,
  .cart-item__price {
    grid-column: 2;
  }
  .cart-item__image-wrap {
    grid-row: span 2;
  }
}

/* ============================================================
   PROMO BANNER SECTION
   ============================================================ */

.promo-banner {
  position: relative;
  background-color: var(--bg-mid);
  background-image: var(--promo-bg, none);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,var(--promo-overlay, 0.4));
  pointer-events: none;
}

.promo-banner__content {
  position: relative;
  z-index: 1;
  padding: 30px 30px 80px;
  width: 100%;
  max-width: 760px;
}

.promo-banner__content--center {
  margin: 0 auto;
  text-align: center;
}

.promo-banner__content--right {
  margin-left: auto;
  text-align: right;
}

.promo-banner__heading {
  font-size: clamp(5rem, 15vw, 300px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  color: #fff;
    font-family: 'Anybody';
    font-variation-settings: "wdth" 50, "wght" 400;
    text-transform: uppercase;
    text-decoration: underline;
  text-underline-offset: 31px;
}

.promo-banner__body {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,1);
  margin-bottom: 30px;
  letter-spacing: 0.04em;
}

.promo-banner__body p + p {
  margin-top: 1em;
}

.promo-banner__cta {
  text-decoration: none;
}

.promo-banner__cta.btn.btn--accent {
border-color: white;
color: white;
backdrop-filter: blur(10px);
padding: 11px;
}
.promo-banner__cta.btn.btn--accent:hover {
background: black;
border-color: black;
}

strong {
  font-variation-settings: "wght" 700;
}

.product-page__price-amount {}
.product-page__add-btn {margin-top: 18px !important;}
.product-page__select {margin-bottom: 10px;}
.product-page__note.t-label { display: none; }

ul.nav-overlay__list li {font-size: clamp(18px, 2.5vw, 36px);}

#shopify-section-footer {
background:url("footerbg.jpg") 50% 20% / 80% auto no-repeat;
padding-top: 50vh;
}

/* responsive overrides*/

@media (max-width: 768px) {
  .promo-banner__content {
    padding: 56px 24px;
    max-width: 100%;
  }

  .wip-section__badge-link {display: none;}
  .fonts-grid {padding: 48px 0 0 0;}
  .font-card {padding: 32px 18px;}
  .font-card__meta {margin-top: 0;}
  .jump-nav {padding: 0 10px 0 13px; justify-content: flex-start;}
    .jump-nav__item {padding: 16px 5px; letter-spacing: 0.018em; border-bottom: 1px solid var(--border); background: black;}
  
.tester-controls__basics div:nth-child(2), .tester-controls__basics div:nth-child(3){ display: none;}
  .promo-banner__content--right {
    text-align: left;}
  .font-tester__text.is-default {
    font-size: 40px;}
  .specimen-hero__name {font-size: clamp(10px, 12vw, 120px);}
  .tester-control, .tester-controls__basics {width: 100%;}
  .tester-controls__basics {margin-left: 0;}
  .font-backstory__body p {font-size: clamp(14px, 2vw, 22px); font-variation-settings: "wght" 350, "slnt" 0;}
  .font-styles__header, .font-styles__row {align-items: start; }

.site-footer {padding-bottom: 100px; align-items: center; }
.site-footer__links {display: none;}
.specimen-hero {padding: 0 20px;}
.font-download p {display: none;}
.product-page__media {background-color: black !important; position: relative !important; height: 120vw !important;}
.product-page, .collection-page, .generic-page {margin-top: 0px !important;}
.product-page__info {padding: 90px 20px !important ;}
.gb-grid {justify-content: center;}
.font-tester__text {padding: .1em 0;}
.font-tester__stage {min-height: 300px;}
.jump-nav-section {background: black;border-bottom: 1px solid #222;}
.font-tester__controls {position: absolute; top: auto; bottom: 0px;}
.font-tester {padding-bottom: 180px;}
.product-page__thumbnails {gap: 1px; !important}
.product-page__thumb {width: 38px !important; height: 38px; !important}
.cart-item {align-items: start;}
.cart-item__qty { display: none;}
.cart-page__actions {margin: 0 auto;}
}


/* ============================================================
   UTILITY
   ============================================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .font-card__name {
    transition: none !important;
  }
}

.tester-controls__basics {
  display: flex;
  gap: 16px 32px;
}


