/* ==========================================================================
   ORDER CREATE PAGE
   ========================================================================== */
.ep-order-create-shell {
  max-width: 1120px;
  margin: 12px auto;
  padding: 0 20px;
}

.ep-order-create-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 20px;
}

.ep-card {
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: 12px;
  padding: 18px;
}

.ep-card__title {
  margin: 0 0 12px 0;
  font-size: 1.05rem;
}

.ep-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ep-order-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ep-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.ep-order-item__left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ep-order-item__qty {
  font-weight: 700;
  color: var(--ep-primary);
  min-width: 28px;
  text-align: center;
}

.ep-order-item__name a {
  text-decoration: none;
  color: var(--ep-text);
}

.ep-order-item__name a:hover {
  text-decoration: underline;
}

.ep-order-total {
  margin-top: 8px;
  text-align: right;
  font-size: 1.05rem;
}

.ep-order-form input,
.ep-order-form textarea,
.ep-order-form select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid var(--ep-border);
  border-radius: 8px;
}

.ep-order-form p {
  margin: 8px 0;
}

.ep-order-form__actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
}

@media (max-width: 900px) {
  .ep-order-create-grid {
    grid-template-columns: 1fr;
  }
}
