.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
}

.input-text {
  width: 100%;
  padding: 13px 0px 13px 20px;
  background: #ffffff;
  border: 1px solid #7e9bbd;
  border-radius: 6px;
  font-family: inherit;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}

/* Order registration */

.order-registration {
  padding: 60px 0 90px;
}

.order-registration__title {
  margin-bottom: 40px;
  text-align: center;
}

/* Order Table */

.order-table {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(126, 155, 189, 0.3);
}

.order-table thead {
  margin-bottom: 10px;
  background-color: #eaeff2;
}

.order-table thead th {
  padding: 10px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.order-table tbody td {
  padding: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #000000;
}

/* Order form */

.order-form {
}

.order-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-form__row > * {
  flex-grow: 1;
}

.order-form__row > *:not(:last-child) {
  margin-right: 30px;
}

.order-form__row:not(:first-child) {
  margin-top: 20px;
}

.order-form__row--justify-between {
  justify-content: space-between;
}

.order-form__row--justify-between > * {
  margin: 0 !important;
  flex-grow: 0;
}

.order-form__name {
  width: 100%;
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}

/* Order placed */

.order-placed {
  position: relative;
  display: block;
  padding-top: 60px;
}

.order-placed__title {
  margin-bottom: 40px;
  text-align: center;
}

.order-cart__img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

/* Добавь в orders.css */
.order-table th,
.order-table td {
  padding: 10px;
  vertical-align: middle;
}

/* Фиксированная ширина колонок */
.order-table th:nth-child(1),
.order-table td:nth-child(1) {
  width: 80px; /* Фото */
}

.order-table th:nth-child(2),
.order-table td:nth-child(2) {
  width: auto; /* Название - растягивается */
}

.order-table th:nth-child(3),
.order-table td:nth-child(3) {
  width: 100px; /* Количество */
}

.order-table th:nth-child(4),
.order-table td:nth-child(4) {
  width: 120px; /* Стоимость */
}

.order-table th:nth-child(5),
.order-table td:nth-child(5) {
  width: 50px; /* Удалить */
  text-align: center;
}

.order-cart__img {
  width: 50px;
  height: 50px;
}

.order-cart__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
