.vipart-tryon {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.vipart-tryon-sidebar {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}
.vipart-tryon-sidebar h2 {
  margin-top: 0;
}
.vipart-tryon-sidebar label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: #475569;
  font-size: 13px;
  font-weight: 750;
}
.vipart-tryon-sidebar select {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  background: #fff;
  padding: 11px 12px;
}
.vipart-tryon-actions {
  display: grid;
  gap: 10px;
}
.vipart-tryon-actions button,
.vipart-file-button {
  display: inline-flex;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  padding: 11px 14px;
  background: #0f766e;
  color: #fff;
  cursor: pointer;
  font-weight: 750;
}
.vipart-file-button input {
  display: none;
}
.vipart-tryon-note {
  color: #64748b;
  line-height: 1.6;
}
.vipart-tryon-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #0b1220;
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.vipart-tryon-stage video,
.vipart-tryon-stage img {
  display: none;
}
.vipart-tryon-stage canvas {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}
.vipart-tryon-message,
.vipart-tryon-state {
  padding: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #334155;
}
.vipart-tryon-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
}
.vipart-tryon-message[hidden] {
  display: none;
}
@media (max-width: 900px) {
  .vipart-tryon {
    grid-template-columns: 1fr;
  }
  .vipart-tryon-stage {
    min-height: 360px;
  }
}
