/* Scoped styles for the garment.html password gate only. Do not import elsewhere. */
#garment-gate {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Franklin Gothic ATF", "Franklin Gothic", Arial, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
#garment-gate[hidden] { display: none; }
#garment-gate .gg-col {
  width: 100%;
  max-width: 480px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  text-align: center;
}
#garment-gate .gg-wordmark {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 8px;
}
#garment-gate .gg-headline {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0;
}
#garment-gate .gg-subline {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0 0 8px;
}
#garment-gate .gg-sr {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0);
  border: 0;
}
#garment-gate .gg-input {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 16px 18px;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  outline: none;
}
#garment-gate .gg-input:focus { box-shadow: 0 0 0 2px #fff inset; }
#garment-gate .gg-btn {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  color: #0a0a0a;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 16px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .15s, color .15s;
}
#garment-gate .gg-btn:hover,
#garment-gate .gg-btn:focus-visible {
  background: #0a0a0a;
  color: #fff;
  outline: none;
}
#garment-gate .gg-error {
  min-height: 1em;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0;
}
#garment-gate .gg-error:empty { visibility: hidden; }

/* Log out link, revealed only after unlock */
.gg-logout {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  background: none;
  border-left: 0; border-right: 0; border-top: 0;
  padding: 0 0 2px;
  font-family: inherit;
}
.gg-logout:hover { opacity: 1; }

/* Mobile scaling */
@media (max-width: 520px) {
  #garment-gate .gg-wordmark { font-size: 30px; }
  #garment-gate .gg-headline { font-size: 22px; }
  #garment-gate .gg-subline { font-size: 11px; }
  #garment-gate .gg-input,
  #garment-gate .gg-btn { padding: 14px 16px; font-size: 13px; }
}
