.ml-order-page {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 120px);
}
.ml-order-page__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem 1rem;
}
.ml-order-header {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}
.ml-order-header__thumb {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: #222;
  flex-shrink: 0;
}
.ml-order-header__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ml-order-header__body {
  flex: 1;
  min-width: 200px;
}
.ml-order-header__num {
  margin: 0;
  color: #aaa;
  font-size: 0.85rem;
}
.ml-order-header__price {
  margin: 0.5rem 0;
  font-weight: 600;
}
.ml-order-header__note h2 {
  font-size: 0.9rem;
  margin: 0.75rem 0 0.25rem;
}
.ml-order-new__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (max-width: 800px) {
  .ml-order-new__grid {
    grid-template-columns: 1fr;
  }
}
.ml-order-new__preview .ml-order-new__img {
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
}
.ml-orders-page__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.ml-orders-page__filter {
  min-width: 200px;
}
.ml-orders-page__empty {
  text-align: center;
  padding: 3rem 1rem;
}
