.studio-quickbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  flex-basis: 100%;
  padding-top: 6px;
  border-top: 1px solid #e6e1d3;
}
.studio-quickbar button {
  background: #fff;
  color: #47382f;
  border: 1px solid #d7cbbb;
  padding: 6px 9px;
  font-size: 12px;
}
.studio-quickbar #quickUpload {
  background: #8c2d38;
  color: white;
  border-color: #8c2d38;
}
#quickSelection {
  font-size: 11px;
  color: #655b50;
  margin-right: 6px;
}
#studioWelcome {
  position: absolute;
  inset: 20px;
  z-index: 12;
  align-self: center;
  max-width: 680px;
  margin: auto;
  max-height: calc(100% - 40px);
  height: max-content;
  overflow: auto;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid #d8c8b5;
  border-radius: 18px;
  background: #fdfbf7;
  box-shadow: 0 16px 48px #46311c24;
  color: #2c2a29;
}
#studioWelcome[hidden] {
  display: none;
}
.welcome-eyebrow {
  font:
    600 10px/1.4 Montserrat,
    sans-serif;
  letter-spacing: 0.2em;
  color: #8c2d38;
}
#welcomeHeading {
  font:
    500 clamp(24px, 3vw, 36px)/1.16 "Playfair Display",
    serif;
  margin: 12px 0;
}
.welcome-intro {
  font:
    14px/1.7 Montserrat,
    sans-serif;
  max-width: 52ch;
  color: #665a4e;
}
.welcome-choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 22px 0;
}
.welcome-choices button {
  display: grid;
  gap: 5px;
  text-align: left;
  background: #f7f4eb;
  border: 1px solid #e1d6c7;
  border-radius: 10px;
  padding: 15px;
  color: #332c26;
  cursor: pointer;
}
.welcome-choices button:first-child {
  background: #8c2d38;
  border-color: #8c2d38;
  color: #fff;
}
.welcome-choices strong {
  font:
    600 14px/1.4 Montserrat,
    sans-serif;
}
.welcome-choices span {
  font:
    12px/1.5 Montserrat,
    sans-serif;
}
.welcome-choices button:hover {
  box-shadow: 0 3px 12px #4328171a;
}
.welcome-choices button:focus-visible {
  outline: 3px solid #a96b29;
  outline-offset: 3px;
}
.welcome-note {
  font:
    11px/1.6 Montserrat,
    sans-serif;
  color: #6b6053;
}
@media (max-width: 700px) {
  #studioWelcome {
    inset: 8px;
    max-height: calc(100% - 16px);
    padding: 16px;
    border-radius: 12px;
  }
  .welcome-intro {
    font-size: 12px;
  }
  .welcome-choices {
    margin: 12px 0;
  }
  .welcome-choices button {
    padding: 11px;
  }
  #quickSelection {
    flex-basis: 100%;
  }
  .studio-quickbar {
    gap: 4px;
  }
  #welcomeHeading {
    font-size: 23px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #studioWelcome * {
    scroll-behavior: auto;
  }
}
.studio-mask-library {
  margin: 14px 0;
  padding: 12px 0;
  border-block: 1px solid #e6e1d3;
}
.studio-mask-library h3 {
  font-weight: 600;
}
.studio-mask-library p {
  font-size: 11px;
  line-height: 1.5;
  margin: 6px 0;
  color: #665a4e;
}
#studioMaskGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  max-height: 220px;
  overflow: auto;
}
#studioMaskGrid button {
  padding: 4px;
  background: #eee5d7;
  border: 1px solid #d8c8b5;
  border-radius: 5px;
}
#studioMaskGrid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
#studioMaskGrid button:focus-visible {
  outline: 3px solid #8c2d38;
}
