#form-order .phone-field .iti {
  display: block;
  width: 100%;
}

#form-order .phone-field .iti input#order-phone {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

#form-order .col-sm-6 {
  min-width: 0;
}

#form-order .phone-field .iti__flag-container {
  position: absolute;
  left: 0; top: 0; bottom: 0;
}

/* Хинт ограничиваем рамками поля */
#form-order .phone-field__hint {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;          /* ← ключ */
  text-overflow: ellipsis;   /* clip или ellipsis */
  left: var(--hint-left, 0); /* твой JS ставит left inline */
  right: 0;                  /* ← ключ №2: ограничить справа */
}