.dressup-station__topbar {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 68px;
  align-items: center;
  gap: 8px;
  padding: 6px 4px 4px;
  background: transparent;
}

.dressup-station__topbar-button,
.dressup-station__topbar-placeholder {
  min-width: 0;
  height: 34px;
}

.dressup-station__topbar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(19, 22, 26, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #17181a;
  font-size: 12px;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.dressup-station__topbar-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(19, 22, 26, 0.12);
  box-shadow: 0 8px 18px rgba(24, 26, 30, 0.06);
}

.dressup-station__topbar-button:active {
  transform: scale(0.98);
}

.dressup-station__topbar-button--icon {
  width: 34px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
}

.dressup-station__topbar-title-group {
  min-width: 0;
  text-align: center;
}

.dressup-station__topbar-eyebrow {
  margin: 0;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: rgba(23, 24, 26, 0.42);
}

.dressup-station__topbar-title {
  margin: 4px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #17181a;
}

.dressup-station__topbar-placeholder {
  display: block;
}

@media (max-width: 420px) {
  .dressup-station__topbar {
    grid-template-columns: 62px minmax(0, 1fr) 62px;
    padding: 4px 2px 2px;
  }

  .dressup-station__topbar-button,
  .dressup-station__topbar-placeholder {
    height: 32px;
  }

  .dressup-station__topbar-button {
    padding: 0 10px;
    font-size: 11px;
  }

  .dressup-station__topbar-button--icon {
    width: 32px;
    padding: 0;
    font-size: 17px;
  }

  .dressup-station__topbar-title {
    font-size: 15px;
  }
}
