.order-form {
  padding: 0;
}

.order-form__title {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.order-form__text {
  font-size: 0.875rem;
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.order-form__field {
  margin-bottom: 16px;
}

.order-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.order-form__input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-primary);
  transition: border-color 0.2s ease;
}

.order-form__input:focus {
  outline: none;
  border-color: var(--btn-primary);
}

.order-form__input.is-error {
  border-color: #d0375a;
}

.order-form__error {
  display: none;
  margin-top: 6px;
  font-size: 0.8125rem;
  color: #d0375a;
}

.order-form__error.is-visible {
  display: block;
}

.order-form__submit {
  margin-top: 8px;
  font-size: 0.9375rem;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
}

.order-form__selected {
  margin-bottom: 16px;
  padding: 12px;
  background: #e8f1ff;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.order-form__selected strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.order-form__selected-list {
  margin: 0;
  padding-left: 16px;
}

.order-form__delivery-note {
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: #f5f8ff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-primary);
}
